From fb65d2ca84d79fb1c5a5708555c23e1d289b5c92 Mon Sep 17 00:00:00 2001 From: Diego Pettenò Date: Thu, 2 Oct 2008 16:03:00 +0000 Subject: Use enum typers instead of int. Patch by Diego 'Flameeyes' Pettenò: flameeyes gmail MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 15517 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/au.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavformat/au.c') diff --git a/libavformat/au.c b/libavformat/au.c index 3dfd31e761..ffb26ed54e 100644 --- a/libavformat/au.c +++ b/libavformat/au.c @@ -122,7 +122,8 @@ static int au_read_header(AVFormatContext *s, 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 */ -- cgit v1.2.3