Change codec_id type to enum CodecID, fix warning.

Patch by Daniel Verkamp daniel @ drv @ nu.

Originally committed as revision 18768 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Daniel Verkamp 2009-05-06 22:38:21 +00:00 committed by Stefano Sabatini
parent f0b19bd3db
commit cf6bae6883
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ av_cold static int audio_write_header(AVFormatContext *s1)
AlsaData *s = s1->priv_data;
AVStream *st;
unsigned int sample_rate;
int codec_id;
enum CodecID codec_id;
int res;
st = s1->streams[0];