[FFmpeg-devel] [PATCH 1/2] avcodec/decode: don't reject flush packets when buffer_pkt is not empty
James Almer
jamrial at gmail.com
Wed Jul 12 05:06:43 EEST 2023
Restores the behavior pre commit a92dbeb9ae.
Signed-off-by: James Almer <jamrial at gmail.com>
---
libavcodec/decode.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/libavcodec/decode.c b/libavcodec/decode.c
index a47abeca06..239ad70b41 100644
--- a/libavcodec/decode.c
+++ b/libavcodec/decode.c
@@ -666,10 +666,9 @@ int attribute_align_arg avcodec_send_packet(AVCodecContext *avctx, const AVPacke
if (avpkt && !avpkt->size && avpkt->data)
return AVERROR(EINVAL);
- if (!AVPACKET_IS_EMPTY(avci->buffer_pkt))
- return AVERROR(EAGAIN);
-
if (avpkt && (avpkt->data || avpkt->side_data_elems)) {
+ if (!AVPACKET_IS_EMPTY(avci->buffer_pkt))
+ return AVERROR(EAGAIN);
ret = av_packet_ref(avci->buffer_pkt, avpkt);
if (ret < 0)
return ret;
--
2.41.0
More information about the ffmpeg-devel
mailing list