Commit 4a65cf21 authored by stefano's avatar stefano

Change codec_id type to enum CodecID, fix warning.

Patch by Daniel Verkamp daniel @ drv @ nu.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18768 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 47b10a11
...@@ -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