[FFmpeg-cvslog] lavf/amr: Do not set codec_tag for raw amr_nb and raw amr_wb.
Carl Eugen Hoyos
git at videolan.org
Mon Nov 6 14:37:28 EET 2017
ffmpeg | branch: master | Carl Eugen Hoyos <ceffmpeg at gmail.com> | Mon Nov 6 13:36:40 2017 +0100| [0a60cc909ed5c2b0fb6f58d9ae0bfc44b00060bf] | committer: Carl Eugen Hoyos
lavf/amr: Do not set codec_tag for raw amr_nb and raw amr_wb.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0a60cc909ed5c2b0fb6f58d9ae0bfc44b00060bf
---
libavformat/amr.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/libavformat/amr.c b/libavformat/amr.c
index fffeb65f68..8b4d736d2f 100644
--- a/libavformat/amr.c
+++ b/libavformat/amr.c
@@ -210,7 +210,6 @@ static int amrnb_read_header(AVFormatContext *s)
AVStream *st = avformat_new_stream(s, NULL);
if (!st)
return AVERROR(ENOMEM);
- st->codecpar->codec_tag = MKTAG('s', 'a', 'm', 'r');
st->codecpar->codec_id = AV_CODEC_ID_AMR_NB;
st->codecpar->sample_rate = 8000;
st->codecpar->channels = 1;
@@ -267,7 +266,6 @@ static int amrwb_read_header(AVFormatContext *s)
AVStream *st = avformat_new_stream(s, NULL);
if (!st)
return AVERROR(ENOMEM);
- st->codecpar->codec_tag = MKTAG('s', 'a', 'w', 'b');
st->codecpar->codec_id = AV_CODEC_ID_AMR_WB;
st->codecpar->sample_rate = 16000;
st->codecpar->channels = 1;
More information about the ffmpeg-cvslog
mailing list