diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-01-29 04:30:48 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-13 19:49:29 +0100 |
commit | 6c2ce1695485b73599afada454653889047580e7 (patch) | |
tree | 4699b47ff234ff5ee564cf834f9d797ee21dd599 | |
parent | 7a774a4e93e98da8ebcd796f045cf049b68e9aef (diff) | |
download | ffmpeg-6c2ce1695485b73599afada454653889047580e7.tar.gz |
avcodec/mpegvideo_enc: Don't set picture_in_gop_number for slice threads
They don't ever read this value.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/mpegvideo_enc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c index 56d41314e7..8d2acdc5b1 100644 --- a/libavcodec/mpegvideo_enc.c +++ b/libavcodec/mpegvideo_enc.c @@ -260,7 +260,6 @@ static void update_duplicate_context_after_me(MpegEncContext *dst, COPY(qscale); COPY(lambda); COPY(lambda2); - COPY(picture_in_gop_number); COPY(frame_pred_frame_dct); // FIXME don't set in encode_header COPY(progressive_frame); // FIXME don't set in encode_header COPY(partitioned_frame); // FIXME don't set in encode_header |