diff options
author | Anton Khirnov <anton@khirnov.net> | 2015-03-31 10:35:15 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-04-03 13:14:43 +0200 |
commit | a4d34e218f548d381e09c483e8dc6ad18a8d571c (patch) | |
tree | bbd5fa30bade6bd43b1c7db67665baf154acb359 /libavcodec/h264.h | |
parent | 3892bdab9b652eb003ab95e167f1765e0b0ea035 (diff) | |
download | ffmpeg-a4d34e218f548d381e09c483e8dc6ad18a8d571c.tar.gz |
h264: disable ER by default
The way it is currently designed is fundamentally unsafe and cannot be
reasonably fixed without completely rewriting it.
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 6f46af48a4..a1eccb1204 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -727,6 +727,8 @@ typedef struct H264Context { int cur_chroma_format_idc; + int enable_er; + AVBufferPool *qscale_table_pool; AVBufferPool *mb_type_pool; AVBufferPool *motion_val_pool; |