From 5c463aacb26b119ae342de37b411b140718274e0 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Tue, 14 Apr 2009 22:19:43 +0000 Subject: [PATCH] Fix icc warning #188: enumerated type mixed with another type. Originally committed as revision 18513 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavdevice/alsa-audio-dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavdevice/alsa-audio-dec.c b/libavdevice/alsa-audio-dec.c index 6f0c214d96..48ed75ee1f 100644 --- a/libavdevice/alsa-audio-dec.c +++ b/libavdevice/alsa-audio-dec.c @@ -57,7 +57,7 @@ av_cold static int audio_read_header(AVFormatContext *s1, AVStream *st; int ret; unsigned int sample_rate; - int codec_id; + enum CodecID codec_id; snd_pcm_sw_params_t *sw_params; if (ap->sample_rate <= 0) {