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.

387 lines
13KB

  1. /*
  2. * IEC958 muxer
  3. * Copyright (c) 2009 Bartlomiej Wolowiec
  4. * Copyright (c) 2010 Anssi Hannula
  5. * Copyright (c) 2010 Carl Eugen Hoyos
  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. * IEC-61937 encapsulation of various formats, used by S/PDIF
  26. * @author Bartlomiej Wolowiec
  27. * @author Anssi Hannula
  28. * @author Carl Eugen Hoyos
  29. */
  30. /*
  31. * Terminology used in specification:
  32. * data-burst - IEC958 frame, contains header and encapsuled frame
  33. * burst-preambule - IEC958 frame header, contains 16-bits words named Pa, Pb, Pc and Pd
  34. * burst-payload - encapsuled frame
  35. * Pa, Pb - syncword - 0xF872, 0x4E1F
  36. * Pc - burst-info, contains data-type (bits 0-6), error flag (bit 7), data-type-dependent info (bits 8-12)
  37. * and bitstream number (bits 13-15)
  38. * data-type - determines type of encapsuled frames
  39. * Pd - length code (number of bits or bytes of encapsuled frame - according to data_type)
  40. *
  41. * IEC958 frames at normal usage start every specific count of bytes,
  42. * dependent from data-type (spaces between packets are filled by zeros)
  43. */
  44. #include "avformat.h"
  45. #include "spdif.h"
  46. #include "libavcodec/ac3.h"
  47. #include "libavcodec/dca.h"
  48. #include "libavcodec/aacadtsdec.h"
  49. typedef struct IEC958Context {
  50. enum IEC958DataType data_type; ///< burst info - reference to type of payload of the data-burst
  51. int length_code; ///< length code in bits or bytes, depending on data type
  52. int pkt_offset; ///< data burst repetition period in bytes
  53. uint8_t *buffer; ///< allocated buffer, used for swap bytes
  54. int buffer_size; ///< size of allocated buffer
  55. uint8_t *out_buf; ///< pointer to the outgoing data before byte-swapping
  56. int out_bytes; ///< amount of outgoing bytes
  57. int extra_bswap; ///< extra bswap for payload (for LE DTS => standard BE DTS)
  58. uint8_t *hd_buf; ///< allocated buffer to concatenate hd audio frames
  59. int hd_buf_size; ///< size of the hd audio buffer
  60. int hd_buf_count; ///< number of frames in the hd audio buffer
  61. int hd_buf_filled; ///< amount of bytes in the hd audio buffer
  62. /// function, which generates codec dependent header information.
  63. /// Sets data_type and pkt_offset, and length_code, out_bytes, out_buf if necessary
  64. int (*header_info) (AVFormatContext *s, AVPacket *pkt);
  65. } IEC958Context;
  66. static int spdif_header_ac3(AVFormatContext *s, AVPacket *pkt)
  67. {
  68. IEC958Context *ctx = s->priv_data;
  69. int bitstream_mode = pkt->data[5] & 0x7;
  70. ctx->data_type = IEC958_AC3 | (bitstream_mode << 8);
  71. ctx->pkt_offset = AC3_FRAME_SIZE << 2;
  72. return 0;
  73. }
  74. static int spdif_header_eac3(AVFormatContext *s, AVPacket *pkt)
  75. {
  76. IEC958Context *ctx = s->priv_data;
  77. static const uint8_t eac3_repeat[4] = {6, 3, 2, 1};
  78. int repeat = 1;
  79. if ((pkt->data[4] & 0xc0) != 0xc0) /* fscod */
  80. repeat = eac3_repeat[(pkt->data[4] & 0x30) >> 4]; /* numblkscod */
  81. ctx->hd_buf = av_fast_realloc(ctx->hd_buf, &ctx->hd_buf_size, ctx->hd_buf_filled + pkt->size);
  82. if (!ctx->hd_buf)
  83. return AVERROR(ENOMEM);
  84. memcpy(&ctx->hd_buf[ctx->hd_buf_filled], pkt->data, pkt->size);
  85. ctx->hd_buf_filled += pkt->size;
  86. if (++ctx->hd_buf_count < repeat){
  87. ctx->pkt_offset = 0;
  88. return 0;
  89. }
  90. ctx->data_type = IEC958_EAC3;
  91. ctx->pkt_offset = 24576;
  92. ctx->out_buf = ctx->hd_buf;
  93. ctx->out_bytes = ctx->hd_buf_filled;
  94. ctx->length_code = ctx->hd_buf_filled;
  95. ctx->hd_buf_count = 0;
  96. ctx->hd_buf_filled = 0;
  97. return 0;
  98. }
  99. static int spdif_header_dts(AVFormatContext *s, AVPacket *pkt)
  100. {
  101. IEC958Context *ctx = s->priv_data;
  102. uint32_t syncword_dts = AV_RB32(pkt->data);
  103. int blocks;
  104. switch (syncword_dts) {
  105. case DCA_MARKER_RAW_BE:
  106. blocks = (AV_RB16(pkt->data + 4) >> 2) & 0x7f;
  107. break;
  108. case DCA_MARKER_RAW_LE:
  109. blocks = (AV_RL16(pkt->data + 4) >> 2) & 0x7f;
  110. ctx->extra_bswap = 1;
  111. break;
  112. case DCA_MARKER_14B_BE:
  113. blocks =
  114. (((pkt->data[5] & 0x07) << 4) | ((pkt->data[6] & 0x3f) >> 2));
  115. break;
  116. case DCA_MARKER_14B_LE:
  117. blocks =
  118. (((pkt->data[4] & 0x07) << 4) | ((pkt->data[7] & 0x3f) >> 2));
  119. ctx->extra_bswap = 1;
  120. break;
  121. default:
  122. av_log(s, AV_LOG_ERROR, "bad DTS syncword 0x%x\n", syncword_dts);
  123. return AVERROR_INVALIDDATA;
  124. }
  125. blocks++;
  126. switch (blocks) {
  127. case 512 >> 5: ctx->data_type = IEC958_DTS1; break;
  128. case 1024 >> 5: ctx->data_type = IEC958_DTS2; break;
  129. case 2048 >> 5: ctx->data_type = IEC958_DTS3; break;
  130. default:
  131. av_log(s, AV_LOG_ERROR, "%i samples in DTS frame not supported\n",
  132. blocks << 5);
  133. return AVERROR(ENOSYS);
  134. }
  135. ctx->pkt_offset = blocks << 7;
  136. return 0;
  137. }
  138. static const enum IEC958DataType mpeg_data_type[2][3] = {
  139. // LAYER1 LAYER2 LAYER3
  140. { IEC958_MPEG2_LAYER1_LSF, IEC958_MPEG2_LAYER2_LSF, IEC958_MPEG2_LAYER3_LSF }, //MPEG2 LSF
  141. { IEC958_MPEG1_LAYER1, IEC958_MPEG1_LAYER23, IEC958_MPEG1_LAYER23 }, //MPEG1
  142. };
  143. static int spdif_header_mpeg(AVFormatContext *s, AVPacket *pkt)
  144. {
  145. IEC958Context *ctx = s->priv_data;
  146. int version = (pkt->data[1] >> 3) & 3;
  147. int layer = 3 - ((pkt->data[1] >> 1) & 3);
  148. int extension = pkt->data[2] & 1;
  149. if (layer == 3 || version == 1) {
  150. av_log(s, AV_LOG_ERROR, "Wrong MPEG file format\n");
  151. return AVERROR_INVALIDDATA;
  152. }
  153. av_log(s, AV_LOG_DEBUG, "version: %i layer: %i extension: %i\n", version, layer, extension);
  154. if (version == 2 && extension) {
  155. ctx->data_type = IEC958_MPEG2_EXT;
  156. ctx->pkt_offset = 4608;
  157. } else {
  158. ctx->data_type = mpeg_data_type [version & 1][layer];
  159. ctx->pkt_offset = spdif_mpeg_pkt_offset[version & 1][layer];
  160. }
  161. // TODO Data type dependant info (normal/karaoke, dynamic range control)
  162. return 0;
  163. }
  164. static int spdif_header_aac(AVFormatContext *s, AVPacket *pkt)
  165. {
  166. IEC958Context *ctx = s->priv_data;
  167. AACADTSHeaderInfo hdr;
  168. GetBitContext gbc;
  169. int ret;
  170. init_get_bits(&gbc, pkt->data, AAC_ADTS_HEADER_SIZE * 8);
  171. ret = ff_aac_parse_header(&gbc, &hdr);
  172. if (ret < 0) {
  173. av_log(s, AV_LOG_ERROR, "Wrong AAC file format\n");
  174. return AVERROR_INVALIDDATA;
  175. }
  176. ctx->pkt_offset = hdr.samples << 2;
  177. switch (hdr.num_aac_frames) {
  178. case 1:
  179. ctx->data_type = IEC958_MPEG2_AAC;
  180. break;
  181. case 2:
  182. ctx->data_type = IEC958_MPEG2_AAC_LSF_2048;
  183. break;
  184. case 4:
  185. ctx->data_type = IEC958_MPEG2_AAC_LSF_4096;
  186. break;
  187. default:
  188. av_log(s, AV_LOG_ERROR, "%i samples in AAC frame not supported\n",
  189. hdr.samples);
  190. return AVERROR(EINVAL);
  191. }
  192. //TODO Data type dependent info (LC profile/SBR)
  193. return 0;
  194. }
  195. /*
  196. * It seems Dolby TrueHD frames have to be encapsulated in MAT frames before
  197. * they can be encapsulated in IEC 61937.
  198. * Here we encapsulate 24 TrueHD frames in a single MAT frame, padding them
  199. * to achieve constant rate.
  200. * The actual format of a MAT frame is unknown, but the below seems to work.
  201. * However, it seems it is not actually necessary for the 24 TrueHD frames to
  202. * be in an exact alignment with the MAT frame.
  203. */
  204. #define MAT_FRAME_SIZE 61424
  205. #define TRUEHD_FRAME_OFFSET 2560
  206. #define MAT_MIDDLE_CODE_OFFSET -4
  207. static int spdif_header_truehd(AVFormatContext *s, AVPacket *pkt)
  208. {
  209. IEC958Context *ctx = s->priv_data;
  210. int mat_code_length = 0;
  211. const char mat_end_code[16] = { 0xC3, 0xC2, 0xC0, 0xC4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x11 };
  212. if (!ctx->hd_buf_count) {
  213. const char mat_start_code[20] = { 0x07, 0x9E, 0x00, 0x03, 0x84, 0x01, 0x01, 0x01, 0x80, 0x00, 0x56, 0xA5, 0x3B, 0xF4, 0x81, 0x83, 0x49, 0x80, 0x77, 0xE0 };
  214. mat_code_length = sizeof(mat_start_code) + BURST_HEADER_SIZE;
  215. memcpy(ctx->hd_buf, mat_start_code, sizeof(mat_start_code));
  216. } else if (ctx->hd_buf_count == 12) {
  217. const char mat_middle_code[12] = { 0xC3, 0xC1, 0x42, 0x49, 0x3B, 0xFA, 0x82, 0x83, 0x49, 0x80, 0x77, 0xE0 };
  218. mat_code_length = sizeof(mat_middle_code) + MAT_MIDDLE_CODE_OFFSET;
  219. memcpy(&ctx->hd_buf[12 * TRUEHD_FRAME_OFFSET - BURST_HEADER_SIZE + MAT_MIDDLE_CODE_OFFSET],
  220. mat_middle_code, sizeof(mat_middle_code));
  221. }
  222. if (pkt->size > TRUEHD_FRAME_OFFSET - mat_code_length) {
  223. /* if such frames exist, we'd need some more complex logic to
  224. * distribute the TrueHD frames in the MAT frame */
  225. av_log(s, AV_LOG_ERROR, "TrueHD frame too big, %d bytes\n", pkt->size);
  226. av_log_ask_for_sample(s, NULL);
  227. return AVERROR_INVALIDDATA;
  228. }
  229. memcpy(&ctx->hd_buf[ctx->hd_buf_count * TRUEHD_FRAME_OFFSET - BURST_HEADER_SIZE + mat_code_length],
  230. pkt->data, pkt->size);
  231. memset(&ctx->hd_buf[ctx->hd_buf_count * TRUEHD_FRAME_OFFSET - BURST_HEADER_SIZE + mat_code_length + pkt->size],
  232. 0, TRUEHD_FRAME_OFFSET - pkt->size - mat_code_length);
  233. if (++ctx->hd_buf_count < 24){
  234. ctx->pkt_offset = 0;
  235. return 0;
  236. }
  237. memcpy(&ctx->hd_buf[MAT_FRAME_SIZE - sizeof(mat_end_code)], mat_end_code, sizeof(mat_end_code));
  238. ctx->hd_buf_count = 0;
  239. ctx->data_type = IEC958_TRUEHD;
  240. ctx->pkt_offset = 61440;
  241. ctx->out_buf = ctx->hd_buf;
  242. ctx->out_bytes = MAT_FRAME_SIZE;
  243. ctx->length_code = MAT_FRAME_SIZE;
  244. return 0;
  245. }
  246. static int spdif_write_header(AVFormatContext *s)
  247. {
  248. IEC958Context *ctx = s->priv_data;
  249. switch (s->streams[0]->codec->codec_id) {
  250. case CODEC_ID_AC3:
  251. ctx->header_info = spdif_header_ac3;
  252. break;
  253. case CODEC_ID_EAC3:
  254. ctx->header_info = spdif_header_eac3;
  255. break;
  256. case CODEC_ID_MP1:
  257. case CODEC_ID_MP2:
  258. case CODEC_ID_MP3:
  259. ctx->header_info = spdif_header_mpeg;
  260. break;
  261. case CODEC_ID_DTS:
  262. ctx->header_info = spdif_header_dts;
  263. break;
  264. case CODEC_ID_AAC:
  265. ctx->header_info = spdif_header_aac;
  266. break;
  267. case CODEC_ID_TRUEHD:
  268. ctx->header_info = spdif_header_truehd;
  269. ctx->hd_buf = av_malloc(MAT_FRAME_SIZE);
  270. if (!ctx->hd_buf)
  271. return AVERROR(ENOMEM);
  272. break;
  273. default:
  274. av_log(s, AV_LOG_ERROR, "codec not supported\n");
  275. return AVERROR_PATCHWELCOME;
  276. }
  277. return 0;
  278. }
  279. static int spdif_write_trailer(AVFormatContext *s)
  280. {
  281. IEC958Context *ctx = s->priv_data;
  282. av_freep(&ctx->buffer);
  283. av_freep(&ctx->hd_buf);
  284. return 0;
  285. }
  286. static int spdif_write_packet(struct AVFormatContext *s, AVPacket *pkt)
  287. {
  288. IEC958Context *ctx = s->priv_data;
  289. int ret, padding;
  290. ctx->out_buf = pkt->data;
  291. ctx->out_bytes = pkt->size;
  292. ctx->length_code = FFALIGN(pkt->size, 2) << 3;
  293. ctx->extra_bswap = 0;
  294. ret = ctx->header_info(s, pkt);
  295. if (ret < 0)
  296. return ret;
  297. if (!ctx->pkt_offset)
  298. return 0;
  299. padding = (ctx->pkt_offset - BURST_HEADER_SIZE - ctx->out_bytes) >> 1;
  300. if (padding < 0) {
  301. av_log(s, AV_LOG_ERROR, "bitrate is too high\n");
  302. return AVERROR(EINVAL);
  303. }
  304. put_le16(s->pb, SYNCWORD1); //Pa
  305. put_le16(s->pb, SYNCWORD2); //Pb
  306. put_le16(s->pb, ctx->data_type); //Pc
  307. put_le16(s->pb, ctx->length_code);//Pd
  308. if (HAVE_BIGENDIAN ^ ctx->extra_bswap) {
  309. put_buffer(s->pb, ctx->out_buf, ctx->out_bytes & ~1);
  310. } else {
  311. av_fast_malloc(&ctx->buffer, &ctx->buffer_size, ctx->out_bytes + FF_INPUT_BUFFER_PADDING_SIZE);
  312. if (!ctx->buffer)
  313. return AVERROR(ENOMEM);
  314. ff_spdif_bswap_buf16((uint16_t *)ctx->buffer, (uint16_t *)ctx->out_buf, ctx->out_bytes >> 1);
  315. put_buffer(s->pb, ctx->buffer, ctx->out_bytes & ~1);
  316. }
  317. if (ctx->out_bytes & 1)
  318. put_be16(s->pb, ctx->out_buf[ctx->out_bytes - 1]);
  319. for (; padding > 0; padding--)
  320. put_be16(s->pb, 0);
  321. av_log(s, AV_LOG_DEBUG, "type=%x len=%i pkt_offset=%i\n",
  322. ctx->data_type, ctx->out_bytes, ctx->pkt_offset);
  323. put_flush_packet(s->pb);
  324. return 0;
  325. }
  326. AVOutputFormat spdif_muxer = {
  327. "spdif",
  328. NULL_IF_CONFIG_SMALL("IEC958 - S/PDIF (IEC-61937)"),
  329. NULL,
  330. "spdif",
  331. sizeof(IEC958Context),
  332. CODEC_ID_AC3,
  333. CODEC_ID_NONE,
  334. spdif_write_header,
  335. spdif_write_packet,
  336. spdif_write_trailer,
  337. };