[FFmpeg-cvslog] avformat/avr: use ff_get_pcm_codec_id()

Paul B Mahol git at videolan.org
Sat Oct 12 22:33:17 CEST 2013


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sat Oct 12 20:21:38 2013 +0000| [fd54f700720a0fed7432a2b3741989d9bff09d99] | committer: Paul B Mahol

avformat/avr: use ff_get_pcm_codec_id()

Signed-off-by: Paul B Mahol <onemda at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fd54f700720a0fed7432a2b3741989d9bff09d99
---

 libavformat/avr.c |   13 +++----------
 1 file changed, 3 insertions(+), 10 deletions(-)

diff --git a/libavformat/avr.c b/libavformat/avr.c
index e03f1a4..02edf45 100644
--- a/libavformat/avr.c
+++ b/libavformat/avr.c
@@ -69,16 +69,9 @@ static int avr_read_header(AVFormatContext *s)
     avio_skip(s->pb, 20);
     avio_skip(s->pb, 64);
 
-    if (!sign && bps == 8) {
-        st->codec->codec_id = AV_CODEC_ID_PCM_U8;
-    } else if (!sign && bps == 16) {
-        st->codec->codec_id = AV_CODEC_ID_PCM_U16BE;
-    } else if (sign == 0xFFFFu && bps == 8) {
-        st->codec->codec_id = AV_CODEC_ID_PCM_S8;
-    } else if (sign == 0xFFFFu && bps == 16) {
-        st->codec->codec_id = AV_CODEC_ID_PCM_S16BE;
-    } else {
-        avpriv_request_sample(s, "bits per sample %d", bps);
+    st->codec->codec_id = ff_get_pcm_codec_id(bps, 0, 1, sign);
+    if (st->codec->codec_id == AV_CODEC_ID_NONE) {
+        avpriv_request_sample(s, "Bps %d and sign %d", bps, sign);
         return AVERROR_PATCHWELCOME;
     }
 



More information about the ffmpeg-cvslog mailing list