mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-04-27 09:43:11 +08:00
Merge commit 'f7d228676cb7669059889c4225c8a8dc56708c24'
* commit 'f7d228676cb7669059889c4225c8a8dc56708c24': mpeg4videodec: move intra_dc_threshold from MpegEncContext to Mpeg4DecContext Conflicts: libavcodec/mpeg4videodec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -1210,7 +1210,7 @@ static int mpeg4_decode_partitioned_mb(MpegEncContext *s, int16_t block[6][64])
|
||||
mb_type = s->current_picture.mb_type[xy];
|
||||
cbp = s->cbp_table[xy];
|
||||
|
||||
ctx->use_intra_dc_vlc = s->qscale < s->intra_dc_threshold;
|
||||
ctx->use_intra_dc_vlc = s->qscale < ctx->intra_dc_threshold;
|
||||
|
||||
if (s->current_picture.qscale_table[xy] != s->qscale)
|
||||
ff_set_qscale(s, s->current_picture.qscale_table[xy]);
|
||||
@@ -1608,7 +1608,7 @@ intra:
|
||||
}
|
||||
cbp = (cbpc & 3) | (cbpy << 2);
|
||||
|
||||
ctx->use_intra_dc_vlc = s->qscale < s->intra_dc_threshold;
|
||||
ctx->use_intra_dc_vlc = s->qscale < ctx->intra_dc_threshold;
|
||||
|
||||
if (dquant)
|
||||
ff_set_qscale(s, s->qscale + quant_tab[get_bits(&s->gb, 2)]);
|
||||
@@ -2362,7 +2362,7 @@ static int decode_vop_header(Mpeg4DecContext *ctx, GetBitContext *gb)
|
||||
av_log(s->avctx, AV_LOG_ERROR, "Header truncated\n");
|
||||
return -1;
|
||||
}
|
||||
s->intra_dc_threshold = ff_mpeg4_dc_threshold[get_bits(gb, 3)];
|
||||
ctx->intra_dc_threshold = ff_mpeg4_dc_threshold[get_bits(gb, 3)];
|
||||
if (!s->progressive_sequence) {
|
||||
s->top_field_first = get_bits1(gb);
|
||||
s->alternate_scan = get_bits1(gb);
|
||||
@@ -2434,7 +2434,7 @@ static int decode_vop_header(Mpeg4DecContext *ctx, GetBitContext *gb)
|
||||
s->data_partitioning, ctx->resync_marker,
|
||||
ctx->num_sprite_warping_points, s->sprite_warping_accuracy,
|
||||
1 - s->no_rounding, s->vo_type,
|
||||
s->vol_control_parameters ? " VOLC" : " ", s->intra_dc_threshold,
|
||||
s->vol_control_parameters ? " VOLC" : " ", ctx->intra_dc_threshold,
|
||||
ctx->cplx_estimation_trash_i, ctx->cplx_estimation_trash_p,
|
||||
ctx->cplx_estimation_trash_b,
|
||||
s->time,
|
||||
|
||||
Reference in New Issue
Block a user