Commit cf6bae68 authored by Daniel Verkamp's avatar Daniel Verkamp Committed by Stefano Sabatini

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
parent f0b19bd3
...@@ -47,7 +47,7 @@ av_cold static int audio_write_header(AVFormatContext *s1) ...@@ -47,7 +47,7 @@ av_cold static int audio_write_header(AVFormatContext *s1)
AlsaData *s = s1->priv_data; AlsaData *s = s1->priv_data;
AVStream *st; AVStream *st;
unsigned int sample_rate; unsigned int sample_rate;
int codec_id; enum CodecID codec_id;
int res; int res;
st = s1->streams[0]; st = s1->streams[0];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment