Commit ca1e666a authored by diego's avatar diego

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6903 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent fcd5bf93
...@@ -188,7 +188,7 @@ static int fourxm_read_header(AVFormatContext *s, ...@@ -188,7 +188,7 @@ static int fourxm_read_header(AVFormatContext *s,
fourxm->tracks[current_track].stream_index = st->index; fourxm->tracks[current_track].stream_index = st->index;
st->codec->codec_type = CODEC_TYPE_AUDIO; 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->channels = fourxm->tracks[current_track].channels;
st->codec->sample_rate = fourxm->tracks[current_track].sample_rate; st->codec->sample_rate = fourxm->tracks[current_track].sample_rate;
st->codec->bits_per_sample = fourxm->tracks[current_track].bits; 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