aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/mpegvideo.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-10-12 14:01:53 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-10-12 14:01:53 +0000
commit34790165dcdd438d9b12b78733740d240af56a65 (patch)
treeb4421e0750540306810dce4dc805ece191fae7fe /libavcodec/mpegvideo.h
parent5e83dec46af77b13a562175f86cb342027af051d (diff)
downloadffmpeg-34790165dcdd438d9b12b78733740d240af56a65.tar.gz
intra dc treshold != 0 decoding fixed
Originally committed as revision 2363 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r--libavcodec/mpegvideo.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h
index f1813f7568..69964e1cfd 100644
--- a/libavcodec/mpegvideo.h
+++ b/libavcodec/mpegvideo.h
@@ -566,6 +566,7 @@ typedef struct MpegEncContext {
int low_delay; ///< no reordering needed / has no b-frames
int vo_type;
int vol_control_parameters; ///< does the stream contain the low_delay flag, used to workaround buggy encoders
+ int intra_dc_threshold; ///< QP above whch the ac VLC should be used for intra dc
PutBitContext tex_pb; ///< used for data partitioned VOPs
PutBitContext pb2; ///< used for data partitioned VOPs
#define PB_BUFFER_SIZE 1024*256