[SCM] libav/experimental: Add support for mp3 contained in oma

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:24:22 UTC 2013


The following commit has been merged in the experimental branch:
commit 75d27450a1c452b3d1058b1ca0c2c3b30770330e
Author: Benjamin Larsson <banan at ludd.ltu.se>
Date:   Wed Jun 25 19:59:52 2008 +0000

    Add support for mp3 contained in oma
    
    Originally committed as revision 13980 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/oma.c b/libavformat/oma.c
index 1f8f512..653f413 100644
--- a/libavformat/oma.c
+++ b/libavformat/oma.c
@@ -147,6 +147,10 @@ static int oma_read_header(AVFormatContext *s,
             av_set_pts_info(st, 64, 1, st->codec->sample_rate);
             av_log(s, AV_LOG_ERROR, "Unsupported codec ATRAC3+!\n");
             break;
+        case OMA_CODECID_MP3:
+            st->need_parsing = AVSTREAM_PARSE_FULL;
+            framesize = 1024;
+            break;
         default:
             av_log(s, AV_LOG_ERROR, "Unsupported codec %d!\n",buf[32]);
             return -1;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list