mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-25 00:32:31 +00:00
avcodec/decode: don't reject flush packets when buffer_pkt is not empty
Restores the behavior before commit a92dbeb9ae
.
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
02aeacbb5e
commit
e6954fd087
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user