diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-12-05 03:46:13 +0000 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-12-08 13:30:38 +0000 |
commit | 6fd91fa11909f27902498648680dbb3d13f1f175 (patch) | |
tree | 3844cff712fdeaa08bcb371c61cf356a18a91809 /libavcodec/h264.h | |
parent | d0b224054f13bf57244694a3ff092cfef68d66f9 (diff) | |
download | ffmpeg-6fd91fa11909f27902498648680dbb3d13f1f175.tar.gz |
h264: increase MAX_SLICES to 32
H264 streams from CounterPath Bria and some Cisco phones need an
increased pool for correct decoding.
Bug-Id: 645
Sample-Id: bria-h264.mka
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index cd4bf87690..047937aea0 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -63,7 +63,7 @@ * The maximum number of slices supported by the decoder. * must be a power of 2 */ -#define MAX_SLICES 16 +#define MAX_SLICES 32 #ifdef ALLOW_INTERLACE #define MB_MBAFF(h) h->mb_mbaff |