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