1
0

utvideodec: disable cached bitstream reader to fix decoding of packed streams

The cached reader is broken when using get_bits_le, disable it until
fixed
This commit is contained in:
Hendrik Leppkes 2019-03-26 02:51:14 +01:00
parent 982ddbc627
commit f1501b5765
Signed by: hendrik
GPG Key ID: 846079A4B0A7C1B5

View File

@ -27,7 +27,7 @@
#include <inttypes.h>
#include <stdlib.h>
#define CACHED_BITSTREAM_READER !ARCH_X86_32
#define CACHED_BITSTREAM_READER 0 /* cached reader is broken with get_bits_le used below */
#define UNCHECKED_BITSTREAM_READER 1
#include "libavutil/intreadwrite.h"