[FFmpeg-devel] [PATCH 2/5] doc/examples/qsv_transcode: Simplify loop
Michael Niedermayer
michael at niedermayer.cc
Wed Apr 24 04:45:19 EEST 2024
Fixes: CID1428858(2/2) Logically dead code
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
doc/examples/qsv_transcode.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/doc/examples/qsv_transcode.c b/doc/examples/qsv_transcode.c
index 8e7d2899f12..a4440a3403f 100644
--- a/doc/examples/qsv_transcode.c
+++ b/doc/examples/qsv_transcode.c
@@ -335,10 +335,8 @@ static int dec_enc(AVPacket *pkt, const AVCodec *enc_codec, char *optstr)
fail:
av_frame_free(&frame);
- if (ret < 0)
- return ret;
}
- return 0;
+ return ret;
}
int main(int argc, char **argv)
--
2.43.2
More information about the ffmpeg-devel
mailing list