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

Unified Diff: source/libvpx/vp9/decoder/vp9_dboolhuff.h

Issue 23600008: libvpx: Pull from upstream (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 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/vp9/common/x86/vp9_intrapred_ssse3.asm ('k') | source/libvpx/vp9/decoder/vp9_dboolhuff.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/libvpx/vp9/decoder/vp9_dboolhuff.h
===================================================================
--- source/libvpx/vp9/decoder/vp9_dboolhuff.h (revision 219822)
+++ source/libvpx/vp9/decoder/vp9_dboolhuff.h (working copy)
@@ -20,7 +20,7 @@
typedef size_t VP9_BD_VALUE;
-#define VP9_BD_VALUE_SIZE ((int)sizeof(VP9_BD_VALUE)*CHAR_BIT)
+#define BD_VALUE_SIZE ((int)sizeof(VP9_BD_VALUE)*CHAR_BIT)
typedef struct {
const uint8_t *buffer_end;
@@ -52,7 +52,7 @@
value = br->value;
count = br->count;
- bigsplit = (VP9_BD_VALUE)split << (VP9_BD_VALUE_SIZE - 8);
+ bigsplit = (VP9_BD_VALUE)split << (BD_VALUE_SIZE - 8);
range = split;
« no previous file with comments | « source/libvpx/vp9/common/x86/vp9_intrapred_ssse3.asm ('k') | source/libvpx/vp9/decoder/vp9_dboolhuff.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698