diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-05-21 02:17:25 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-05-26 05:03:15 +0200 |
commit | da5c2a419b6da76fcb7b94b088d59e918e7e74fb (patch) | |
tree | 53ab76489407b292a038bde7bc26ea8e58873177 /libavcodec/mpegvideo_enc.c | |
parent | 8987c293908b0ba82f0320c04caf7ad601497c5a (diff) | |
download | ffmpeg-da5c2a419b6da76fcb7b94b088d59e918e7e74fb.tar.gz |
avcodec/ituh263enc: Don't use h263_plus field
It is equal to codec_id == AV_CODEC_ID_H263P, check for that instead.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpegvideo_enc.c')
-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 241e0a148f..233d729008 100644 --- a/libavcodec/mpegvideo_enc.c +++ b/libavcodec/mpegvideo_enc.c @@ -908,7 +908,6 @@ av_cold int ff_mpv_encode_init(AVCodecContext *avctx) break; case AV_CODEC_ID_H263P: s->c.out_format = FMT_H263; - s->c.h263_plus = 1; /* Fx */ s->c.h263_aic = (avctx->flags & AV_CODEC_FLAG_AC_PRED) ? 1 : 0; s->c.modified_quant = s->c.h263_aic; |