diff options
author | Mark Reid <mindmark@gmail.com> | 2016-07-16 19:37:38 -0700 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-07-23 14:07:37 +0200 |
commit | cdca1902ab358bad9fe62ec3d1db8934da7545b8 (patch) | |
tree | 6516eccad26ae088313532abf99dec17ba0120a9 /libavcodec/dnxhdenc.h | |
parent | c2cd1a5ea7a2b63edb3abe67c5f52efc62c1b8f7 (diff) | |
download | ffmpeg-cdca1902ab358bad9fe62ec3d1db8934da7545b8.tar.gz |
libavcodec/dnxhdenc: add support for variable mircoblock counts
dnxhr has variable resolution, 8160 is the mb num for 1920x1080
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/dnxhdenc.h')
-rw-r--r-- | libavcodec/dnxhdenc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dnxhdenc.h b/libavcodec/dnxhdenc.h index 3f531efcfb..e9d94294dc 100644 --- a/libavcodec/dnxhdenc.h +++ b/libavcodec/dnxhdenc.h @@ -89,7 +89,7 @@ typedef struct DNXHDEncContext { uint8_t *mb_qscale; RCCMPEntry *mb_cmp; - RCEntry (*mb_rc)[8160]; + RCEntry *mb_rc; void (*get_pixels_8x4_sym)(int16_t * /* align 16 */, const uint8_t *, ptrdiff_t); |