|
|
|
@@ -580,9 +580,9 @@ static int dnxhd_encode_thread(AVCodecContext *avctx, void *arg, int jobnr, int |
|
|
|
|
|
|
|
for (i = 0; i < 8; i++) { |
|
|
|
DCTELEM *block = ctx->blocks[i]; |
|
|
|
int last_index, overflow; |
|
|
|
int n = dnxhd_switch_matrix(ctx, i); |
|
|
|
last_index = ctx->m.dct_quantize(&ctx->m, block, i, qscale, &overflow); |
|
|
|
int overflow, n = dnxhd_switch_matrix(ctx, i); |
|
|
|
int 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"); |
|
|
|
|