summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-02-10 15:50:45 +0100
committerJames Almer <jamrial@gmail.com>2024-03-07 08:53:31 -0300
commitcd93ba6531055280f3585ddc6d82b2ab47613bc5 (patch)
treedb8836079b4f5602da0add225c4a718005164db9
parentbe54923abc6d3ab965c17265d44a2724fab29c97 (diff)
avformat/demux: Use enum AVCodecID for raw_codec_id
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavformat/demux.h2
1 files changed, 1 insertions, 1 deletions
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.