Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Reid <mindmark@gmail.com>2016-07-17 05:37:38 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-07-23 15:07:37 +0300
commitcdca1902ab358bad9fe62ec3d1db8934da7545b8 (patch)
tree6516eccad26ae088313532abf99dec17ba0120a9 /libavcodec/dnxhdenc.h
parentc2cd1a5ea7a2b63edb3abe67c5f52efc62c1b8f7 (diff)
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.h2
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);