summaryrefslogtreecommitdiff
path: root/libavcodec/dvdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-09-05 19:08:27 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-09-05 19:08:27 +0200
commit8c6cfffa01b27afde8bb983c6421611e07688aa6 (patch)
tree9ad90ef8c99c7999a2dd38b51a24ef3d7f5e5e7c /libavcodec/dvdec.c
parent7865cafec295b545f6a2b813ca7539086917e513 (diff)
parentb574e1e97ea7067a5fcd3876e30a67df0e4e6611 (diff)
Merge commit 'b574e1e97ea7067a5fcd3876e30a67df0e4e6611'
* commit 'b574e1e97ea7067a5fcd3876e30a67df0e4e6611': get_bits: Add OPEN_READER macro variant w/o size_plus8 Conflicts: libavcodec/get_bits.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dvdec.c')
-rw-r--r--libavcodec/dvdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dvdec.c b/libavcodec/dvdec.c
index fbd158f7d2..e759c91424 100644
--- a/libavcodec/dvdec.c
+++ b/libavcodec/dvdec.c
@@ -96,7 +96,7 @@ static void dv_decode_ac(GetBitContext *gb, BlockInfo *mb, int16_t *block)
int partial_bit_count = mb->partial_bit_count;
int level, run, vlc_len, index;
- OPEN_READER(re, gb);
+ OPEN_READER_NOSIZE(re, gb);
UPDATE_CACHE(re, gb);
/* if we must parse a partial VLC, we do it here */