mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avcodec/h263dec: Don't set frame parameters redundantly
This frame will be reset later in ff_mpv_frame_start() anyway. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
74d623914f
commit
f0ea5094af
@ -583,10 +583,6 @@ retry:
|
|||||||
s->codec_id == AV_CODEC_ID_H263I)
|
s->codec_id == AV_CODEC_ID_H263I)
|
||||||
s->gob_index = H263_GOB_HEIGHT(s->height);
|
s->gob_index = H263_GOB_HEIGHT(s->height);
|
||||||
|
|
||||||
// for skipping the frame
|
|
||||||
s->current_picture.f->pict_type = s->pict_type;
|
|
||||||
s->current_picture.f->key_frame = s->pict_type == AV_PICTURE_TYPE_I;
|
|
||||||
|
|
||||||
/* skip B-frames if we don't have reference frames */
|
/* skip B-frames if we don't have reference frames */
|
||||||
if (!s->last_picture_ptr &&
|
if (!s->last_picture_ptr &&
|
||||||
(s->pict_type == AV_PICTURE_TYPE_B || s->droppable))
|
(s->pict_type == AV_PICTURE_TYPE_B || s->droppable))
|
||||||
|
Loading…
Reference in New Issue
Block a user