mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
avformat/utils: don't overwrite the return value of read_packet()
This only affected demuxers that didn't return reference counted packets. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
f4709f1b7b
commit
f235359b2b
1 changed files with 3 additions and 3 deletions
|
|
@ -869,9 +869,9 @@ int ff_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||||
|
|
||||||
if (!pkt->buf) {
|
if (!pkt->buf) {
|
||||||
AVPacket tmp = { 0 };
|
AVPacket tmp = { 0 };
|
||||||
ret = av_packet_ref(&tmp, pkt);
|
err = av_packet_ref(&tmp, pkt);
|
||||||
if (ret < 0)
|
if (err < 0)
|
||||||
return ret;
|
return err;
|
||||||
*pkt = tmp;
|
*pkt = tmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue