diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-04-14 22:19:43 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-04-14 22:19:43 +0000 |
commit | 5c463aacb26b119ae342de37b411b140718274e0 (patch) | |
tree | 626423c27f43b882af850d19f31aa1a47554f0ae /libavdevice | |
parent | de5922f179b5306a2ff7d31f15e29db679ef6dcc (diff) | |
download | ffmpeg-5c463aacb26b119ae342de37b411b140718274e0.tar.gz |
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')
-rw-r--r-- | libavdevice/alsa-audio-dec.c | 2 |
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) { |