diff au.c @ 3967:4fd67f05bad9 libavformat

Use enum typers instead of int. Patch by Diego 'Flameeyes' Petten: flameeyes gmail
author benoit
date Thu, 02 Oct 2008 16:03:00 +0000
parents e6aeb2733e34
children 549a09cf23fe
line wrap: on
line diff
--- a/au.c	Thu Oct 02 15:52:04 2008 +0000
+++ b/au.c	Thu Oct 02 16:03:00 2008 +0000
@@ -122,7 +122,8 @@
     int size;
     unsigned int tag;
     ByteIOContext *pb = s->pb;
-    unsigned int id, codec, channels, rate;
+    unsigned int id, channels, rate;
+    enum CodecID codec;
     AVStream *st;
 
     /* check ".snd" header */