mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avcodec/mpegvideo_enc: Remove always-true check
It is a remnant of the old way for user-supplied buffers;
it is always-true since 93016f5d1d
.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
c3047da646
commit
f703cbabdb
@ -1683,7 +1683,7 @@ int ff_mpv_encode_picture(AVCodecContext *avctx, AVPacket *pkt,
|
||||
|
||||
/* output? */
|
||||
if (s->new_picture->data[0]) {
|
||||
int growing_buffer = context_count == 1 && !pkt->data && !s->data_partitioning;
|
||||
int growing_buffer = context_count == 1 && !s->data_partitioning;
|
||||
size_t pkt_size = 10000 + s->mb_width * s->mb_height *
|
||||
(growing_buffer ? 64 : (MAX_MB_BYTES + 100));
|
||||
if (CONFIG_MJPEG_ENCODER && avctx->codec_id == AV_CODEC_ID_MJPEG) {
|
||||
|
Loading…
Reference in New Issue
Block a user