diff raw.c @ 5360:a00cc1aac80d libavformat

Use enum instead of integer types where appropriate.
author cehoyos
date Sun, 08 Nov 2009 23:48:15 +0000
parents 4aefe095faed
children 8dd3cb8e01c7
line wrap: on
line diff
--- a/raw.c	Sun Nov 08 23:46:32 2009 +0000
+++ b/raw.c	Sun Nov 08 23:48:15 2009 +0000
@@ -66,7 +66,7 @@
 static int raw_read_header(AVFormatContext *s, AVFormatParameters *ap)
 {
     AVStream *st;
-    int id;
+    enum CodecID id;
 
     st = av_new_stream(s, 0);
     if (!st)