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.

552 lines
19KB

  1. /*
  2. * IEC 61937 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 - IEC61937 frame, contains header and encapsuled frame
  33. * burst-preambule - IEC61937 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. * IEC 61937 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 "avio_internal.h"
  46. #include "spdif.h"
  47. #include "libavcodec/ac3.h"
  48. #include "libavcodec/dca.h"
  49. #include "libavcodec/dcadata.h"
  50. #include "libavcodec/aacadtsdec.h"
  51. #include "libavutil/opt.h"
  52. typedef struct IEC61937Context {
  53. const AVClass *av_class;
  54. enum IEC61937DataType data_type;///< burst info - reference to type of payload of the data-burst
  55. int length_code; ///< length code in bits or bytes, depending on data type
  56. int pkt_offset; ///< data burst repetition period in bytes
  57. uint8_t *buffer; ///< allocated buffer, used for swap bytes
  58. int buffer_size; ///< size of allocated buffer
  59. uint8_t *out_buf; ///< pointer to the outgoing data before byte-swapping
  60. int out_bytes; ///< amount of outgoing bytes
  61. int use_preamble; ///< preamble enabled (disabled for exactly pre-padded DTS)
  62. int extra_bswap; ///< extra bswap for payload (for LE DTS => standard BE DTS)
  63. uint8_t *hd_buf; ///< allocated buffer to concatenate hd audio frames
  64. int hd_buf_size; ///< size of the hd audio buffer
  65. int hd_buf_count; ///< number of frames in the hd audio buffer
  66. int hd_buf_filled; ///< amount of bytes in the hd audio buffer
  67. int dtshd_skip; ///< counter used for skipping DTS-HD frames
  68. /* AVOptions: */
  69. int dtshd_rate;
  70. int dtshd_fallback;
  71. #define SPDIF_FLAG_BIGENDIAN 0x01
  72. int spdif_flags;
  73. /// function, which generates codec dependent header information.
  74. /// Sets data_type and pkt_offset, and length_code, out_bytes, out_buf if necessary
  75. int (*header_info) (AVFormatContext *s, AVPacket *pkt);
  76. } IEC61937Context;
  77. static const AVOption options[] = {
  78. { "spdif_flags", "IEC 61937 encapsulation flags", offsetof(IEC61937Context, spdif_flags), FF_OPT_TYPE_FLAGS, 0, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "spdif_flags" },
  79. { "be", "output in big-endian format (for use as s16be)", 0, FF_OPT_TYPE_CONST, SPDIF_FLAG_BIGENDIAN, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "spdif_flags" },
  80. { "dtshd_rate", "mux complete DTS frames in HD mode at the specified IEC958 rate (in Hz, default 0=disabled)", offsetof(IEC61937Context, dtshd_rate), FF_OPT_TYPE_INT, 0, 0, 768000, AV_OPT_FLAG_ENCODING_PARAM },
  81. { "dtshd_fallback_time", "min secs to strip HD for after an overflow (-1: till the end, default 60)", offsetof(IEC61937Context, dtshd_fallback), FF_OPT_TYPE_INT, 60, -1, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
  82. { NULL },
  83. };
  84. static const AVClass class = { "spdif", av_default_item_name, options, LIBAVUTIL_VERSION_INT };
  85. static int spdif_header_ac3(AVFormatContext *s, AVPacket *pkt)
  86. {
  87. IEC61937Context *ctx = s->priv_data;
  88. int bitstream_mode = pkt->data[5] & 0x7;
  89. ctx->data_type = IEC61937_AC3 | (bitstream_mode << 8);
  90. ctx->pkt_offset = AC3_FRAME_SIZE << 2;
  91. return 0;
  92. }
  93. static int spdif_header_eac3(AVFormatContext *s, AVPacket *pkt)
  94. {
  95. IEC61937Context *ctx = s->priv_data;
  96. static const uint8_t eac3_repeat[4] = {6, 3, 2, 1};
  97. int repeat = 1;
  98. if ((pkt->data[4] & 0xc0) != 0xc0) /* fscod */
  99. repeat = eac3_repeat[(pkt->data[4] & 0x30) >> 4]; /* numblkscod */
  100. ctx->hd_buf = av_fast_realloc(ctx->hd_buf, &ctx->hd_buf_size, ctx->hd_buf_filled + pkt->size);
  101. if (!ctx->hd_buf)
  102. return AVERROR(ENOMEM);
  103. memcpy(&ctx->hd_buf[ctx->hd_buf_filled], pkt->data, pkt->size);
  104. ctx->hd_buf_filled += pkt->size;
  105. if (++ctx->hd_buf_count < repeat){
  106. ctx->pkt_offset = 0;
  107. return 0;
  108. }
  109. ctx->data_type = IEC61937_EAC3;
  110. ctx->pkt_offset = 24576;
  111. ctx->out_buf = ctx->hd_buf;
  112. ctx->out_bytes = ctx->hd_buf_filled;
  113. ctx->length_code = ctx->hd_buf_filled;
  114. ctx->hd_buf_count = 0;
  115. ctx->hd_buf_filled = 0;
  116. return 0;
  117. }
  118. /*
  119. * DTS type IV (DTS-HD) can be transmitted with various frame repetition
  120. * periods; longer repetition periods allow for longer packets and therefore
  121. * higher bitrate. Longer repetition periods mean that the constant bitrate of
  122. * the outputted IEC 61937 stream is higher.
  123. * The repetition period is measured in IEC 60958 frames (4 bytes).
  124. */
  125. static int spdif_dts4_subtype(int period)
  126. {
  127. switch (period) {
  128. case 512: return 0x0;
  129. case 1024: return 0x1;
  130. case 2048: return 0x2;
  131. case 4096: return 0x3;
  132. case 8192: return 0x4;
  133. case 16384: return 0x5;
  134. }
  135. return -1;
  136. }
  137. static int spdif_header_dts4(AVFormatContext *s, AVPacket *pkt, int core_size,
  138. int sample_rate, int blocks)
  139. {
  140. IEC61937Context *ctx = s->priv_data;
  141. static const char dtshd_start_code[10] = { 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xfe };
  142. int pkt_size = pkt->size;
  143. int period;
  144. int subtype;
  145. if (!core_size) {
  146. av_log(s, AV_LOG_ERROR, "HD mode not supported for this format\n");
  147. return AVERROR(EINVAL);
  148. }
  149. if (!sample_rate) {
  150. av_log(s, AV_LOG_ERROR, "Unknown DTS sample rate for HD\n");
  151. return AVERROR_INVALIDDATA;
  152. }
  153. period = ctx->dtshd_rate * (blocks << 5) / sample_rate;
  154. subtype = spdif_dts4_subtype(period);
  155. if (subtype < 0) {
  156. av_log(s, AV_LOG_ERROR, "Specified HD rate of %d Hz would require an "
  157. "impossible repetition period of %d for the current DTS stream"
  158. " (blocks = %d, sample rate = %d)\n", ctx->dtshd_rate, period,
  159. blocks << 5, sample_rate);
  160. return AVERROR(EINVAL);
  161. }
  162. /* set pkt_offset and DTS IV subtype according to the requested output
  163. * rate */
  164. ctx->pkt_offset = period * 4;
  165. ctx->data_type = IEC61937_DTSHD | subtype << 8;
  166. /* If the bitrate is too high for transmitting at the selected
  167. * repetition period setting, strip DTS-HD until a good amount
  168. * of consecutive non-overflowing HD frames have been observed.
  169. * This generally only happens if the caller is cramming a Master
  170. * Audio stream into 192kHz IEC 60958 (which may or may not fit). */
  171. if (sizeof(dtshd_start_code) + 2 + pkt_size
  172. > ctx->pkt_offset - BURST_HEADER_SIZE && core_size) {
  173. if (!ctx->dtshd_skip)
  174. av_log(s, AV_LOG_WARNING, "DTS-HD bitrate too high, "
  175. "temporarily sending core only\n");
  176. if (ctx->dtshd_fallback > 0)
  177. ctx->dtshd_skip = sample_rate * ctx->dtshd_fallback / (blocks << 5);
  178. else
  179. /* skip permanently (dtshd_fallback == -1) or just once
  180. * (dtshd_fallback == 0) */
  181. ctx->dtshd_skip = 1;
  182. }
  183. if (ctx->dtshd_skip && core_size) {
  184. pkt_size = core_size;
  185. if (ctx->dtshd_fallback >= 0)
  186. --ctx->dtshd_skip;
  187. }
  188. ctx->out_bytes = sizeof(dtshd_start_code) + 2 + pkt_size;
  189. ctx->length_code = ctx->out_bytes;
  190. av_fast_malloc(&ctx->hd_buf, &ctx->hd_buf_size, ctx->out_bytes);
  191. if (!ctx->hd_buf)
  192. return AVERROR(ENOMEM);
  193. ctx->out_buf = ctx->hd_buf;
  194. memcpy(ctx->hd_buf, dtshd_start_code, sizeof(dtshd_start_code));
  195. AV_WB16(ctx->hd_buf + sizeof(dtshd_start_code), pkt_size);
  196. memcpy(ctx->hd_buf + sizeof(dtshd_start_code) + 2, pkt->data, pkt_size);
  197. return 0;
  198. }
  199. static int spdif_header_dts(AVFormatContext *s, AVPacket *pkt)
  200. {
  201. IEC61937Context *ctx = s->priv_data;
  202. uint32_t syncword_dts = AV_RB32(pkt->data);
  203. int blocks;
  204. int sample_rate = 0;
  205. int core_size = 0;
  206. if (pkt->size < 9)
  207. return AVERROR_INVALIDDATA;
  208. switch (syncword_dts) {
  209. case DCA_MARKER_RAW_BE:
  210. blocks = (AV_RB16(pkt->data + 4) >> 2) & 0x7f;
  211. core_size = ((AV_RB24(pkt->data + 5) >> 4) & 0x3fff) + 1;
  212. sample_rate = dca_sample_rates[(pkt->data[8] >> 2) & 0x0f];
  213. break;
  214. case DCA_MARKER_RAW_LE:
  215. blocks = (AV_RL16(pkt->data + 4) >> 2) & 0x7f;
  216. ctx->extra_bswap = 1;
  217. break;
  218. case DCA_MARKER_14B_BE:
  219. blocks =
  220. (((pkt->data[5] & 0x07) << 4) | ((pkt->data[6] & 0x3f) >> 2));
  221. break;
  222. case DCA_MARKER_14B_LE:
  223. blocks =
  224. (((pkt->data[4] & 0x07) << 4) | ((pkt->data[7] & 0x3f) >> 2));
  225. ctx->extra_bswap = 1;
  226. break;
  227. case DCA_HD_MARKER:
  228. /* We only handle HD frames that are paired with core. However,
  229. sometimes DTS-HD streams with core have a stray HD frame without
  230. core in the beginning of the stream. */
  231. av_log(s, AV_LOG_ERROR, "stray DTS-HD frame\n");
  232. return AVERROR_INVALIDDATA;
  233. default:
  234. av_log(s, AV_LOG_ERROR, "bad DTS syncword 0x%x\n", syncword_dts);
  235. return AVERROR_INVALIDDATA;
  236. }
  237. blocks++;
  238. if (ctx->dtshd_rate)
  239. /* DTS type IV output requested */
  240. return spdif_header_dts4(s, pkt, core_size, sample_rate, blocks);
  241. switch (blocks) {
  242. case 512 >> 5: ctx->data_type = IEC61937_DTS1; break;
  243. case 1024 >> 5: ctx->data_type = IEC61937_DTS2; break;
  244. case 2048 >> 5: ctx->data_type = IEC61937_DTS3; break;
  245. default:
  246. av_log(s, AV_LOG_ERROR, "%i samples in DTS frame not supported\n",
  247. blocks << 5);
  248. return AVERROR(ENOSYS);
  249. }
  250. /* discard extraneous data by default */
  251. if (core_size && core_size < pkt->size) {
  252. ctx->out_bytes = core_size;
  253. ctx->length_code = core_size << 3;
  254. }
  255. ctx->pkt_offset = blocks << 7;
  256. if (ctx->out_bytes == ctx->pkt_offset) {
  257. /* The DTS stream fits exactly into the output stream, so skip the
  258. * preamble as it would not fit in there. This is the case for dts
  259. * discs and dts-in-wav. */
  260. ctx->use_preamble = 0;
  261. } else if (ctx->out_bytes > ctx->pkt_offset - BURST_HEADER_SIZE) {
  262. av_log_ask_for_sample(s, "Unrecognized large DTS frame.");
  263. /* This will fail with a "bitrate too high" in the caller */
  264. }
  265. return 0;
  266. }
  267. static const enum IEC61937DataType mpeg_data_type[2][3] = {
  268. // LAYER1 LAYER2 LAYER3
  269. { IEC61937_MPEG2_LAYER1_LSF, IEC61937_MPEG2_LAYER2_LSF, IEC61937_MPEG2_LAYER3_LSF },//MPEG2 LSF
  270. { IEC61937_MPEG1_LAYER1, IEC61937_MPEG1_LAYER23, IEC61937_MPEG1_LAYER23 }, //MPEG1
  271. };
  272. static int spdif_header_mpeg(AVFormatContext *s, AVPacket *pkt)
  273. {
  274. IEC61937Context *ctx = s->priv_data;
  275. int version = (pkt->data[1] >> 3) & 3;
  276. int layer = 3 - ((pkt->data[1] >> 1) & 3);
  277. int extension = pkt->data[2] & 1;
  278. if (layer == 3 || version == 1) {
  279. av_log(s, AV_LOG_ERROR, "Wrong MPEG file format\n");
  280. return AVERROR_INVALIDDATA;
  281. }
  282. av_log(s, AV_LOG_DEBUG, "version: %i layer: %i extension: %i\n", version, layer, extension);
  283. if (version == 2 && extension) {
  284. ctx->data_type = IEC61937_MPEG2_EXT;
  285. ctx->pkt_offset = 4608;
  286. } else {
  287. ctx->data_type = mpeg_data_type [version & 1][layer];
  288. ctx->pkt_offset = spdif_mpeg_pkt_offset[version & 1][layer];
  289. }
  290. // TODO Data type dependant info (normal/karaoke, dynamic range control)
  291. return 0;
  292. }
  293. static int spdif_header_aac(AVFormatContext *s, AVPacket *pkt)
  294. {
  295. IEC61937Context *ctx = s->priv_data;
  296. AACADTSHeaderInfo hdr;
  297. GetBitContext gbc;
  298. int ret;
  299. init_get_bits(&gbc, pkt->data, AAC_ADTS_HEADER_SIZE * 8);
  300. ret = ff_aac_parse_header(&gbc, &hdr);
  301. if (ret < 0) {
  302. av_log(s, AV_LOG_ERROR, "Wrong AAC file format\n");
  303. return AVERROR_INVALIDDATA;
  304. }
  305. ctx->pkt_offset = hdr.samples << 2;
  306. switch (hdr.num_aac_frames) {
  307. case 1:
  308. ctx->data_type = IEC61937_MPEG2_AAC;
  309. break;
  310. case 2:
  311. ctx->data_type = IEC61937_MPEG2_AAC_LSF_2048;
  312. break;
  313. case 4:
  314. ctx->data_type = IEC61937_MPEG2_AAC_LSF_4096;
  315. break;
  316. default:
  317. av_log(s, AV_LOG_ERROR, "%i samples in AAC frame not supported\n",
  318. hdr.samples);
  319. return AVERROR(EINVAL);
  320. }
  321. //TODO Data type dependent info (LC profile/SBR)
  322. return 0;
  323. }
  324. /*
  325. * It seems Dolby TrueHD frames have to be encapsulated in MAT frames before
  326. * they can be encapsulated in IEC 61937.
  327. * Here we encapsulate 24 TrueHD frames in a single MAT frame, padding them
  328. * to achieve constant rate.
  329. * The actual format of a MAT frame is unknown, but the below seems to work.
  330. * However, it seems it is not actually necessary for the 24 TrueHD frames to
  331. * be in an exact alignment with the MAT frame.
  332. */
  333. #define MAT_FRAME_SIZE 61424
  334. #define TRUEHD_FRAME_OFFSET 2560
  335. #define MAT_MIDDLE_CODE_OFFSET -4
  336. static int spdif_header_truehd(AVFormatContext *s, AVPacket *pkt)
  337. {
  338. IEC61937Context *ctx = s->priv_data;
  339. int mat_code_length = 0;
  340. const char mat_end_code[16] = { 0xC3, 0xC2, 0xC0, 0xC4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x11 };
  341. if (!ctx->hd_buf_count) {
  342. 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 };
  343. mat_code_length = sizeof(mat_start_code) + BURST_HEADER_SIZE;
  344. memcpy(ctx->hd_buf, mat_start_code, sizeof(mat_start_code));
  345. } else if (ctx->hd_buf_count == 12) {
  346. const char mat_middle_code[12] = { 0xC3, 0xC1, 0x42, 0x49, 0x3B, 0xFA, 0x82, 0x83, 0x49, 0x80, 0x77, 0xE0 };
  347. mat_code_length = sizeof(mat_middle_code) + MAT_MIDDLE_CODE_OFFSET;
  348. memcpy(&ctx->hd_buf[12 * TRUEHD_FRAME_OFFSET - BURST_HEADER_SIZE + MAT_MIDDLE_CODE_OFFSET],
  349. mat_middle_code, sizeof(mat_middle_code));
  350. }
  351. if (pkt->size > TRUEHD_FRAME_OFFSET - mat_code_length) {
  352. /* if such frames exist, we'd need some more complex logic to
  353. * distribute the TrueHD frames in the MAT frame */
  354. av_log(s, AV_LOG_ERROR, "TrueHD frame too big, %d bytes\n", pkt->size);
  355. av_log_ask_for_sample(s, NULL);
  356. return AVERROR_INVALIDDATA;
  357. }
  358. memcpy(&ctx->hd_buf[ctx->hd_buf_count * TRUEHD_FRAME_OFFSET - BURST_HEADER_SIZE + mat_code_length],
  359. pkt->data, pkt->size);
  360. memset(&ctx->hd_buf[ctx->hd_buf_count * TRUEHD_FRAME_OFFSET - BURST_HEADER_SIZE + mat_code_length + pkt->size],
  361. 0, TRUEHD_FRAME_OFFSET - pkt->size - mat_code_length);
  362. if (++ctx->hd_buf_count < 24){
  363. ctx->pkt_offset = 0;
  364. return 0;
  365. }
  366. memcpy(&ctx->hd_buf[MAT_FRAME_SIZE - sizeof(mat_end_code)], mat_end_code, sizeof(mat_end_code));
  367. ctx->hd_buf_count = 0;
  368. ctx->data_type = IEC61937_TRUEHD;
  369. ctx->pkt_offset = 61440;
  370. ctx->out_buf = ctx->hd_buf;
  371. ctx->out_bytes = MAT_FRAME_SIZE;
  372. ctx->length_code = MAT_FRAME_SIZE;
  373. return 0;
  374. }
  375. static int spdif_write_header(AVFormatContext *s)
  376. {
  377. IEC61937Context *ctx = s->priv_data;
  378. switch (s->streams[0]->codec->codec_id) {
  379. case CODEC_ID_AC3:
  380. ctx->header_info = spdif_header_ac3;
  381. break;
  382. case CODEC_ID_EAC3:
  383. ctx->header_info = spdif_header_eac3;
  384. break;
  385. case CODEC_ID_MP1:
  386. case CODEC_ID_MP2:
  387. case CODEC_ID_MP3:
  388. ctx->header_info = spdif_header_mpeg;
  389. break;
  390. case CODEC_ID_DTS:
  391. ctx->header_info = spdif_header_dts;
  392. break;
  393. case CODEC_ID_AAC:
  394. ctx->header_info = spdif_header_aac;
  395. break;
  396. case CODEC_ID_TRUEHD:
  397. ctx->header_info = spdif_header_truehd;
  398. ctx->hd_buf = av_malloc(MAT_FRAME_SIZE);
  399. if (!ctx->hd_buf)
  400. return AVERROR(ENOMEM);
  401. break;
  402. default:
  403. av_log(s, AV_LOG_ERROR, "codec not supported\n");
  404. return AVERROR_PATCHWELCOME;
  405. }
  406. return 0;
  407. }
  408. static int spdif_write_trailer(AVFormatContext *s)
  409. {
  410. IEC61937Context *ctx = s->priv_data;
  411. av_freep(&ctx->buffer);
  412. av_freep(&ctx->hd_buf);
  413. return 0;
  414. }
  415. static av_always_inline void spdif_put_16(IEC61937Context *ctx,
  416. AVIOContext *pb, unsigned int val)
  417. {
  418. if (ctx->spdif_flags & SPDIF_FLAG_BIGENDIAN)
  419. avio_wb16(pb, val);
  420. else
  421. avio_wl16(pb, val);
  422. }
  423. static int spdif_write_packet(struct AVFormatContext *s, AVPacket *pkt)
  424. {
  425. IEC61937Context *ctx = s->priv_data;
  426. int ret, padding;
  427. ctx->out_buf = pkt->data;
  428. ctx->out_bytes = pkt->size;
  429. ctx->length_code = FFALIGN(pkt->size, 2) << 3;
  430. ctx->use_preamble = 1;
  431. ctx->extra_bswap = 0;
  432. ret = ctx->header_info(s, pkt);
  433. if (ret < 0)
  434. return ret;
  435. if (!ctx->pkt_offset)
  436. return 0;
  437. padding = (ctx->pkt_offset - ctx->use_preamble * BURST_HEADER_SIZE - ctx->out_bytes) & ~1;
  438. if (padding < 0) {
  439. av_log(s, AV_LOG_ERROR, "bitrate is too high\n");
  440. return AVERROR(EINVAL);
  441. }
  442. if (ctx->use_preamble) {
  443. spdif_put_16(ctx, s->pb, SYNCWORD1); //Pa
  444. spdif_put_16(ctx, s->pb, SYNCWORD2); //Pb
  445. spdif_put_16(ctx, s->pb, ctx->data_type); //Pc
  446. spdif_put_16(ctx, s->pb, ctx->length_code);//Pd
  447. }
  448. if (ctx->extra_bswap ^ (ctx->spdif_flags & SPDIF_FLAG_BIGENDIAN)) {
  449. avio_write(s->pb, ctx->out_buf, ctx->out_bytes & ~1);
  450. } else {
  451. av_fast_malloc(&ctx->buffer, &ctx->buffer_size, ctx->out_bytes + FF_INPUT_BUFFER_PADDING_SIZE);
  452. if (!ctx->buffer)
  453. return AVERROR(ENOMEM);
  454. ff_spdif_bswap_buf16((uint16_t *)ctx->buffer, (uint16_t *)ctx->out_buf, ctx->out_bytes >> 1);
  455. avio_write(s->pb, ctx->buffer, ctx->out_bytes & ~1);
  456. }
  457. /* a final lone byte has to be MSB aligned */
  458. if (ctx->out_bytes & 1)
  459. spdif_put_16(ctx, s->pb, ctx->out_buf[ctx->out_bytes - 1] << 8);
  460. ffio_fill(s->pb, 0, padding);
  461. av_log(s, AV_LOG_DEBUG, "type=%x len=%i pkt_offset=%i\n",
  462. ctx->data_type, ctx->out_bytes, ctx->pkt_offset);
  463. put_flush_packet(s->pb);
  464. return 0;
  465. }
  466. AVOutputFormat ff_spdif_muxer = {
  467. "spdif",
  468. NULL_IF_CONFIG_SMALL("IEC 61937 (used on S/PDIF - IEC958)"),
  469. NULL,
  470. "spdif",
  471. sizeof(IEC61937Context),
  472. CODEC_ID_AC3,
  473. CODEC_ID_NONE,
  474. spdif_write_header,
  475. spdif_write_packet,
  476. spdif_write_trailer,
  477. .flags = AVFMT_NOTIMESTAMPS,
  478. .priv_class = &class,
  479. };