yading@11: /* yading@11: * IEC 61937 muxer yading@11: * Copyright (c) 2009 Bartlomiej Wolowiec yading@11: * Copyright (c) 2010 Anssi Hannula yading@11: * Copyright (c) 2010 Carl Eugen Hoyos yading@11: * yading@11: * This file is part of FFmpeg. yading@11: * yading@11: * FFmpeg is free software; you can redistribute it and/or yading@11: * modify it under the terms of the GNU Lesser General Public yading@11: * License as published by the Free Software Foundation; either yading@11: * version 2.1 of the License, or (at your option) any later version. yading@11: * yading@11: * FFmpeg is distributed in the hope that it will be useful, yading@11: * but WITHOUT ANY WARRANTY; without even the implied warranty of yading@11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU yading@11: * Lesser General Public License for more details. yading@11: * yading@11: * You should have received a copy of the GNU Lesser General Public yading@11: * License along with FFmpeg; if not, write to the Free Software yading@11: * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA yading@11: */ yading@11: yading@11: /** yading@11: * @file yading@11: * IEC-61937 encapsulation of various formats, used by S/PDIF yading@11: * @author Bartlomiej Wolowiec yading@11: * @author Anssi Hannula yading@11: * @author Carl Eugen Hoyos yading@11: */ yading@11: yading@11: /* yading@11: * Terminology used in specification: yading@11: * data-burst - IEC61937 frame, contains header and encapsuled frame yading@11: * burst-preambule - IEC61937 frame header, contains 16-bits words named Pa, Pb, Pc and Pd yading@11: * burst-payload - encapsuled frame yading@11: * Pa, Pb - syncword - 0xF872, 0x4E1F yading@11: * Pc - burst-info, contains data-type (bits 0-6), error flag (bit 7), data-type-dependent info (bits 8-12) yading@11: * and bitstream number (bits 13-15) yading@11: * data-type - determines type of encapsuled frames yading@11: * Pd - length code (number of bits or bytes of encapsuled frame - according to data_type) yading@11: * yading@11: * IEC 61937 frames at normal usage start every specific count of bytes, yading@11: * dependent from data-type (spaces between packets are filled by zeros) yading@11: */ yading@11: yading@11: #include "avformat.h" yading@11: #include "avio_internal.h" yading@11: #include "spdif.h" yading@11: #include "libavcodec/ac3.h" yading@11: #include "libavcodec/dca.h" yading@11: #include "libavcodec/aacadtsdec.h" yading@11: #include "libavutil/opt.h" yading@11: yading@11: typedef struct IEC61937Context { yading@11: const AVClass *av_class; yading@11: enum IEC61937DataType data_type;///< burst info - reference to type of payload of the data-burst yading@11: int length_code; ///< length code in bits or bytes, depending on data type yading@11: int pkt_offset; ///< data burst repetition period in bytes yading@11: uint8_t *buffer; ///< allocated buffer, used for swap bytes yading@11: int buffer_size; ///< size of allocated buffer yading@11: yading@11: uint8_t *out_buf; ///< pointer to the outgoing data before byte-swapping yading@11: int out_bytes; ///< amount of outgoing bytes yading@11: yading@11: int use_preamble; ///< preamble enabled (disabled for exactly pre-padded DTS) yading@11: int extra_bswap; ///< extra bswap for payload (for LE DTS => standard BE DTS) yading@11: yading@11: uint8_t *hd_buf; ///< allocated buffer to concatenate hd audio frames yading@11: int hd_buf_size; ///< size of the hd audio buffer yading@11: int hd_buf_count; ///< number of frames in the hd audio buffer yading@11: int hd_buf_filled; ///< amount of bytes in the hd audio buffer yading@11: yading@11: int dtshd_skip; ///< counter used for skipping DTS-HD frames yading@11: yading@11: /* AVOptions: */ yading@11: int dtshd_rate; yading@11: int dtshd_fallback; yading@11: #define SPDIF_FLAG_BIGENDIAN 0x01 yading@11: int spdif_flags; yading@11: yading@11: /// function, which generates codec dependent header information. yading@11: /// Sets data_type and pkt_offset, and length_code, out_bytes, out_buf if necessary yading@11: int (*header_info) (AVFormatContext *s, AVPacket *pkt); yading@11: } IEC61937Context; yading@11: yading@11: static const AVOption options[] = { yading@11: { "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" }, yading@11: { "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" }, yading@11: { "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 }, yading@11: { "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 }, yading@11: { NULL }, yading@11: }; yading@11: yading@11: static const AVClass class = { yading@11: .class_name = "spdif", yading@11: .item_name = av_default_item_name, yading@11: .option = options, yading@11: .version = LIBAVUTIL_VERSION_INT, yading@11: }; yading@11: yading@11: static int spdif_header_ac3(AVFormatContext *s, AVPacket *pkt) yading@11: { yading@11: IEC61937Context *ctx = s->priv_data; yading@11: int bitstream_mode = pkt->data[5] & 0x7; yading@11: yading@11: ctx->data_type = IEC61937_AC3 | (bitstream_mode << 8); yading@11: ctx->pkt_offset = AC3_FRAME_SIZE << 2; yading@11: return 0; yading@11: } yading@11: yading@11: static int spdif_header_eac3(AVFormatContext *s, AVPacket *pkt) yading@11: { yading@11: IEC61937Context *ctx = s->priv_data; yading@11: static const uint8_t eac3_repeat[4] = {6, 3, 2, 1}; yading@11: int repeat = 1; yading@11: yading@11: if ((pkt->data[4] & 0xc0) != 0xc0) /* fscod */ yading@11: repeat = eac3_repeat[(pkt->data[4] & 0x30) >> 4]; /* numblkscod */ yading@11: yading@11: ctx->hd_buf = av_fast_realloc(ctx->hd_buf, &ctx->hd_buf_size, ctx->hd_buf_filled + pkt->size); yading@11: if (!ctx->hd_buf) yading@11: return AVERROR(ENOMEM); yading@11: yading@11: memcpy(&ctx->hd_buf[ctx->hd_buf_filled], pkt->data, pkt->size); yading@11: yading@11: ctx->hd_buf_filled += pkt->size; yading@11: if (++ctx->hd_buf_count < repeat){ yading@11: ctx->pkt_offset = 0; yading@11: return 0; yading@11: } yading@11: ctx->data_type = IEC61937_EAC3; yading@11: ctx->pkt_offset = 24576; yading@11: ctx->out_buf = ctx->hd_buf; yading@11: ctx->out_bytes = ctx->hd_buf_filled; yading@11: ctx->length_code = ctx->hd_buf_filled; yading@11: yading@11: ctx->hd_buf_count = 0; yading@11: ctx->hd_buf_filled = 0; yading@11: return 0; yading@11: } yading@11: yading@11: /* yading@11: * DTS type IV (DTS-HD) can be transmitted with various frame repetition yading@11: * periods; longer repetition periods allow for longer packets and therefore yading@11: * higher bitrate. Longer repetition periods mean that the constant bitrate of yading@11: * the outputted IEC 61937 stream is higher. yading@11: * The repetition period is measured in IEC 60958 frames (4 bytes). yading@11: */ yading@11: static int spdif_dts4_subtype(int period) yading@11: { yading@11: switch (period) { yading@11: case 512: return 0x0; yading@11: case 1024: return 0x1; yading@11: case 2048: return 0x2; yading@11: case 4096: return 0x3; yading@11: case 8192: return 0x4; yading@11: case 16384: return 0x5; yading@11: } yading@11: return -1; yading@11: } yading@11: yading@11: static int spdif_header_dts4(AVFormatContext *s, AVPacket *pkt, int core_size, yading@11: int sample_rate, int blocks) yading@11: { yading@11: IEC61937Context *ctx = s->priv_data; yading@11: static const char dtshd_start_code[10] = { 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xfe }; yading@11: int pkt_size = pkt->size; yading@11: int period; yading@11: int subtype; yading@11: yading@11: if (!core_size) { yading@11: av_log(s, AV_LOG_ERROR, "HD mode not supported for this format\n"); yading@11: return AVERROR(EINVAL); yading@11: } yading@11: yading@11: if (!sample_rate) { yading@11: av_log(s, AV_LOG_ERROR, "Unknown DTS sample rate for HD\n"); yading@11: return AVERROR_INVALIDDATA; yading@11: } yading@11: yading@11: period = ctx->dtshd_rate * (blocks << 5) / sample_rate; yading@11: subtype = spdif_dts4_subtype(period); yading@11: yading@11: if (subtype < 0) { yading@11: av_log(s, AV_LOG_ERROR, "Specified HD rate of %d Hz would require an " yading@11: "impossible repetition period of %d for the current DTS stream" yading@11: " (blocks = %d, sample rate = %d)\n", ctx->dtshd_rate, period, yading@11: blocks << 5, sample_rate); yading@11: return AVERROR(EINVAL); yading@11: } yading@11: yading@11: /* set pkt_offset and DTS IV subtype according to the requested output yading@11: * rate */ yading@11: ctx->pkt_offset = period * 4; yading@11: ctx->data_type = IEC61937_DTSHD | subtype << 8; yading@11: yading@11: /* If the bitrate is too high for transmitting at the selected yading@11: * repetition period setting, strip DTS-HD until a good amount yading@11: * of consecutive non-overflowing HD frames have been observed. yading@11: * This generally only happens if the caller is cramming a Master yading@11: * Audio stream into 192kHz IEC 60958 (which may or may not fit). */ yading@11: if (sizeof(dtshd_start_code) + 2 + pkt_size yading@11: > ctx->pkt_offset - BURST_HEADER_SIZE && core_size) { yading@11: if (!ctx->dtshd_skip) yading@11: av_log(s, AV_LOG_WARNING, "DTS-HD bitrate too high, " yading@11: "temporarily sending core only\n"); yading@11: if (ctx->dtshd_fallback > 0) yading@11: ctx->dtshd_skip = sample_rate * ctx->dtshd_fallback / (blocks << 5); yading@11: else yading@11: /* skip permanently (dtshd_fallback == -1) or just once yading@11: * (dtshd_fallback == 0) */ yading@11: ctx->dtshd_skip = 1; yading@11: } yading@11: if (ctx->dtshd_skip && core_size) { yading@11: pkt_size = core_size; yading@11: if (ctx->dtshd_fallback >= 0) yading@11: --ctx->dtshd_skip; yading@11: } yading@11: yading@11: ctx->out_bytes = sizeof(dtshd_start_code) + 2 + pkt_size; yading@11: yading@11: /* Align so that (length_code & 0xf) == 0x8. This is reportedly needed yading@11: * with some receivers, but the exact requirement is unconfirmed. */ yading@11: ctx->length_code = FFALIGN(ctx->out_bytes + 0x8, 0x10) - 0x8; yading@11: yading@11: av_fast_malloc(&ctx->hd_buf, &ctx->hd_buf_size, ctx->out_bytes); yading@11: if (!ctx->hd_buf) yading@11: return AVERROR(ENOMEM); yading@11: yading@11: ctx->out_buf = ctx->hd_buf; yading@11: yading@11: memcpy(ctx->hd_buf, dtshd_start_code, sizeof(dtshd_start_code)); yading@11: AV_WB16(ctx->hd_buf + sizeof(dtshd_start_code), pkt_size); yading@11: memcpy(ctx->hd_buf + sizeof(dtshd_start_code) + 2, pkt->data, pkt_size); yading@11: yading@11: return 0; yading@11: } yading@11: yading@11: static int spdif_header_dts(AVFormatContext *s, AVPacket *pkt) yading@11: { yading@11: IEC61937Context *ctx = s->priv_data; yading@11: uint32_t syncword_dts = AV_RB32(pkt->data); yading@11: int blocks; yading@11: int sample_rate = 0; yading@11: int core_size = 0; yading@11: yading@11: if (pkt->size < 9) yading@11: return AVERROR_INVALIDDATA; yading@11: yading@11: switch (syncword_dts) { yading@11: case DCA_MARKER_RAW_BE: yading@11: blocks = (AV_RB16(pkt->data + 4) >> 2) & 0x7f; yading@11: core_size = ((AV_RB24(pkt->data + 5) >> 4) & 0x3fff) + 1; yading@11: sample_rate = avpriv_dca_sample_rates[(pkt->data[8] >> 2) & 0x0f]; yading@11: break; yading@11: case DCA_MARKER_RAW_LE: yading@11: blocks = (AV_RL16(pkt->data + 4) >> 2) & 0x7f; yading@11: ctx->extra_bswap = 1; yading@11: break; yading@11: case DCA_MARKER_14B_BE: yading@11: blocks = yading@11: (((pkt->data[5] & 0x07) << 4) | ((pkt->data[6] & 0x3f) >> 2)); yading@11: break; yading@11: case DCA_MARKER_14B_LE: yading@11: blocks = yading@11: (((pkt->data[4] & 0x07) << 4) | ((pkt->data[7] & 0x3f) >> 2)); yading@11: ctx->extra_bswap = 1; yading@11: break; yading@11: case DCA_HD_MARKER: yading@11: /* We only handle HD frames that are paired with core. However, yading@11: sometimes DTS-HD streams with core have a stray HD frame without yading@11: core in the beginning of the stream. */ yading@11: av_log(s, AV_LOG_ERROR, "stray DTS-HD frame\n"); yading@11: return AVERROR_INVALIDDATA; yading@11: default: yading@11: av_log(s, AV_LOG_ERROR, "bad DTS syncword 0x%x\n", syncword_dts); yading@11: return AVERROR_INVALIDDATA; yading@11: } yading@11: blocks++; yading@11: yading@11: if (ctx->dtshd_rate) yading@11: /* DTS type IV output requested */ yading@11: return spdif_header_dts4(s, pkt, core_size, sample_rate, blocks); yading@11: yading@11: switch (blocks) { yading@11: case 512 >> 5: ctx->data_type = IEC61937_DTS1; break; yading@11: case 1024 >> 5: ctx->data_type = IEC61937_DTS2; break; yading@11: case 2048 >> 5: ctx->data_type = IEC61937_DTS3; break; yading@11: default: yading@11: av_log(s, AV_LOG_ERROR, "%i samples in DTS frame not supported\n", yading@11: blocks << 5); yading@11: return AVERROR(ENOSYS); yading@11: } yading@11: yading@11: /* discard extraneous data by default */ yading@11: if (core_size && core_size < pkt->size) { yading@11: ctx->out_bytes = core_size; yading@11: ctx->length_code = core_size << 3; yading@11: } yading@11: yading@11: ctx->pkt_offset = blocks << 7; yading@11: yading@11: if (ctx->out_bytes == ctx->pkt_offset) { yading@11: /* The DTS stream fits exactly into the output stream, so skip the yading@11: * preamble as it would not fit in there. This is the case for dts yading@11: * discs and dts-in-wav. */ yading@11: ctx->use_preamble = 0; yading@11: } else if (ctx->out_bytes > ctx->pkt_offset - BURST_HEADER_SIZE) { yading@11: avpriv_request_sample(s, "Unrecognized large DTS frame"); yading@11: /* This will fail with a "bitrate too high" in the caller */ yading@11: } yading@11: yading@11: return 0; yading@11: } yading@11: yading@11: static const enum IEC61937DataType mpeg_data_type[2][3] = { yading@11: // LAYER1 LAYER2 LAYER3 yading@11: { IEC61937_MPEG2_LAYER1_LSF, IEC61937_MPEG2_LAYER2_LSF, IEC61937_MPEG2_LAYER3_LSF },//MPEG2 LSF yading@11: { IEC61937_MPEG1_LAYER1, IEC61937_MPEG1_LAYER23, IEC61937_MPEG1_LAYER23 }, //MPEG1 yading@11: }; yading@11: yading@11: static int spdif_header_mpeg(AVFormatContext *s, AVPacket *pkt) yading@11: { yading@11: IEC61937Context *ctx = s->priv_data; yading@11: int version = (pkt->data[1] >> 3) & 3; yading@11: int layer = 3 - ((pkt->data[1] >> 1) & 3); yading@11: int extension = pkt->data[2] & 1; yading@11: yading@11: if (layer == 3 || version == 1) { yading@11: av_log(s, AV_LOG_ERROR, "Wrong MPEG file format\n"); yading@11: return AVERROR_INVALIDDATA; yading@11: } yading@11: av_log(s, AV_LOG_DEBUG, "version: %i layer: %i extension: %i\n", version, layer, extension); yading@11: if (version == 2 && extension) { yading@11: ctx->data_type = IEC61937_MPEG2_EXT; yading@11: ctx->pkt_offset = 4608; yading@11: } else { yading@11: ctx->data_type = mpeg_data_type [version & 1][layer]; yading@11: ctx->pkt_offset = spdif_mpeg_pkt_offset[version & 1][layer]; yading@11: } yading@11: // TODO Data type dependent info (normal/karaoke, dynamic range control) yading@11: return 0; yading@11: } yading@11: yading@11: static int spdif_header_aac(AVFormatContext *s, AVPacket *pkt) yading@11: { yading@11: IEC61937Context *ctx = s->priv_data; yading@11: AACADTSHeaderInfo hdr; yading@11: GetBitContext gbc; yading@11: int ret; yading@11: yading@11: init_get_bits(&gbc, pkt->data, AAC_ADTS_HEADER_SIZE * 8); yading@11: ret = avpriv_aac_parse_header(&gbc, &hdr); yading@11: if (ret < 0) { yading@11: av_log(s, AV_LOG_ERROR, "Wrong AAC file format\n"); yading@11: return AVERROR_INVALIDDATA; yading@11: } yading@11: yading@11: ctx->pkt_offset = hdr.samples << 2; yading@11: switch (hdr.num_aac_frames) { yading@11: case 1: yading@11: ctx->data_type = IEC61937_MPEG2_AAC; yading@11: break; yading@11: case 2: yading@11: ctx->data_type = IEC61937_MPEG2_AAC_LSF_2048; yading@11: break; yading@11: case 4: yading@11: ctx->data_type = IEC61937_MPEG2_AAC_LSF_4096; yading@11: break; yading@11: default: yading@11: av_log(s, AV_LOG_ERROR, "%i samples in AAC frame not supported\n", yading@11: hdr.samples); yading@11: return AVERROR(EINVAL); yading@11: } yading@11: //TODO Data type dependent info (LC profile/SBR) yading@11: return 0; yading@11: } yading@11: yading@11: yading@11: /* yading@11: * It seems Dolby TrueHD frames have to be encapsulated in MAT frames before yading@11: * they can be encapsulated in IEC 61937. yading@11: * Here we encapsulate 24 TrueHD frames in a single MAT frame, padding them yading@11: * to achieve constant rate. yading@11: * The actual format of a MAT frame is unknown, but the below seems to work. yading@11: * However, it seems it is not actually necessary for the 24 TrueHD frames to yading@11: * be in an exact alignment with the MAT frame. yading@11: */ yading@11: #define MAT_FRAME_SIZE 61424 yading@11: #define TRUEHD_FRAME_OFFSET 2560 yading@11: #define MAT_MIDDLE_CODE_OFFSET -4 yading@11: yading@11: static int spdif_header_truehd(AVFormatContext *s, AVPacket *pkt) yading@11: { yading@11: IEC61937Context *ctx = s->priv_data; yading@11: int mat_code_length = 0; yading@11: const char mat_end_code[16] = { 0xC3, 0xC2, 0xC0, 0xC4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x11 }; yading@11: yading@11: if (!ctx->hd_buf_count) { yading@11: 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 }; yading@11: mat_code_length = sizeof(mat_start_code) + BURST_HEADER_SIZE; yading@11: memcpy(ctx->hd_buf, mat_start_code, sizeof(mat_start_code)); yading@11: yading@11: } else if (ctx->hd_buf_count == 12) { yading@11: const char mat_middle_code[12] = { 0xC3, 0xC1, 0x42, 0x49, 0x3B, 0xFA, 0x82, 0x83, 0x49, 0x80, 0x77, 0xE0 }; yading@11: mat_code_length = sizeof(mat_middle_code) + MAT_MIDDLE_CODE_OFFSET; yading@11: memcpy(&ctx->hd_buf[12 * TRUEHD_FRAME_OFFSET - BURST_HEADER_SIZE + MAT_MIDDLE_CODE_OFFSET], yading@11: mat_middle_code, sizeof(mat_middle_code)); yading@11: } yading@11: yading@11: if (pkt->size > TRUEHD_FRAME_OFFSET - mat_code_length) { yading@11: /* if such frames exist, we'd need some more complex logic to yading@11: * distribute the TrueHD frames in the MAT frame */ yading@11: avpriv_request_sample(s, "Too large TrueHD frame of %d bytes", yading@11: pkt->size); yading@11: return AVERROR_PATCHWELCOME; yading@11: } yading@11: yading@11: memcpy(&ctx->hd_buf[ctx->hd_buf_count * TRUEHD_FRAME_OFFSET - BURST_HEADER_SIZE + mat_code_length], yading@11: pkt->data, pkt->size); yading@11: memset(&ctx->hd_buf[ctx->hd_buf_count * TRUEHD_FRAME_OFFSET - BURST_HEADER_SIZE + mat_code_length + pkt->size], yading@11: 0, TRUEHD_FRAME_OFFSET - pkt->size - mat_code_length); yading@11: yading@11: if (++ctx->hd_buf_count < 24){ yading@11: ctx->pkt_offset = 0; yading@11: return 0; yading@11: } yading@11: memcpy(&ctx->hd_buf[MAT_FRAME_SIZE - sizeof(mat_end_code)], mat_end_code, sizeof(mat_end_code)); yading@11: ctx->hd_buf_count = 0; yading@11: yading@11: ctx->data_type = IEC61937_TRUEHD; yading@11: ctx->pkt_offset = 61440; yading@11: ctx->out_buf = ctx->hd_buf; yading@11: ctx->out_bytes = MAT_FRAME_SIZE; yading@11: ctx->length_code = MAT_FRAME_SIZE; yading@11: return 0; yading@11: } yading@11: yading@11: static int spdif_write_header(AVFormatContext *s) yading@11: { yading@11: IEC61937Context *ctx = s->priv_data; yading@11: yading@11: switch (s->streams[0]->codec->codec_id) { yading@11: case AV_CODEC_ID_AC3: yading@11: ctx->header_info = spdif_header_ac3; yading@11: break; yading@11: case AV_CODEC_ID_EAC3: yading@11: ctx->header_info = spdif_header_eac3; yading@11: break; yading@11: case AV_CODEC_ID_MP1: yading@11: case AV_CODEC_ID_MP2: yading@11: case AV_CODEC_ID_MP3: yading@11: ctx->header_info = spdif_header_mpeg; yading@11: break; yading@11: case AV_CODEC_ID_DTS: yading@11: ctx->header_info = spdif_header_dts; yading@11: break; yading@11: case AV_CODEC_ID_AAC: yading@11: ctx->header_info = spdif_header_aac; yading@11: break; yading@11: case AV_CODEC_ID_TRUEHD: yading@11: ctx->header_info = spdif_header_truehd; yading@11: ctx->hd_buf = av_malloc(MAT_FRAME_SIZE); yading@11: if (!ctx->hd_buf) yading@11: return AVERROR(ENOMEM); yading@11: break; yading@11: default: yading@11: av_log(s, AV_LOG_ERROR, "codec not supported\n"); yading@11: return AVERROR_PATCHWELCOME; yading@11: } yading@11: return 0; yading@11: } yading@11: yading@11: static int spdif_write_trailer(AVFormatContext *s) yading@11: { yading@11: IEC61937Context *ctx = s->priv_data; yading@11: av_freep(&ctx->buffer); yading@11: av_freep(&ctx->hd_buf); yading@11: return 0; yading@11: } yading@11: yading@11: static av_always_inline void spdif_put_16(IEC61937Context *ctx, yading@11: AVIOContext *pb, unsigned int val) yading@11: { yading@11: if (ctx->spdif_flags & SPDIF_FLAG_BIGENDIAN) yading@11: avio_wb16(pb, val); yading@11: else yading@11: avio_wl16(pb, val); yading@11: } yading@11: yading@11: static int spdif_write_packet(struct AVFormatContext *s, AVPacket *pkt) yading@11: { yading@11: IEC61937Context *ctx = s->priv_data; yading@11: int ret, padding; yading@11: yading@11: ctx->out_buf = pkt->data; yading@11: ctx->out_bytes = pkt->size; yading@11: ctx->length_code = FFALIGN(pkt->size, 2) << 3; yading@11: ctx->use_preamble = 1; yading@11: ctx->extra_bswap = 0; yading@11: yading@11: ret = ctx->header_info(s, pkt); yading@11: if (ret < 0) yading@11: return ret; yading@11: if (!ctx->pkt_offset) yading@11: return 0; yading@11: yading@11: padding = (ctx->pkt_offset - ctx->use_preamble * BURST_HEADER_SIZE - ctx->out_bytes) & ~1; yading@11: if (padding < 0) { yading@11: av_log(s, AV_LOG_ERROR, "bitrate is too high\n"); yading@11: return AVERROR(EINVAL); yading@11: } yading@11: yading@11: if (ctx->use_preamble) { yading@11: spdif_put_16(ctx, s->pb, SYNCWORD1); //Pa yading@11: spdif_put_16(ctx, s->pb, SYNCWORD2); //Pb yading@11: spdif_put_16(ctx, s->pb, ctx->data_type); //Pc yading@11: spdif_put_16(ctx, s->pb, ctx->length_code);//Pd yading@11: } yading@11: yading@11: if (ctx->extra_bswap ^ (ctx->spdif_flags & SPDIF_FLAG_BIGENDIAN)) { yading@11: avio_write(s->pb, ctx->out_buf, ctx->out_bytes & ~1); yading@11: } else { yading@11: av_fast_malloc(&ctx->buffer, &ctx->buffer_size, ctx->out_bytes + FF_INPUT_BUFFER_PADDING_SIZE); yading@11: if (!ctx->buffer) yading@11: return AVERROR(ENOMEM); yading@11: ff_spdif_bswap_buf16((uint16_t *)ctx->buffer, (uint16_t *)ctx->out_buf, ctx->out_bytes >> 1); yading@11: avio_write(s->pb, ctx->buffer, ctx->out_bytes & ~1); yading@11: } yading@11: yading@11: /* a final lone byte has to be MSB aligned */ yading@11: if (ctx->out_bytes & 1) yading@11: spdif_put_16(ctx, s->pb, ctx->out_buf[ctx->out_bytes - 1] << 8); yading@11: yading@11: ffio_fill(s->pb, 0, padding); yading@11: yading@11: av_log(s, AV_LOG_DEBUG, "type=%x len=%i pkt_offset=%i\n", yading@11: ctx->data_type, ctx->out_bytes, ctx->pkt_offset); yading@11: yading@11: return 0; yading@11: } yading@11: yading@11: AVOutputFormat ff_spdif_muxer = { yading@11: .name = "spdif", yading@11: .long_name = NULL_IF_CONFIG_SMALL("IEC 61937 (used on S/PDIF - IEC958)"), yading@11: .extensions = "spdif", yading@11: .priv_data_size = sizeof(IEC61937Context), yading@11: .audio_codec = AV_CODEC_ID_AC3, yading@11: .video_codec = AV_CODEC_ID_NONE, yading@11: .write_header = spdif_write_header, yading@11: .write_packet = spdif_write_packet, yading@11: .write_trailer = spdif_write_trailer, yading@11: .flags = AVFMT_NOTIMESTAMPS, yading@11: .priv_class = &class, yading@11: };