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

Unified Diff: source/libvpx/vp8/common/entropy.c

Issue 1124333011: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: only update to last nights LKGR Created 5 years, 7 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/vp8/common/dequantize.c ('k') | source/libvpx/vp8/common/entropymode.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/libvpx/vp8/common/entropy.c
diff --git a/source/libvpx/vp8/common/entropy.c b/source/libvpx/vp8/common/entropy.c
index 8c046a4f57cec94b4122d4e2b1c49a36ad689cd9..c00e565f06370b126e14fc91120ebd32df17b942 100644
--- a/source/libvpx/vp8/common/entropy.c
+++ b/source/libvpx/vp8/common/entropy.c
@@ -183,7 +183,6 @@ const vp8_extra_bit_struct vp8_extra_bits[12] =
void vp8_default_coef_probs(VP8_COMMON *pc)
{
- vpx_memcpy(pc->fc.coef_probs, default_coef_probs,
- sizeof(default_coef_probs));
+ memcpy(pc->fc.coef_probs, default_coef_probs, sizeof(default_coef_probs));
}
« no previous file with comments | « source/libvpx/vp8/common/dequantize.c ('k') | source/libvpx/vp8/common/entropymode.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698