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:
Andreas Rheinhardt 2024-04-29 19:48:08 +02:00
parent b2ac792367
commit 34ed9d1954
1 changed files with 0 additions and 5 deletions

View File

@ -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);
}