oma.c 6.7 KB
Newer Older
Benjamin Larsson's avatar
Benjamin Larsson committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Sony OpenMG (OMA) demuxer
 *
 * Copyright (c) 2008 Maxim Poliakovski
 *               2008 Benjamin Larsson
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

/**
25
 * @file
Benjamin Larsson's avatar
Benjamin Larsson committed
26 27 28 29
 * This is a demuxer for Sony OpenMG Music files
 *
 * Known file extensions: ".oma", "aa3"
 * The format of such files consists of three parts:
30 31
 * - "ea3" header carrying overall info and metadata. Except for starting with
 *   "ea" instead of "ID", it's an ID3v2 header.
Benjamin Larsson's avatar
Benjamin Larsson committed
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
 * - "EA3" header is a Sony-specific header containing information about
 *   the OpenMG file: codec type (usually ATRAC, can also be MP3 or WMA),
 *   codec specific info (packet size, sample rate, channels and so on)
 *   and DRM related info (file encryption, content id).
 * - Sound data organized in packets follow the EA3 header
 *   (can be encrypted using the Sony DRM!).
 *
 * LIMITATIONS: This version supports only plain (unencrypted) OMA files.
 * If any DRM-protected (encrypted) file is encountered you will get the
 * corresponding error message. Try to remove the encryption using any
 * Sony software (for example SonicStage).
 * CODEC SUPPORT: Only ATRAC3 codec is currently supported!
 */

#include "avformat.h"
#include "libavutil/intreadwrite.h"
48
#include "pcm.h"
Benjamin Larsson's avatar
Benjamin Larsson committed
49
#include "riff.h"
50
#include "id3v2.h"
Benjamin Larsson's avatar
Benjamin Larsson committed
51 52 53 54 55 56

#define EA3_HEADER_SIZE 96

enum {
    OMA_CODECID_ATRAC3  = 0,
    OMA_CODECID_ATRAC3P = 1,
57 58 59
    OMA_CODECID_MP3     = 3,
    OMA_CODECID_LPCM    = 4,
    OMA_CODECID_WMA     = 5,
Benjamin Larsson's avatar
Benjamin Larsson committed
60 61 62 63 64
};

static const AVCodecTag codec_oma_tags[] = {
    { CODEC_ID_ATRAC3,  OMA_CODECID_ATRAC3 },
    { CODEC_ID_ATRAC3P, OMA_CODECID_ATRAC3P },
65
    { CODEC_ID_MP3,     OMA_CODECID_MP3 },
Benjamin Larsson's avatar
Benjamin Larsson committed
66 67
};

68 69
#define ID3v2_EA3_MAGIC "ea3"

Benjamin Larsson's avatar
Benjamin Larsson committed
70 71 72 73
static int oma_read_header(AVFormatContext *s,
                           AVFormatParameters *ap)
{
    static const uint16_t srate_tab[6] = {320,441,480,882,960,0};
74
    int     ret, framesize, jsflag, samplerate;
Benjamin Larsson's avatar
Benjamin Larsson committed
75 76 77 78 79 80
    uint32_t codec_params;
    int16_t eid;
    uint8_t buf[EA3_HEADER_SIZE];
    uint8_t *edata;
    AVStream *st;

81
    ff_id3v2_read(s, ID3v2_EA3_MAGIC);
82
    ret = avio_read(s->pb, buf, EA3_HEADER_SIZE);
83 84
    if (ret < EA3_HEADER_SIZE)
        return -1;
Benjamin Larsson's avatar
Benjamin Larsson committed
85

86
    if (memcmp(buf, ((const uint8_t[]){'E', 'A', '3'}),3) || buf[4] != 0 || buf[5] != EA3_HEADER_SIZE) {
Benjamin Larsson's avatar
Benjamin Larsson committed
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
        av_log(s, AV_LOG_ERROR, "Couldn't find the EA3 header !\n");
        return -1;
    }

    eid = AV_RB16(&buf[6]);
    if (eid != -1 && eid != -128) {
        av_log(s, AV_LOG_ERROR, "Encrypted file! Eid: %d\n", eid);
        return -1;
    }

    codec_params = AV_RB24(&buf[33]);

    st = av_new_stream(s, 0);
    if (!st)
        return AVERROR(ENOMEM);

103
    st->start_time = 0;
104
    st->codec->codec_type  = AVMEDIA_TYPE_AUDIO;
105
    st->codec->codec_tag   = buf[32];
106
    st->codec->codec_id    = ff_codec_get_id(codec_oma_tags, st->codec->codec_tag);
107

Benjamin Larsson's avatar
Benjamin Larsson committed
108 109
    switch (buf[32]) {
        case OMA_CODECID_ATRAC3:
110
            samplerate = srate_tab[(codec_params >> 13) & 7]*100;
Benjamin Larsson's avatar
Benjamin Larsson committed
111
            if (samplerate != 44100)
112 113
                av_log_ask_for_sample(s, "Unsupported sample rate: %d\n",
                                      samplerate);
Benjamin Larsson's avatar
Benjamin Larsson committed
114 115 116

            framesize = (codec_params & 0x3FF) * 8;
            jsflag = (codec_params >> 17) & 1; /* get stereo coding mode, 1 for joint-stereo */
117 118 119
            st->codec->channels    = 2;
            st->codec->sample_rate = samplerate;
            st->codec->bit_rate    = st->codec->sample_rate * framesize * 8 / 1024;
Benjamin Larsson's avatar
Benjamin Larsson committed
120 121 122 123 124 125 126 127 128 129 130 131 132 133

            /* fake the atrac3 extradata (wav format, makes stream copy to wav work) */
            st->codec->extradata_size = 14;
            edata = av_mallocz(14 + FF_INPUT_BUFFER_PADDING_SIZE);
            if (!edata)
                return AVERROR(ENOMEM);

            st->codec->extradata = edata;
            AV_WL16(&edata[0],  1);             // always 1
            AV_WL32(&edata[2],  samplerate);    // samples rate
            AV_WL16(&edata[6],  jsflag);        // coding mode
            AV_WL16(&edata[8],  jsflag);        // coding mode
            AV_WL16(&edata[10], 1);             // always 1
            // AV_WL16(&edata[12], 0);          // always 0
134 135

            av_set_pts_info(st, 64, 1, st->codec->sample_rate);
Benjamin Larsson's avatar
Benjamin Larsson committed
136 137
            break;
        case OMA_CODECID_ATRAC3P:
138
            st->codec->channels = (codec_params >> 10) & 7;
Benjamin Larsson's avatar
Benjamin Larsson committed
139
            framesize = ((codec_params & 0x3FF) * 8) + 8;
140 141 142
            st->codec->sample_rate = srate_tab[(codec_params >> 13) & 7]*100;
            st->codec->bit_rate    = st->codec->sample_rate * framesize * 8 / 1024;
            av_set_pts_info(st, 64, 1, st->codec->sample_rate);
Benjamin Larsson's avatar
Benjamin Larsson committed
143 144
            av_log(s, AV_LOG_ERROR, "Unsupported codec ATRAC3+!\n");
            break;
145 146 147 148
        case OMA_CODECID_MP3:
            st->need_parsing = AVSTREAM_PARSE_FULL;
            framesize = 1024;
            break;
Benjamin Larsson's avatar
Benjamin Larsson committed
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
        default:
            av_log(s, AV_LOG_ERROR, "Unsupported codec %d!\n",buf[32]);
            return -1;
    }

    st->codec->block_align = framesize;

    return 0;
}


static int oma_read_packet(AVFormatContext *s, AVPacket *pkt)
{
    int ret = av_get_packet(s->pb, pkt, s->streams[0]->codec->block_align);

    pkt->stream_index = 0;
    if (ret <= 0)
        return AVERROR(EIO);

    return ret;
}

static int oma_read_probe(AVProbeData *p)
{
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
    const uint8_t *buf;
    unsigned tag_len = 0;

    buf = p->buf;
    /* version must be 3 and flags byte zero */
    if (ff_id3v2_match(buf, ID3v2_EA3_MAGIC) && buf[3] == 3 && !buf[4])
        tag_len = ff_id3v2_tag_len(buf);

    // This check cannot overflow as tag_len has at most 28 bits
    if (p->buf_size < tag_len + 5)
        return 0;

    buf += tag_len;

    if (!memcmp(buf, "EA3", 3) && !buf[4] && buf[5] == EA3_HEADER_SIZE)
Benjamin Larsson's avatar
Benjamin Larsson committed
188 189 190 191 192 193
        return AVPROBE_SCORE_MAX;
    else
        return 0;
}


194
AVInputFormat ff_oma_demuxer = {
195 196 197 198 199 200
    .name           = "oma",
    .long_name      = NULL_IF_CONFIG_SMALL("Sony OpenMG audio"),
    .read_probe     = oma_read_probe,
    .read_header    = oma_read_header,
    .read_packet    = oma_read_packet,
    .read_seek      = pcm_read_seek,
Benjamin Larsson's avatar
Benjamin Larsson committed
201 202
    .flags= AVFMT_GENERIC_INDEX,
    .extensions = "oma,aa3",
203
    .codec_tag= (const AVCodecTag* const []){codec_oma_tags, 0},
Benjamin Larsson's avatar
Benjamin Larsson committed
204 205
};