diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-08-07 01:20:55 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-08-08 19:39:10 +0200 |
commit | fea7bc9e7b9aea85c404cee58246f8e98e618bbf (patch) | |
tree | a691556a3e0179bfd8b852eb25b27261d1e598a7 /libavcodec/dv.h | |
parent | a5380f9c1c460acccb2edaa8609e4a57c0456088 (diff) | |
download | ffmpeg-fea7bc9e7b9aea85c404cee58246f8e98e618bbf.tar.gz |
avcodec/dvenc: Support adjusting the quantizer deadzone
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/dv.h')
-rw-r--r-- | libavcodec/dv.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/dv.h b/libavcodec/dv.h index 6350a16dff..0e97bb200e 100644 --- a/libavcodec/dv.h +++ b/libavcodec/dv.h @@ -38,6 +38,7 @@ typedef struct DVwork_chunk { } DVwork_chunk; typedef struct DVVideoContext { + AVClass *avclass; const AVDVProfile *sys; const AVFrame *frame; AVCodecContext *avctx; @@ -51,6 +52,8 @@ typedef struct DVVideoContext { me_cmp_func ildct_cmp; DVwork_chunk work_chunks[4 * 12 * 27]; uint32_t idct_factor[2 * 4 * 16 * 64]; + + int quant_deadzone; } DVVideoContext; enum dv_section_type { |