[FFmpeg-devel] [PATCH 02/21] avformat/internal: Avoid casting const away
Andreas Rheinhardt
andreas.rheinhardt at outlook.com
Thu Sep 7 03:32:20 EEST 2023
Fixes many warnings when using -Wcast-qual.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
---
libavformat/internal.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/internal.h b/libavformat/internal.h
index 051e8e2893..c7512898b5 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -418,7 +418,7 @@ static av_always_inline FFStream *ffstream(AVStream *st)
static av_always_inline const FFStream *cffstream(const AVStream *st)
{
- return (FFStream*)st;
+ return (const FFStream*)st;
}
#ifdef __GNUC__
--
2.34.1
More information about the ffmpeg-devel
mailing list