Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(852)

Unified Diff: source/libvpx/vpx_dsp/fwd_txfm.c

Issue 1302353004: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/libvpx/vpx_dsp/fastssim.c ('k') | source/libvpx/vpx_dsp/inv_txfm.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « source/libvpx/vpx_dsp/fastssim.c ('k') | source/libvpx/vpx_dsp/inv_txfm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698