diff options
author | Mark Reid | 2016-07-16 19:37:39 -0700 |
---|---|---|
committer | Michael Niedermayer | 2016-07-23 14:07:43 +0200 |
commit | ece12db4f1a57d453c33cdd3baf64478034dab42 (patch) | |
tree | 2dc08e940bbf3a9495ff310cbd97222e28b90a69 /libavcodec/dnxhdenc.h | |
parent | cdca1902ab358bad9fe62ec3d1db8934da7545b8 (diff) |
libavcodec/dnxhdenc: add support for dnxhr encoding
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/dnxhdenc.h')
-rw-r--r-- | libavcodec/dnxhdenc.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/dnxhdenc.h b/libavcodec/dnxhdenc.h index e9d94294dc..7f8e7b35f2 100644 --- a/libavcodec/dnxhdenc.h +++ b/libavcodec/dnxhdenc.h @@ -45,6 +45,7 @@ typedef struct DNXHDEncContext { MpegEncContext m; ///< Used for quantization dsp functions int cid; + int profile; const CIDEntry *cid_table; uint8_t *msip; ///< Macroblock Scan Indexes Payload uint32_t *slice_size; @@ -58,6 +59,10 @@ typedef struct DNXHDEncContext { unsigned dct_uv_offset; unsigned block_width_l2; + int frame_size; + int coding_unit_size; + int data_offset; + int interlaced; int cur_field; |