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.

241 lines
7.3KB

  1. /*
  2. * IEC 61937 demuxer
  3. * Copyright (c) 2010 Anssi Hannula <anssi.hannula at iki.fi>
  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. /**
  22. * @file
  23. * IEC 61937 demuxer, used for compressed data in S/PDIF
  24. * @author Anssi Hannula
  25. */
  26. #include "avformat.h"
  27. #include "spdif.h"
  28. #include "libavcodec/ac3.h"
  29. #include "libavcodec/aacadtsdec.h"
  30. static int spdif_get_offset_and_codec(AVFormatContext *s,
  31. enum IEC61937DataType data_type,
  32. const char *buf, int *offset,
  33. enum AVCodecID *codec)
  34. {
  35. AACADTSHeaderInfo aac_hdr;
  36. GetBitContext gbc;
  37. switch (data_type & 0xff) {
  38. case IEC61937_AC3:
  39. *offset = AC3_FRAME_SIZE << 2;
  40. *codec = AV_CODEC_ID_AC3;
  41. break;
  42. case IEC61937_MPEG1_LAYER1:
  43. *offset = spdif_mpeg_pkt_offset[1][0];
  44. *codec = AV_CODEC_ID_MP1;
  45. break;
  46. case IEC61937_MPEG1_LAYER23:
  47. *offset = spdif_mpeg_pkt_offset[1][0];
  48. *codec = AV_CODEC_ID_MP3;
  49. break;
  50. case IEC61937_MPEG2_EXT:
  51. *offset = 4608;
  52. *codec = AV_CODEC_ID_MP3;
  53. break;
  54. case IEC61937_MPEG2_AAC:
  55. init_get_bits(&gbc, buf, AAC_ADTS_HEADER_SIZE * 8);
  56. if (avpriv_aac_parse_header(&gbc, &aac_hdr) < 0) {
  57. if (s) /* be silent during a probe */
  58. av_log(s, AV_LOG_ERROR, "Invalid AAC packet in IEC 61937\n");
  59. return AVERROR_INVALIDDATA;
  60. }
  61. *offset = aac_hdr.samples << 2;
  62. *codec = AV_CODEC_ID_AAC;
  63. break;
  64. case IEC61937_MPEG2_LAYER1_LSF:
  65. *offset = spdif_mpeg_pkt_offset[0][0];
  66. *codec = AV_CODEC_ID_MP1;
  67. break;
  68. case IEC61937_MPEG2_LAYER2_LSF:
  69. *offset = spdif_mpeg_pkt_offset[0][1];
  70. *codec = AV_CODEC_ID_MP2;
  71. break;
  72. case IEC61937_MPEG2_LAYER3_LSF:
  73. *offset = spdif_mpeg_pkt_offset[0][2];
  74. *codec = AV_CODEC_ID_MP3;
  75. break;
  76. case IEC61937_DTS1:
  77. *offset = 2048;
  78. *codec = AV_CODEC_ID_DTS;
  79. break;
  80. case IEC61937_DTS2:
  81. *offset = 4096;
  82. *codec = AV_CODEC_ID_DTS;
  83. break;
  84. case IEC61937_DTS3:
  85. *offset = 8192;
  86. *codec = AV_CODEC_ID_DTS;
  87. break;
  88. default:
  89. if (s) { /* be silent during a probe */
  90. avpriv_request_sample(s, "Data type 0x%04x in IEC 61937",
  91. data_type);
  92. }
  93. return AVERROR_PATCHWELCOME;
  94. }
  95. return 0;
  96. }
  97. /* Largest offset between bursts we currently handle, i.e. AAC with
  98. aac_hdr.samples = 4096 */
  99. #define SPDIF_MAX_OFFSET 16384
  100. static int spdif_probe(AVProbeData *p)
  101. {
  102. enum AVCodecID codec;
  103. return ff_spdif_probe (p->buf, p->buf_size, &codec);
  104. }
  105. int ff_spdif_probe(const uint8_t *p_buf, int buf_size, enum AVCodecID *codec)
  106. {
  107. const uint8_t *buf = p_buf;
  108. const uint8_t *probe_end = p_buf + FFMIN(2 * SPDIF_MAX_OFFSET, buf_size - 1);
  109. const uint8_t *expected_code = buf + 7;
  110. uint32_t state = 0;
  111. int sync_codes = 0;
  112. int consecutive_codes = 0;
  113. int offset;
  114. for (; buf < probe_end; buf++) {
  115. state = (state << 8) | *buf;
  116. if (state == (AV_BSWAP16C(SYNCWORD1) << 16 | AV_BSWAP16C(SYNCWORD2))
  117. && buf[1] < 0x37) {
  118. sync_codes++;
  119. if (buf == expected_code) {
  120. if (++consecutive_codes >= 2)
  121. return AVPROBE_SCORE_MAX;
  122. } else
  123. consecutive_codes = 0;
  124. if (buf + 4 + AAC_ADTS_HEADER_SIZE > p_buf + buf_size)
  125. break;
  126. /* continue probing to find more sync codes */
  127. probe_end = FFMIN(buf + SPDIF_MAX_OFFSET, p_buf + buf_size - 1);
  128. /* skip directly to the next sync code */
  129. if (!spdif_get_offset_and_codec(NULL, (buf[2] << 8) | buf[1],
  130. &buf[5], &offset, codec)) {
  131. if (buf + offset >= p_buf + buf_size)
  132. break;
  133. expected_code = buf + offset;
  134. buf = expected_code - 7;
  135. }
  136. }
  137. }
  138. if (!sync_codes)
  139. return 0;
  140. if (sync_codes >= 6)
  141. /* good amount of sync codes but with unexpected offsets */
  142. return AVPROBE_SCORE_EXTENSION;
  143. /* some sync codes were found */
  144. return AVPROBE_SCORE_EXTENSION / 4;
  145. }
  146. static int spdif_read_header(AVFormatContext *s)
  147. {
  148. s->ctx_flags |= AVFMTCTX_NOHEADER;
  149. return 0;
  150. }
  151. int ff_spdif_read_packet(AVFormatContext *s, AVPacket *pkt)
  152. {
  153. AVIOContext *pb = s->pb;
  154. enum IEC61937DataType data_type;
  155. enum AVCodecID codec_id;
  156. uint32_t state = 0;
  157. int pkt_size_bits, offset, ret;
  158. while (state != (AV_BSWAP16C(SYNCWORD1) << 16 | AV_BSWAP16C(SYNCWORD2))) {
  159. state = (state << 8) | avio_r8(pb);
  160. if (url_feof(pb))
  161. return AVERROR_EOF;
  162. }
  163. data_type = avio_rl16(pb);
  164. pkt_size_bits = avio_rl16(pb);
  165. if (pkt_size_bits % 16)
  166. avpriv_request_sample(s, "Packet not ending at a 16-bit boundary");
  167. ret = av_new_packet(pkt, FFALIGN(pkt_size_bits, 16) >> 3);
  168. if (ret)
  169. return ret;
  170. pkt->pos = avio_tell(pb) - BURST_HEADER_SIZE;
  171. if (avio_read(pb, pkt->data, pkt->size) < pkt->size) {
  172. av_free_packet(pkt);
  173. return AVERROR_EOF;
  174. }
  175. ff_spdif_bswap_buf16((uint16_t *)pkt->data, (uint16_t *)pkt->data, pkt->size >> 1);
  176. ret = spdif_get_offset_and_codec(s, data_type, pkt->data,
  177. &offset, &codec_id);
  178. if (ret) {
  179. av_free_packet(pkt);
  180. return ret;
  181. }
  182. /* skip over the padding to the beginning of the next frame */
  183. avio_skip(pb, offset - pkt->size - BURST_HEADER_SIZE);
  184. if (!s->nb_streams) {
  185. /* first packet, create a stream */
  186. AVStream *st = avformat_new_stream(s, NULL);
  187. if (!st) {
  188. av_free_packet(pkt);
  189. return AVERROR(ENOMEM);
  190. }
  191. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  192. st->codec->codec_id = codec_id;
  193. } else if (codec_id != s->streams[0]->codec->codec_id) {
  194. avpriv_report_missing_feature(s, "Codec change in IEC 61937");
  195. return AVERROR_PATCHWELCOME;
  196. }
  197. if (!s->bit_rate && s->streams[0]->codec->sample_rate)
  198. /* stream bitrate matches 16-bit stereo PCM bitrate for currently
  199. supported codecs */
  200. s->bit_rate = 2 * 16 * s->streams[0]->codec->sample_rate;
  201. return 0;
  202. }
  203. AVInputFormat ff_spdif_demuxer = {
  204. .name = "spdif",
  205. .long_name = NULL_IF_CONFIG_SMALL("IEC 61937 (compressed data in S/PDIF)"),
  206. .read_probe = spdif_probe,
  207. .read_header = spdif_read_header,
  208. .read_packet = ff_spdif_read_packet,
  209. .flags = AVFMT_GENERIC_INDEX,
  210. };