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.

196 lines
6.9KB

  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(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: st->codecpar->codec_id = AV_CODEC_ID_SDX2_DPCM; break;
  82. case 7: ret = ff_alloc_extradata(st->codecpar, 2);
  83. if (ret < 0)
  84. return ret;
  85. AV_WL16(st->codecpar->extradata, 3);
  86. st->codecpar->codec_id = AV_CODEC_ID_ADPCM_IMA_WS; break;
  87. case 10: st->codecpar->codec_id = AV_CODEC_ID_ADPCM_AICA; break;
  88. case 12: st->codecpar->codec_id = AV_CODEC_ID_ADPCM_THP; break;
  89. case 13: st->codecpar->codec_id = AV_CODEC_ID_PCM_U8; break;
  90. case 17: st->codecpar->codec_id = AV_CODEC_ID_ADPCM_IMA_QT; break;
  91. default:
  92. avpriv_request_sample(s, "codec %d", codec);
  93. return AVERROR_PATCHWELCOME;
  94. }
  95. start_offset = avio_rl32(s->pb);
  96. header_size = avio_rl32(s->pb);
  97. if (header_size > start_offset)
  98. return AVERROR_INVALIDDATA;
  99. if (header_size == 0)
  100. start_offset = 0x800;
  101. coef[0] = avio_rl32(s->pb);
  102. coef[1] = avio_rl32(s->pb);
  103. c->dsp_int_type = avio_rl32(s->pb);
  104. coef_type = avio_rl32(s->pb);
  105. coef_splitted[0] = avio_rl32(s->pb);
  106. coef_splitted[1] = avio_rl32(s->pb);
  107. if (st->codecpar->codec_id == AV_CODEC_ID_ADPCM_THP) {
  108. if (st->codecpar->channels > 2) {
  109. avpriv_request_sample(s, "channels %d>2", st->codecpar->channels);
  110. return AVERROR_PATCHWELCOME;
  111. }
  112. ff_alloc_extradata(st->codecpar, 32 * st->codecpar->channels);
  113. for (ch = 0; ch < st->codecpar->channels; ch++) {
  114. if (coef_type & 1) {
  115. avpriv_request_sample(s, "coef_type & 1");
  116. return AVERROR_PATCHWELCOME;
  117. } else {
  118. avio_seek(s->pb, coef[ch], SEEK_SET);
  119. avio_read(s->pb, st->codecpar->extradata + 32 * ch, 32);
  120. }
  121. }
  122. if (c->dsp_int_type == 1) {
  123. st->codecpar->block_align = 8 * st->codecpar->channels;
  124. if (c->interleave_size != 1 &&
  125. c->interleave_size != 2 &&
  126. c->interleave_size != 4)
  127. return AVERROR_INVALIDDATA;
  128. }
  129. }
  130. avio_skip(s->pb, start_offset - avio_tell(s->pb));
  131. avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
  132. return 0;
  133. }
  134. static int genh_read_packet(AVFormatContext *s, AVPacket *pkt)
  135. {
  136. AVCodecParameters *par = s->streams[0]->codecpar;
  137. GENHDemuxContext *c = s->priv_data;
  138. int ret;
  139. if (c->dsp_int_type == 1 && par->codec_id == AV_CODEC_ID_ADPCM_THP &&
  140. par->channels > 1) {
  141. int i, ch;
  142. if (avio_feof(s->pb))
  143. return AVERROR_EOF;
  144. ret = av_new_packet(pkt, 8 * par->channels);
  145. if (ret < 0)
  146. return ret;
  147. for (i = 0; i < 8 / c->interleave_size; i++) {
  148. for (ch = 0; ch < par->channels; ch++) {
  149. pkt->data[ch * 8 + i*c->interleave_size+0] = avio_r8(s->pb);
  150. pkt->data[ch * 8 + i*c->interleave_size+1] = avio_r8(s->pb);
  151. }
  152. }
  153. ret = 0;
  154. } else if (par->codec_id == AV_CODEC_ID_SDX2_DPCM) {
  155. ret = av_get_packet(s->pb, pkt, par->block_align * 1024);
  156. } else {
  157. ret = av_get_packet(s->pb, pkt, par->block_align ? par->block_align : 1024 * par->channels);
  158. }
  159. pkt->stream_index = 0;
  160. return ret;
  161. }
  162. AVInputFormat ff_genh_demuxer = {
  163. .name = "genh",
  164. .long_name = NULL_IF_CONFIG_SMALL("GENeric Header"),
  165. .priv_data_size = sizeof(GENHDemuxContext),
  166. .read_probe = genh_probe,
  167. .read_header = genh_read_header,
  168. .read_packet = genh_read_packet,
  169. .extensions = "genh",
  170. };