mirror of
https://mirror.skon.top/https://github.com/FFmpeg/FFmpeg
synced 2026-05-01 06:13:08 +08:00
avcodec/ituh263enc: Remove redundant check
It is redundant due to the identical check in ff_mpv_encode_init(). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -881,11 +881,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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user