diff mbox series

[FFmpeg-devel,27/27] avformat/demux: Use enum AVCodecID for raw_codec_id

Message ID DU0P250MB07471458F86EEB55195A01378F4A2@DU0P250MB0747.EURP250.PROD.OUTLOOK.COM
State Accepted
Commit cd93ba6531055280f3585ddc6d82b2ab47613bc5
Headers show
Series Major library version bump | expand

Checks

Context Check Description
andriy/configure_x86 warning Failed to apply patch
yinshiyou/configure_loongarch64 warning Failed to apply patch

Commit Message

Andreas Rheinhardt Feb. 10, 2024, 2:50 p.m. UTC
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavformat/demux.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavformat/demux.h b/libavformat/demux.h
index 41d1318f75..4e8d042e75 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.