You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

198 lines
7.0KB

  1. /*
  2. * GENH demuxer
  3. * Copyright (c) 2015 Paul B Mahol
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/intreadwrite.h"
  22. #include "libavcodec/internal.h"
  23. #include "avformat.h"
  24. #include "internal.h"
  25. typedef struct GENHDemuxContext {
  26. unsigned dsp_int_type;
  27. unsigned interleave_size;
  28. } GENHDemuxContext;
  29. static int genh_probe(const AVProbeData *p)
  30. {
  31. if (AV_RL32(p->buf) != MKTAG('G','E','N','H'))
  32. return 0;
  33. if (AV_RL32(p->buf+4) <= 0 || AV_RL32(p->buf+4) > 0xFFFF) // channels
  34. return 0;
  35. return AVPROBE_SCORE_MAX / 3 * 2;
  36. }
  37. static int genh_read_header(AVFormatContext *s)
  38. {
  39. unsigned start_offset, header_size, codec, coef_type, coef[2];
  40. GENHDemuxContext *c = s->priv_data;
  41. av_unused unsigned coef_splitted[2];
  42. int align, ch, ret;
  43. AVStream *st;
  44. avio_skip(s->pb, 4);
  45. st = avformat_new_stream(s, NULL);
  46. if (!st)
  47. return AVERROR(ENOMEM);
  48. st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
  49. st->codecpar->channels = avio_rl32(s->pb);
  50. if (st->codecpar->channels <= 0 || st->codecpar->channels > FF_SANE_NB_CHANNELS)
  51. return AVERROR_INVALIDDATA;
  52. if (st->codecpar->channels == 1)
  53. st->codecpar->channel_layout = AV_CH_LAYOUT_MONO;
  54. else if (st->codecpar->channels == 2)
  55. st->codecpar->channel_layout = AV_CH_LAYOUT_STEREO;
  56. align =
  57. c->interleave_size = avio_rl32(s->pb);
  58. if (align < 0 || align > INT_MAX / st->codecpar->channels)
  59. return AVERROR_INVALIDDATA;
  60. st->codecpar->block_align = align * st->codecpar->channels;
  61. st->codecpar->sample_rate = avio_rl32(s->pb);
  62. avio_skip(s->pb, 4);
  63. st->duration = avio_rl32(s->pb);
  64. codec = avio_rl32(s->pb);
  65. switch (codec) {
  66. case 0: st->codecpar->codec_id = AV_CODEC_ID_ADPCM_PSX; break;
  67. case 1:
  68. case 11: st->codecpar->bits_per_coded_sample = 4;
  69. st->codecpar->block_align = 36 * st->codecpar->channels;
  70. st->codecpar->codec_id = AV_CODEC_ID_ADPCM_IMA_WAV; break;
  71. case 2: st->codecpar->codec_id = AV_CODEC_ID_ADPCM_DTK; break;
  72. case 3: st->codecpar->codec_id = st->codecpar->block_align > 0 ?
  73. AV_CODEC_ID_PCM_S16BE_PLANAR :
  74. AV_CODEC_ID_PCM_S16BE; break;
  75. case 4: st->codecpar->codec_id = st->codecpar->block_align > 0 ?
  76. AV_CODEC_ID_PCM_S16LE_PLANAR :
  77. AV_CODEC_ID_PCM_S16LE; break;
  78. case 5: st->codecpar->codec_id = st->codecpar->block_align > 0 ?
  79. AV_CODEC_ID_PCM_S8_PLANAR :
  80. AV_CODEC_ID_PCM_S8; break;
  81. case 6: if (st->codecpar->block_align > INT_MAX/1024)
  82. return AVERROR_INVALIDDATA;
  83. st->codecpar->codec_id = AV_CODEC_ID_SDX2_DPCM; break;
  84. case 7: ret = ff_alloc_extradata(st->codecpar, 2);
  85. if (ret < 0)
  86. return ret;
  87. AV_WL16(st->codecpar->extradata, 3);
  88. st->codecpar->codec_id = AV_CODEC_ID_ADPCM_IMA_WS; break;
  89. case 10: st->codecpar->codec_id = AV_CODEC_ID_ADPCM_AICA; break;
  90. case 12: st->codecpar->codec_id = AV_CODEC_ID_ADPCM_THP; break;
  91. case 13: st->codecpar->codec_id = AV_CODEC_ID_PCM_U8; break;
  92. case 17: st->codecpar->codec_id = AV_CODEC_ID_ADPCM_IMA_QT; break;
  93. default:
  94. avpriv_request_sample(s, "codec %d", codec);
  95. return AVERROR_PATCHWELCOME;
  96. }
  97. start_offset = avio_rl32(s->pb);
  98. header_size = avio_rl32(s->pb);
  99. if (header_size > start_offset)
  100. return AVERROR_INVALIDDATA;
  101. if (header_size == 0)
  102. start_offset = 0x800;
  103. coef[0] = avio_rl32(s->pb);
  104. coef[1] = avio_rl32(s->pb);
  105. c->dsp_int_type = avio_rl32(s->pb);
  106. coef_type = avio_rl32(s->pb);
  107. coef_splitted[0] = avio_rl32(s->pb);
  108. coef_splitted[1] = avio_rl32(s->pb);
  109. if (st->codecpar->codec_id == AV_CODEC_ID_ADPCM_THP) {
  110. if (st->codecpar->channels > 2) {
  111. avpriv_request_sample(s, "channels %d>2", st->codecpar->channels);
  112. return AVERROR_PATCHWELCOME;
  113. }
  114. ff_alloc_extradata(st->codecpar, 32 * st->codecpar->channels);
  115. for (ch = 0; ch < st->codecpar->channels; ch++) {
  116. if (coef_type & 1) {
  117. avpriv_request_sample(s, "coef_type & 1");
  118. return AVERROR_PATCHWELCOME;
  119. } else {
  120. avio_seek(s->pb, coef[ch], SEEK_SET);
  121. avio_read(s->pb, st->codecpar->extradata + 32 * ch, 32);
  122. }
  123. }
  124. if (c->dsp_int_type == 1) {
  125. st->codecpar->block_align = 8 * st->codecpar->channels;
  126. if (c->interleave_size != 1 &&
  127. c->interleave_size != 2 &&
  128. c->interleave_size != 4)
  129. return AVERROR_INVALIDDATA;
  130. }
  131. }
  132. avio_skip(s->pb, start_offset - avio_tell(s->pb));
  133. avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
  134. return 0;
  135. }
  136. static int genh_read_packet(AVFormatContext *s, AVPacket *pkt)
  137. {
  138. AVCodecParameters *par = s->streams[0]->codecpar;
  139. GENHDemuxContext *c = s->priv_data;
  140. int ret;
  141. if (c->dsp_int_type == 1 && par->codec_id == AV_CODEC_ID_ADPCM_THP &&
  142. par->channels > 1) {
  143. int i, ch;
  144. if (avio_feof(s->pb))
  145. return AVERROR_EOF;
  146. ret = av_new_packet(pkt, 8 * par->channels);
  147. if (ret < 0)
  148. return ret;
  149. for (i = 0; i < 8 / c->interleave_size; i++) {
  150. for (ch = 0; ch < par->channels; ch++) {
  151. pkt->data[ch * 8 + i*c->interleave_size+0] = avio_r8(s->pb);
  152. pkt->data[ch * 8 + i*c->interleave_size+1] = avio_r8(s->pb);
  153. }
  154. }
  155. ret = 0;
  156. } else if (par->codec_id == AV_CODEC_ID_SDX2_DPCM) {
  157. ret = av_get_packet(s->pb, pkt, par->block_align * 1024);
  158. } else {
  159. ret = av_get_packet(s->pb, pkt, par->block_align ? par->block_align : 1024 * par->channels);
  160. }
  161. pkt->stream_index = 0;
  162. return ret;
  163. }
  164. AVInputFormat ff_genh_demuxer = {
  165. .name = "genh",
  166. .long_name = NULL_IF_CONFIG_SMALL("GENeric Header"),
  167. .priv_data_size = sizeof(GENHDemuxContext),
  168. .read_probe = genh_probe,
  169. .read_header = genh_read_header,
  170. .read_packet = genh_read_packet,
  171. .extensions = "genh",
  172. };