From cd93ba6531055280f3585ddc6d82b2ab47613bc5 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sat, 10 Feb 2024 15:50:45 +0100 Subject: [PATCH] avformat/demux: Use enum AVCodecID for raw_codec_id Signed-off-by: Andreas Rheinhardt --- libavformat/demux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/demux.h b/libavformat/demux.h index 2451202f60..48c71ab55d 100644 --- a/libavformat/demux.h +++ b/libavformat/demux.h @@ -37,7 +37,7 @@ typedef struct FFInputFormat { /** * Raw demuxers store their codec ID here. */ - int raw_codec_id; + enum AVCodecID raw_codec_id; /** * Size of private data so that it can be allocated in the wrapper.