mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 01:02:33 +00:00
dnxhdenc: add AVClass in private context.
Fixes private options. Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
parent
304e983dc7
commit
14cf9e698d
@ -433,7 +433,7 @@ static int dnxhd_calc_bits_thread(AVCodecContext *avctx, void *arg, int jobnr, i
|
||||
int n = dnxhd_switch_matrix(ctx, i);
|
||||
|
||||
memcpy(block, src_block, 64*sizeof(*block));
|
||||
last_index = ctx->m.dct_quantize((MpegEncContext*)ctx, block, i, qscale, &overflow);
|
||||
last_index = ctx->m.dct_quantize(&ctx->m, block, i, qscale, &overflow);
|
||||
ac_bits += dnxhd_calc_ac_bits(ctx, block, last_index);
|
||||
|
||||
diff = block[0] - ctx->m.last_dc[n];
|
||||
@ -478,7 +478,7 @@ static int dnxhd_encode_thread(AVCodecContext *avctx, void *arg, int jobnr, int
|
||||
DCTELEM *block = ctx->blocks[i];
|
||||
int last_index, overflow;
|
||||
int n = dnxhd_switch_matrix(ctx, i);
|
||||
last_index = ctx->m.dct_quantize((MpegEncContext*)ctx, block, i, qscale, &overflow);
|
||||
last_index = ctx->m.dct_quantize(&ctx->m, block, i, qscale, &overflow);
|
||||
//START_TIMER;
|
||||
dnxhd_encode_block(ctx, block, last_index, n);
|
||||
//STOP_TIMER("encode_block");
|
||||
|
@ -39,6 +39,7 @@ typedef struct {
|
||||
} RCEntry;
|
||||
|
||||
typedef struct DNXHDEncContext {
|
||||
AVClass *class;
|
||||
MpegEncContext m; ///< Used for quantization dsp functions
|
||||
|
||||
AVFrame frame;
|
||||
|
Loading…
Reference in New Issue
Block a user