diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-06-06 08:21:13 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-06-20 18:58:38 +0200 |
commit | b2195a238c330e960700f8821e9c0751ee77946d (patch) | |
tree | 75163013dca22bd9187466d1039ebf7bf3e3facc | |
parent | 39660bf964df6361896e0f2289f33379c383dad7 (diff) | |
download | ffmpeg-b2195a238c330e960700f8821e9c0751ee77946d.tar.gz |
avcodec/mpegvideo_dec: Don't keep droppable in sync in update_thread_ctx
It is not a stream property, but a property of an individual picture
(in fact, it is only set by the FLV decoder that does not even support
frame threading).
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/mpegvideo_dec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo_dec.c b/libavcodec/mpegvideo_dec.c index b3753b6ad2..e95b5a0940 100644 --- a/libavcodec/mpegvideo_dec.c +++ b/libavcodec/mpegvideo_dec.c @@ -142,7 +142,6 @@ int ff_mpeg_update_thread_context(AVCodecContext *dst, // B-frame info s->max_b_frames = s1->max_b_frames; s->low_delay = s1->low_delay; - s->droppable = s1->droppable; // DivX handling (doesn't work) s->divx_packed = s1->divx_packed; |