1
0
Fork 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 58ed2ddb13
commit c8c33787e5
Signed by: hendrik
GPG Key ID: 846079A4B0A7C1B5
1 changed files with 1 additions and 1 deletions

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"