diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2002-05-07 17:55:02 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2002-05-07 17:55:02 +0000 |
commit | a69b930cd36503d80e7362f91493e306cd800aca (patch) | |
tree | 2fd8d915d27be65afe71a94ecb4edfcbec8d4da8 /libavcodec/mpegvideo.h | |
parent | 723106b279d9d78f5966f32bedfa33b88a702f69 (diff) | |
download | ffmpeg-a69b930cd36503d80e7362f91493e306cd800aca.tar.gz |
clamp intra matrix to 8bit for mjpeg (workaround for qscale>=25)
Originally committed as revision 451 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 4ad5009dab..1a3c853e26 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -332,6 +332,7 @@ typedef struct MpegEncContext { int mjpeg_hsample[3]; /* horizontal sampling factors, default = {2, 1, 1} */ int mjpeg_write_tables; /* do we want to have quantisation- and huffmantables in the jpeg file ? */ + int mjpeg_data_only_frames; /* frames only with SOI, SOS and EOI markers */ /* MSMPEG4 specific */ int mv_table_index; |