Commit 899af1a2 authored by Diego Biurrun's avatar Diego Biurrun

Do not set audio codec_tag to 1, that would be PCM audio.

Originally committed as revision 6903 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c9ec7564
......@@ -188,7 +188,7 @@ static int fourxm_read_header(AVFormatContext *s,
fourxm->tracks[current_track].stream_index = st->index;
st->codec->codec_type = CODEC_TYPE_AUDIO;
st->codec->codec_tag = 1;
st->codec->codec_tag = 0;
st->codec->channels = fourxm->tracks[current_track].channels;
st->codec->sample_rate = fourxm->tracks[current_track].sample_rate;
st->codec->bits_per_sample = fourxm->tracks[current_track].bits;
......
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