From 0f87b77176e0ff347170d5aaa46c7b2a6253a702 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sun, 8 Nov 2009 23:48:15 +0000 Subject: Use enum instead of integer types where appropriate. Originally committed as revision 20482 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/raw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/raw.c') diff --git a/libavformat/raw.c b/libavformat/raw.c index 1449a20..1af7d11 100644 --- a/libavformat/raw.c +++ b/libavformat/raw.c @@ -66,7 +66,7 @@ static int raw_write_packet(struct AVFormatContext *s, AVPacket *pkt) static int raw_read_header(AVFormatContext *s, AVFormatParameters *ap) { AVStream *st; - int id; + enum CodecID id; st = av_new_stream(s, 0); if (!st) -- cgit v1.1