spdifenc.c 20 KB

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