From 899af1a26aeac9bf3e924d6a49ad0ce6175adbec Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 5 Nov 2006 16:31:52 +0000 Subject: 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 --- libavformat/4xm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/4xm.c') diff --git a/libavformat/4xm.c b/libavformat/4xm.c index 60d3cae971..12e7d9ee4e 100644 --- a/libavformat/4xm.c +++ b/libavformat/4xm.c @@ -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; -- cgit v1.2.3