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.

312 lines
9.7KB

  1. /*
  2. * IEC958 muxer
  3. * Copyright (c) 2009 Bartlomiej Wolowiec
  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 encapsulation of various formats, used by S/PDIF
  24. * @author Bartlomiej Wolowiec
  25. */
  26. /*
  27. * Terminology used in specification:
  28. * data-burst - IEC958 frame, contains header and encapsuled frame
  29. * burst-preambule - IEC958 frame header, contains 16-bits words named Pa, Pb, Pc and Pd
  30. * burst-payload - encapsuled frame
  31. * Pa, Pb - syncword - 0xF872, 0x4E1F
  32. * Pc - burst-info, contains data-type (bits 0-6), error flag (bit 7), data-type-dependent info (bits 8-12)
  33. * and bitstream number (bits 13-15)
  34. * data-type - determines type of encapsuled frames
  35. * Pd - length code (number of bits or bytes of encapsuled frame - according to data_type)
  36. *
  37. * IEC958 frames at normal usage start every specific count of bytes,
  38. * dependent from data-type (spaces between packets are filled by zeros)
  39. */
  40. #include "avformat.h"
  41. #include "spdif.h"
  42. #include "libavcodec/ac3.h"
  43. #include "libavcodec/dca.h"
  44. #include "libavcodec/aacadtsdec.h"
  45. typedef struct IEC958Context {
  46. enum IEC958DataType data_type; ///< burst info - reference to type of payload of the data-burst
  47. int length_code; ///< length code in bits or bytes, depending on data type
  48. int pkt_offset; ///< data burst repetition period in bytes
  49. uint8_t *buffer; ///< allocated buffer, used for swap bytes
  50. int buffer_size; ///< size of allocated buffer
  51. uint8_t *out_buf; ///< pointer to the outgoing data before byte-swapping
  52. int out_bytes; ///< amount of outgoing bytes
  53. uint8_t *hd_buf; ///< allocated buffer to concatenate hd audio frames
  54. int hd_buf_size; ///< size of the hd audio buffer
  55. int hd_buf_count; ///< number of frames in the hd audio buffer
  56. int hd_buf_filled; ///< amount of bytes in the hd audio buffer
  57. /// function, which generates codec dependent header information.
  58. /// Sets data_type and pkt_offset, and length_code, out_bytes, out_buf if necessary
  59. int (*header_info) (AVFormatContext *s, AVPacket *pkt);
  60. } IEC958Context;
  61. static int spdif_header_ac3(AVFormatContext *s, AVPacket *pkt)
  62. {
  63. IEC958Context *ctx = s->priv_data;
  64. int bitstream_mode = pkt->data[6] & 0x7;
  65. ctx->data_type = IEC958_AC3 | (bitstream_mode << 8);
  66. ctx->pkt_offset = AC3_FRAME_SIZE << 2;
  67. return 0;
  68. }
  69. static int spdif_header_eac3(AVFormatContext *s, AVPacket *pkt)
  70. {
  71. IEC958Context *ctx = s->priv_data;
  72. static const uint8_t eac3_repeat[4] = {6, 3, 2, 1};
  73. int repeat = 1;
  74. if ((pkt->data[4] & 0xc0) != 0xc0) /* fscod */
  75. repeat = eac3_repeat[(pkt->data[4] & 0x30) >> 4]; /* numblkscod */
  76. ctx->hd_buf = av_fast_realloc(ctx->hd_buf, &ctx->hd_buf_size, ctx->hd_buf_filled + pkt->size);
  77. if (!ctx->hd_buf)
  78. return AVERROR(ENOMEM);
  79. memcpy(&ctx->hd_buf[ctx->hd_buf_filled], pkt->data, pkt->size);
  80. ctx->hd_buf_filled += pkt->size;
  81. if (++ctx->hd_buf_count < repeat){
  82. ctx->pkt_offset = 0;
  83. return 0;
  84. }
  85. ctx->data_type = IEC958_EAC3;
  86. ctx->pkt_offset = 24576;
  87. ctx->out_buf = ctx->hd_buf;
  88. ctx->out_bytes = ctx->hd_buf_filled;
  89. ctx->length_code = ctx->hd_buf_filled;
  90. ctx->hd_buf_count = 0;
  91. ctx->hd_buf_filled = 0;
  92. return 0;
  93. }
  94. static int spdif_header_dts(AVFormatContext *s, AVPacket *pkt)
  95. {
  96. IEC958Context *ctx = s->priv_data;
  97. uint32_t syncword_dts = AV_RB32(pkt->data);
  98. int blocks;
  99. switch (syncword_dts) {
  100. case DCA_MARKER_RAW_BE:
  101. blocks = (AV_RB16(pkt->data + 4) >> 2) & 0x7f;
  102. break;
  103. case DCA_MARKER_RAW_LE:
  104. blocks = (AV_RL16(pkt->data + 4) >> 2) & 0x7f;
  105. break;
  106. case DCA_MARKER_14B_BE:
  107. blocks =
  108. (((pkt->data[5] & 0x07) << 4) | ((pkt->data[6] & 0x3f) >> 2));
  109. break;
  110. case DCA_MARKER_14B_LE:
  111. blocks =
  112. (((pkt->data[4] & 0x07) << 4) | ((pkt->data[7] & 0x3f) >> 2));
  113. break;
  114. default:
  115. av_log(s, AV_LOG_ERROR, "bad DTS syncword 0x%x\n", syncword_dts);
  116. return -1;
  117. }
  118. blocks++;
  119. switch (blocks) {
  120. case 512 >> 5: ctx->data_type = IEC958_DTS1; break;
  121. case 1024 >> 5: ctx->data_type = IEC958_DTS2; break;
  122. case 2048 >> 5: ctx->data_type = IEC958_DTS3; break;
  123. default:
  124. av_log(s, AV_LOG_ERROR, "%i samples in DTS frame not supported\n",
  125. blocks << 5);
  126. return -1;
  127. }
  128. ctx->pkt_offset = blocks << 7;
  129. return 0;
  130. }
  131. static const enum IEC958DataType mpeg_data_type[2][3] = {
  132. // LAYER1 LAYER2 LAYER3
  133. { IEC958_MPEG2_LAYER1_LSF, IEC958_MPEG2_LAYER2_LSF, IEC958_MPEG2_LAYER3_LSF }, //MPEG2 LSF
  134. { IEC958_MPEG1_LAYER1, IEC958_MPEG1_LAYER23, IEC958_MPEG1_LAYER23 }, //MPEG1
  135. };
  136. static int spdif_header_mpeg(AVFormatContext *s, AVPacket *pkt)
  137. {
  138. IEC958Context *ctx = s->priv_data;
  139. int version = (pkt->data[1] >> 3) & 3;
  140. int layer = 3 - ((pkt->data[1] >> 1) & 3);
  141. int extension = pkt->data[2] & 1;
  142. if (layer == 3 || version == 1) {
  143. av_log(s, AV_LOG_ERROR, "Wrong MPEG file format\n");
  144. return -1;
  145. }
  146. av_log(s, AV_LOG_DEBUG, "version: %i layer: %i extension: %i\n", version, layer, extension);
  147. if (version == 2 && extension) {
  148. ctx->data_type = IEC958_MPEG2_EXT;
  149. ctx->pkt_offset = 4608;
  150. } else {
  151. ctx->data_type = mpeg_data_type [version & 1][layer];
  152. ctx->pkt_offset = spdif_mpeg_pkt_offset[version & 1][layer];
  153. }
  154. // TODO Data type dependant info (normal/karaoke, dynamic range control)
  155. return 0;
  156. }
  157. static int spdif_header_aac(AVFormatContext *s, AVPacket *pkt)
  158. {
  159. IEC958Context *ctx = s->priv_data;
  160. AACADTSHeaderInfo hdr;
  161. GetBitContext gbc;
  162. int ret;
  163. init_get_bits(&gbc, pkt->data, AAC_ADTS_HEADER_SIZE * 8);
  164. ret = ff_aac_parse_header(&gbc, &hdr);
  165. if (ret < 0) {
  166. av_log(s, AV_LOG_ERROR, "Wrong AAC file format\n");
  167. return -1;
  168. }
  169. ctx->pkt_offset = hdr.samples << 2;
  170. switch (hdr.num_aac_frames) {
  171. case 1:
  172. ctx->data_type = IEC958_MPEG2_AAC;
  173. break;
  174. case 2:
  175. ctx->data_type = IEC958_MPEG2_AAC_LSF_2048;
  176. break;
  177. case 4:
  178. ctx->data_type = IEC958_MPEG2_AAC_LSF_4096;
  179. break;
  180. default:
  181. av_log(s, AV_LOG_ERROR, "%i samples in AAC frame not supported\n",
  182. hdr.samples);
  183. return -1;
  184. }
  185. //TODO Data type dependent info (LC profile/SBR)
  186. return 0;
  187. }
  188. static int spdif_write_header(AVFormatContext *s)
  189. {
  190. IEC958Context *ctx = s->priv_data;
  191. switch (s->streams[0]->codec->codec_id) {
  192. case CODEC_ID_AC3:
  193. ctx->header_info = spdif_header_ac3;
  194. break;
  195. case CODEC_ID_EAC3:
  196. ctx->header_info = spdif_header_eac3;
  197. break;
  198. case CODEC_ID_MP1:
  199. case CODEC_ID_MP2:
  200. case CODEC_ID_MP3:
  201. ctx->header_info = spdif_header_mpeg;
  202. break;
  203. case CODEC_ID_DTS:
  204. ctx->header_info = spdif_header_dts;
  205. break;
  206. case CODEC_ID_AAC:
  207. ctx->header_info = spdif_header_aac;
  208. break;
  209. default:
  210. av_log(s, AV_LOG_ERROR, "codec not supported\n");
  211. return -1;
  212. }
  213. return 0;
  214. }
  215. static int spdif_write_trailer(AVFormatContext *s)
  216. {
  217. IEC958Context *ctx = s->priv_data;
  218. av_freep(&ctx->buffer);
  219. av_freep(&ctx->hd_buf);
  220. return 0;
  221. }
  222. static int spdif_write_packet(struct AVFormatContext *s, AVPacket *pkt)
  223. {
  224. IEC958Context *ctx = s->priv_data;
  225. int ret, padding;
  226. ctx->out_buf = pkt->data;
  227. ctx->out_bytes = pkt->size;
  228. ctx->length_code = FFALIGN(pkt->size, 2) << 3;
  229. ret = ctx->header_info(s, pkt);
  230. if (ret < 0)
  231. return -1;
  232. if (!ctx->pkt_offset)
  233. return 0;
  234. padding = (ctx->pkt_offset - BURST_HEADER_SIZE - ctx->out_bytes) >> 1;
  235. if (padding < 0) {
  236. av_log(s, AV_LOG_ERROR, "bitrate is too high\n");
  237. return -1;
  238. }
  239. put_le16(s->pb, SYNCWORD1); //Pa
  240. put_le16(s->pb, SYNCWORD2); //Pb
  241. put_le16(s->pb, ctx->data_type); //Pc
  242. put_le16(s->pb, ctx->length_code);//Pd
  243. #if HAVE_BIGENDIAN
  244. put_buffer(s->pb, ctx->out_buf, ctx->out_bytes & ~1);
  245. #else
  246. av_fast_malloc(&ctx->buffer, &ctx->buffer_size, ctx->out_bytes + FF_INPUT_BUFFER_PADDING_SIZE);
  247. if (!ctx->buffer)
  248. return AVERROR(ENOMEM);
  249. ff_spdif_bswap_buf16((uint16_t *)ctx->buffer, (uint16_t *)ctx->out_buf, ctx->out_bytes >> 1);
  250. put_buffer(s->pb, ctx->buffer, ctx->out_bytes & ~1);
  251. #endif
  252. if (ctx->out_bytes & 1)
  253. put_be16(s->pb, ctx->out_buf[ctx->out_bytes - 1]);
  254. for (; padding > 0; padding--)
  255. put_be16(s->pb, 0);
  256. av_log(s, AV_LOG_DEBUG, "type=%x len=%i pkt_offset=%i\n",
  257. ctx->data_type, ctx->out_bytes, ctx->pkt_offset);
  258. put_flush_packet(s->pb);
  259. return 0;
  260. }
  261. AVOutputFormat spdif_muxer = {
  262. "spdif",
  263. NULL_IF_CONFIG_SMALL("IEC958 - S/PDIF (IEC-61937)"),
  264. NULL,
  265. "spdif",
  266. sizeof(IEC958Context),
  267. CODEC_ID_AC3,
  268. CODEC_ID_NONE,
  269. spdif_write_header,
  270. spdif_write_packet,
  271. spdif_write_trailer,
  272. };