oma.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. /*
  2. * Sony OpenMG (OMA) demuxer
  3. *
  4. * Copyright (c) 2008 Maxim Poliakovski
  5. * 2008 Benjamin Larsson
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. /**
  24. * @file
  25. * This is a demuxer for Sony OpenMG Music files
  26. *
  27. * Known file extensions: ".oma", "aa3"
  28. * The format of such files consists of three parts:
  29. * - "ea3" header carrying overall info and metadata. Except for starting with
  30. * "ea" instead of "ID", it's an ID3v2 header.
  31. * - "EA3" header is a Sony-specific header containing information about
  32. * the OpenMG file: codec type (usually ATRAC, can also be MP3 or WMA),
  33. * codec specific info (packet size, sample rate, channels and so on)
  34. * and DRM related info (file encryption, content id).
  35. * - Sound data organized in packets follow the EA3 header
  36. * (can be encrypted using the Sony DRM!).
  37. *
  38. * LIMITATIONS: This version supports only plain (unencrypted) OMA files.
  39. * If any DRM-protected (encrypted) file is encountered you will get the
  40. * corresponding error message. Try to remove the encryption using any
  41. * Sony software (for example SonicStage).
  42. * CODEC SUPPORT: Only ATRAC3 codec is currently supported!
  43. */
  44. #include "avformat.h"
  45. #include "libavutil/intreadwrite.h"
  46. #include "pcm.h"
  47. #include "riff.h"
  48. #include "id3v2.h"
  49. #define EA3_HEADER_SIZE 96
  50. enum {
  51. OMA_CODECID_ATRAC3 = 0,
  52. OMA_CODECID_ATRAC3P = 1,
  53. OMA_CODECID_MP3 = 3,
  54. OMA_CODECID_LPCM = 4,
  55. OMA_CODECID_WMA = 5,
  56. };
  57. static const AVCodecTag codec_oma_tags[] = {
  58. { CODEC_ID_ATRAC3, OMA_CODECID_ATRAC3 },
  59. { CODEC_ID_ATRAC3P, OMA_CODECID_ATRAC3P },
  60. { CODEC_ID_MP3, OMA_CODECID_MP3 },
  61. };
  62. #define ID3v2_EA3_MAGIC "ea3"
  63. static int oma_read_header(AVFormatContext *s,
  64. AVFormatParameters *ap)
  65. {
  66. static const uint16_t srate_tab[6] = {320,441,480,882,960,0};
  67. int ret, framesize, jsflag, samplerate;
  68. uint32_t codec_params;
  69. int16_t eid;
  70. uint8_t buf[EA3_HEADER_SIZE];
  71. uint8_t *edata;
  72. AVStream *st;
  73. ff_id3v2_read(s, ID3v2_EA3_MAGIC);
  74. ret = avio_read(s->pb, buf, EA3_HEADER_SIZE);
  75. if (memcmp(buf, ((const uint8_t[]){'E', 'A', '3'}),3) || buf[4] != 0 || buf[5] != EA3_HEADER_SIZE) {
  76. av_log(s, AV_LOG_ERROR, "Couldn't find the EA3 header !\n");
  77. return -1;
  78. }
  79. eid = AV_RB16(&buf[6]);
  80. if (eid != -1 && eid != -128) {
  81. av_log(s, AV_LOG_ERROR, "Encrypted file! Eid: %d\n", eid);
  82. return -1;
  83. }
  84. codec_params = AV_RB24(&buf[33]);
  85. st = av_new_stream(s, 0);
  86. if (!st)
  87. return AVERROR(ENOMEM);
  88. st->start_time = 0;
  89. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  90. st->codec->codec_tag = buf[32];
  91. st->codec->codec_id = ff_codec_get_id(codec_oma_tags, st->codec->codec_tag);
  92. switch (buf[32]) {
  93. case OMA_CODECID_ATRAC3:
  94. samplerate = srate_tab[(codec_params >> 13) & 7]*100;
  95. if (samplerate != 44100)
  96. av_log_ask_for_sample(s, "Unsupported sample rate: %d\n",
  97. samplerate);
  98. framesize = (codec_params & 0x3FF) * 8;
  99. jsflag = (codec_params >> 17) & 1; /* get stereo coding mode, 1 for joint-stereo */
  100. st->codec->channels = 2;
  101. st->codec->sample_rate = samplerate;
  102. st->codec->bit_rate = st->codec->sample_rate * framesize * 8 / 1024;
  103. /* fake the atrac3 extradata (wav format, makes stream copy to wav work) */
  104. st->codec->extradata_size = 14;
  105. edata = av_mallocz(14 + FF_INPUT_BUFFER_PADDING_SIZE);
  106. if (!edata)
  107. return AVERROR(ENOMEM);
  108. st->codec->extradata = edata;
  109. AV_WL16(&edata[0], 1); // always 1
  110. AV_WL32(&edata[2], samplerate); // samples rate
  111. AV_WL16(&edata[6], jsflag); // coding mode
  112. AV_WL16(&edata[8], jsflag); // coding mode
  113. AV_WL16(&edata[10], 1); // always 1
  114. // AV_WL16(&edata[12], 0); // always 0
  115. av_set_pts_info(st, 64, 1, st->codec->sample_rate);
  116. break;
  117. case OMA_CODECID_ATRAC3P:
  118. st->codec->channels = (codec_params >> 10) & 7;
  119. framesize = ((codec_params & 0x3FF) * 8) + 8;
  120. st->codec->sample_rate = srate_tab[(codec_params >> 13) & 7]*100;
  121. st->codec->bit_rate = st->codec->sample_rate * framesize * 8 / 1024;
  122. av_set_pts_info(st, 64, 1, st->codec->sample_rate);
  123. av_log(s, AV_LOG_ERROR, "Unsupported codec ATRAC3+!\n");
  124. break;
  125. case OMA_CODECID_MP3:
  126. st->need_parsing = AVSTREAM_PARSE_FULL;
  127. framesize = 1024;
  128. break;
  129. default:
  130. av_log(s, AV_LOG_ERROR, "Unsupported codec %d!\n",buf[32]);
  131. return -1;
  132. break;
  133. }
  134. st->codec->block_align = framesize;
  135. return 0;
  136. }
  137. static int oma_read_packet(AVFormatContext *s, AVPacket *pkt)
  138. {
  139. int ret = av_get_packet(s->pb, pkt, s->streams[0]->codec->block_align);
  140. pkt->stream_index = 0;
  141. if (ret <= 0)
  142. return AVERROR(EIO);
  143. return ret;
  144. }
  145. static int oma_read_probe(AVProbeData *p)
  146. {
  147. const uint8_t *buf;
  148. unsigned tag_len = 0;
  149. buf = p->buf;
  150. /* version must be 3 and flags byte zero */
  151. if (ff_id3v2_match(buf, ID3v2_EA3_MAGIC) && buf[3] == 3 && !buf[4])
  152. tag_len = ff_id3v2_tag_len(buf);
  153. // This check cannot overflow as tag_len has at most 28 bits
  154. if (p->buf_size < tag_len + 5)
  155. return 0;
  156. buf += tag_len;
  157. if (!memcmp(buf, "EA3", 3) && !buf[4] && buf[5] == EA3_HEADER_SIZE)
  158. return AVPROBE_SCORE_MAX;
  159. else
  160. return 0;
  161. }
  162. AVInputFormat ff_oma_demuxer = {
  163. "oma",
  164. NULL_IF_CONFIG_SMALL("Sony OpenMG audio"),
  165. 0,
  166. oma_read_probe,
  167. oma_read_header,
  168. oma_read_packet,
  169. 0,
  170. pcm_read_seek,
  171. .flags= AVFMT_GENERIC_INDEX,
  172. .extensions = "oma,aa3",
  173. .codec_tag= (const AVCodecTag* const []){codec_oma_tags, 0},
  174. };