| Index: source/row_mips.cc
|
| diff --git a/source/row_mips.cc b/source/row_mips.cc
|
| index ca6ecce94fa25c791ee36e6bac0a8a7b19c38156..285f0b5adc2a44b95ee255836f39e4e269c50ef3 100644
|
| --- a/source/row_mips.cc
|
| +++ b/source/row_mips.cc
|
| @@ -381,7 +381,7 @@ void CopyRow_MIPS(const uint8* src, uint8* dst, int count) {
|
| (_MIPS_SIM == _MIPS_SIM_ABI32) && (__mips_isa_rev < 6)
|
|
|
| void SplitUVRow_DSPR2(const uint8* src_uv, uint8* dst_u, uint8* dst_v,
|
| - int width) {
|
| + int width) {
|
| __asm__ __volatile__ (
|
| ".set push \n"
|
| ".set noreorder \n"
|
| @@ -497,7 +497,7 @@ void MirrorRow_DSPR2(const uint8* src, uint8* dst, int width) {
|
| }
|
|
|
| void MirrorUVRow_DSPR2(const uint8* src_uv, uint8* dst_u, uint8* dst_v,
|
| - int width) {
|
| + int width) {
|
| int x;
|
| int y;
|
| __asm__ __volatile__ (
|
| @@ -654,11 +654,11 @@ void MirrorUVRow_DSPR2(const uint8* src_uv, uint8* dst_u, uint8* dst_v,
|
|
|
| // TODO(fbarchard): accept yuv conversion constants.
|
| void I422ToARGBRow_DSPR2(const uint8* y_buf,
|
| - const uint8* u_buf,
|
| - const uint8* v_buf,
|
| - uint8* rgb_buf,
|
| - const struct YuvConstants* yuvconstants,
|
| - int width) {
|
| + const uint8* u_buf,
|
| + const uint8* v_buf,
|
| + uint8* rgb_buf,
|
| + const struct YuvConstants* yuvconstants,
|
| + int width) {
|
| __asm__ __volatile__ (
|
| ".set push \n"
|
| ".set noreorder \n"
|
| @@ -717,8 +717,8 @@ void I422ToARGBRow_DSPR2(const uint8* y_buf,
|
|
|
| // Bilinear filter 8x2 -> 8x1
|
| void InterpolateRow_DSPR2(uint8* dst_ptr, const uint8* src_ptr,
|
| - ptrdiff_t src_stride, int dst_width,
|
| - int source_y_fraction) {
|
| + ptrdiff_t src_stride, int dst_width,
|
| + int source_y_fraction) {
|
| int y0_fraction = 256 - source_y_fraction;
|
| const uint8* src_ptr1 = src_ptr + src_stride;
|
|
|
|
|