| Index: source/libvpx/vpx_dsp/fwd_txfm.c
 | 
| diff --git a/source/libvpx/vpx_dsp/fwd_txfm.c b/source/libvpx/vpx_dsp/fwd_txfm.c
 | 
| index c82e1c1d5f61cb16d5b8dc705759c84e660b93ca..7baaa8b0d0467c66bd19e60e4c6e5e8831d607b2 100644
 | 
| --- a/source/libvpx/vpx_dsp/fwd_txfm.c
 | 
| +++ b/source/libvpx/vpx_dsp/fwd_txfm.c
 | 
| @@ -754,7 +754,7 @@ void vpx_fdct32x32_rd_c(const int16_t *input, tran_low_t *out, int stride) {
 | 
|      for (j = 0; j < 32; ++j)
 | 
|        // TODO(cd): see quality impact of only doing
 | 
|        //           output[j * 32 + i] = (temp_out[j] + 1) >> 2;
 | 
| -      //           PS: also change code in vp9/encoder/x86/vp9_dct_sse2.c
 | 
| +      //           PS: also change code in vpx_dsp/x86/vpx_dct_sse2.c
 | 
|        output[j * 32 + i] = (temp_out[j] + 1 + (temp_out[j] > 0)) >> 2;
 | 
|    }
 | 
|  
 | 
| 
 |