[FFmpeg-cvslog] r18513 - trunk/libavdevice/alsa-audio-dec.c

cehoyos subversion
Wed Apr 15 00:19:43 CEST 2009


Author: cehoyos
Date: Wed Apr 15 00:19:43 2009
New Revision: 18513

Log:
Fix icc warning #188: enumerated type mixed with another type.

Modified:
   trunk/libavdevice/alsa-audio-dec.c

Modified: trunk/libavdevice/alsa-audio-dec.c
==============================================================================
--- trunk/libavdevice/alsa-audio-dec.c	Tue Apr 14 23:03:41 2009	(r18512)
+++ trunk/libavdevice/alsa-audio-dec.c	Wed Apr 15 00:19:43 2009	(r18513)
@@ -57,7 +57,7 @@ av_cold static int audio_read_header(AVF
     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) {



More information about the ffmpeg-cvslog mailing list