summaryrefslogtreecommitdiff
path: root/libavdevice/alsa-audio-dec.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2009-04-14 22:19:43 +0000
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2009-04-14 22:19:43 +0000
commit5c463aacb26b119ae342de37b411b140718274e0 (patch)
tree626423c27f43b882af850d19f31aa1a47554f0ae /libavdevice/alsa-audio-dec.c
parentde5922f179b5306a2ff7d31f15e29db679ef6dcc (diff)
Fix icc warning #188: enumerated type mixed with another type.
Originally committed as revision 18513 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavdevice/alsa-audio-dec.c')
-rw-r--r--libavdevice/alsa-audio-dec.c2
1 files changed, 1 insertions, 1 deletions
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) {