mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/mpeg12dec: Don't set write-only variable
MpegEncContext.picture_number is write-only for MPEG-1/2 decoding. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
0ddae119ac
commit
750c765ca4
@ -1066,7 +1066,6 @@ static av_cold int mpeg_decode_init(AVCodecContext *avctx)
|
|||||||
|
|
||||||
s2->chroma_format = 1;
|
s2->chroma_format = 1;
|
||||||
s->mpeg_enc_ctx_allocated = 0;
|
s->mpeg_enc_ctx_allocated = 0;
|
||||||
s->mpeg_enc_ctx.picture_number = 0;
|
|
||||||
s->repeat_field = 0;
|
s->repeat_field = 0;
|
||||||
avctx->color_range = AVCOL_RANGE_MPEG;
|
avctx->color_range = AVCOL_RANGE_MPEG;
|
||||||
return 0;
|
return 0;
|
||||||
@ -1092,9 +1091,6 @@ static int mpeg_decode_update_thread_context(AVCodecContext *avctx,
|
|||||||
if (!ctx->mpeg_enc_ctx_allocated)
|
if (!ctx->mpeg_enc_ctx_allocated)
|
||||||
memcpy(s + 1, s1 + 1, sizeof(Mpeg1Context) - sizeof(MpegEncContext));
|
memcpy(s + 1, s1 + 1, sizeof(Mpeg1Context) - sizeof(MpegEncContext));
|
||||||
|
|
||||||
if (!(s->pict_type == AV_PICTURE_TYPE_B || s->low_delay))
|
|
||||||
s->picture_number++;
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@ -2072,10 +2068,7 @@ static int slice_end(AVCodecContext *avctx, AVFrame *pict)
|
|||||||
ff_print_debug_info(s, s->current_picture_ptr, pict);
|
ff_print_debug_info(s, s->current_picture_ptr, pict);
|
||||||
ff_mpv_export_qp_table(s, pict, s->current_picture_ptr, FF_QSCALE_TYPE_MPEG2);
|
ff_mpv_export_qp_table(s, pict, s->current_picture_ptr, FF_QSCALE_TYPE_MPEG2);
|
||||||
} else {
|
} else {
|
||||||
if (avctx->active_thread_type & FF_THREAD_FRAME)
|
|
||||||
s->picture_number++;
|
|
||||||
/* latency of 1 frame for I- and P-frames */
|
/* latency of 1 frame for I- and P-frames */
|
||||||
/* XXX: use another variable than picture_number */
|
|
||||||
if (s->last_picture_ptr) {
|
if (s->last_picture_ptr) {
|
||||||
int ret = av_frame_ref(pict, s->last_picture_ptr->f);
|
int ret = av_frame_ref(pict, s->last_picture_ptr->f);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user