[FFmpeg-cvslog] doc/examples/demux_decode: Simplify loop
Michael Niedermayer
git at videolan.org
Fri Jun 14 22:19:53 EEST 2024
ffmpeg | branch: release/4.3 | Michael Niedermayer <michael at niedermayer.cc> | Wed Apr 24 03:08:14 2024 +0200| [62ffa50af2d7b6e265bdf89bd494dfee8f5c9927] | committer: Michael Niedermayer
doc/examples/demux_decode: Simplify loop
Fixes: CID1463550 Logically dead code
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit 91d27f7e02e5bec4b6e53cc7a7f15df8be017bb3)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=62ffa50af2d7b6e265bdf89bd494dfee8f5c9927
---
doc/examples/demuxing_decoding.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/doc/examples/demuxing_decoding.c b/doc/examples/demuxing_decoding.c
index 803e35d25c..e9feddfc18 100644
--- a/doc/examples/demuxing_decoding.c
+++ b/doc/examples/demuxing_decoding.c
@@ -137,11 +137,9 @@ static int decode_packet(AVCodecContext *dec, const AVPacket *pkt)
ret = output_audio_frame(frame);
av_frame_unref(frame);
- if (ret < 0)
- return ret;
}
- return 0;
+ return ret;
}
static int open_codec_context(int *stream_idx,
More information about the ffmpeg-cvslog
mailing list