It is redundant due to the identical check in ff_mpv_encode_init().
Signed-off-by: Andreas Rheinhardt <[email protected]>
---
libavcodec/ituh263enc.c | 5 -----
1 file changed, 5 deletions(-)
diff --git a/libavcodec/ituh263enc.c b/libavcodec/ituh263enc.c
index b65a1c069a..c17303bff9 100644
--- a/libavcodec/ituh263enc.c
+++ b/libavcodec/ituh263enc.c
@@ -865,11 +865,6 @@ av_cold void ff_h263_encode_init(MpegEncContext *s)
s->c_dc_scale_table= ff_mpeg1_dc_scale_table;
}
- if (s->lmin > s->lmax) {
- av_log(s->avctx, AV_LOG_WARNING, "Clipping lmin value to %d\n",
s->lmax);
- s->lmin = s->lmax;
- }
-
ff_thread_once(&init_static_once, h263_encode_init_static);
}
--
2.40.1
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".