OSDN Git Service

avcodec: fix aac/ac3 parser bitstream buffer size
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 21 Aug 2014 23:15:57 +0000 (01:15 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 21 Aug 2014 23:24:40 +0000 (01:24 +0200)
commitfccd85b9f30525f88692f53134eba41f1f2d90db
treeebe5799ba0c7eee73f794c82e1b6960d11e2ee57
parentb3d6543caf3b67e453b7bb5120ba4b3de105f766
avcodec: fix aac/ac3 parser bitstream buffer size

Buffers containing copies of the AAC and AC3 header bits were not padded
before parsing, violating init_get_bits() buffer padding requirement,
leading to potential buffer read overflows.
This change adds FF_INPUT_BUFFER_PADDING_SIZE bytes to the bit buffer
for parsing the header in each of aac_parser.c and ac3_parser.c.

Based on patch by: Matt Wolenetz <wolenetz@chromium.org>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/aac_parser.c
libavcodec/ac3_parser.c