# HG changeset patch # User rtognimp # Date 1114341335 0 # Node ID 909942162fa3b222b2a1f27fccc7201cea6e7f29 # Parent ec09d6e383b4e2e197880ca66a001fa02e2e907c Put correct fourcc in tag field for amr_nb (samr) and amr_wb (sawb) diff -r ec09d6e383b4 -r 909942162fa3 amr.c --- a/amr.c Wed Apr 20 09:42:47 2005 +0000 +++ b/amr.c Sun Apr 24 11:15:35 2005 +0000 @@ -101,7 +101,7 @@ } st->codec.codec_type = CODEC_TYPE_AUDIO; - st->codec.codec_tag = CODEC_ID_AMR_WB; + st->codec.codec_tag = MKTAG('s', 'a', 'w', 'b'); st->codec.codec_id = CODEC_ID_AMR_WB; st->codec.channels = 1; st->codec.sample_rate = 16000; @@ -115,7 +115,7 @@ } st->codec.codec_type = CODEC_TYPE_AUDIO; - st->codec.codec_tag = CODEC_ID_AMR_NB; + st->codec.codec_tag = MKTAG('s', 'a', 'm', 'r'); st->codec.codec_id = CODEC_ID_AMR_NB; st->codec.channels = 1; st->codec.sample_rate = 8000;