[FFmpeg-devel] [PATCH 10/15] avformat/lafdec: Fix shadowing
Andreas Rheinhardt
andreas.rheinhardt at outlook.com
Sat Mar 23 04:06:18 EET 2024
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
---
libavformat/lafdec.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/lafdec.c b/libavformat/lafdec.c
index 05f30691ba..77eab2ea6b 100644
--- a/libavformat/lafdec.c
+++ b/libavformat/lafdec.c
@@ -148,8 +148,8 @@ static int laf_read_header(AVFormatContext *ctx)
if (!s->data)
return AVERROR(ENOMEM);
- for (int st = 0; st < st_count; st++) {
- StreamParams *stp = &s->p[st];
+ for (unsigned i = 0; i < st_count; i++) {
+ StreamParams *stp = &s->p[i];
AVCodecParameters *par;
AVStream *st = avformat_new_stream(ctx, NULL);
if (!st)
--
2.40.1
More information about the ffmpeg-devel
mailing list