mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 09:12:33 +00: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:
parent
b2ac792367
commit
34ed9d1954
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user