2 * Copyright (C) 2017 foo86
4 * This file is part of FFmpeg.
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 #include "libavutil/intreadwrite.h"
25 #define MARKER_16LE 0x72F81F4E
26 #define MARKER_20LE 0x20876FF0E154
27 #define MARKER_24LE 0x72F8961F4EA5
29 #define IS_16LE_MARKER(state) ((state & 0xFFFFFFFF) == MARKER_16LE)
30 #define IS_20LE_MARKER(state) ((state & 0xF0FFFFF0FFFF) == MARKER_20LE)
31 #define IS_24LE_MARKER(state) ((state & 0xFFFFFFFFFFFF) == MARKER_24LE)
32 #define IS_LE_MARKER(state) (IS_16LE_MARKER(state) || IS_20LE_MARKER(state) || IS_24LE_MARKER(state))
34 static int s337m_get_offset_and_codec(AVFormatContext *s,
36 int data_type, int data_size,
37 int *offset, enum AVCodecID *codec)
41 if (IS_16LE_MARKER(state)) {
43 } else if (IS_20LE_MARKER(state)) {
52 if ((data_type & 0x1F) != 0x1C) {
54 avpriv_report_missing_feature(s, "Data type %#x in SMPTE 337M", data_type & 0x1F);
55 return AVERROR_PATCHWELCOME;
59 *codec = AV_CODEC_ID_DOLBY_E;
61 switch (data_size / word_bits) {
76 avpriv_report_missing_feature(s, "Dolby E data size %d in SMPTE 337M", data_size);
77 return AVERROR_PATCHWELCOME;
81 *offset *= (word_bits + 7 >> 3) * 2;
85 static int s337m_probe(AVProbeData *p)
88 int markers[3] = { 0 };
89 int i, pos, sum, max, data_type, data_size, offset;
92 for (pos = 0; pos < p->buf_size; pos++) {
93 state = (state << 8) | p->buf[pos];
94 if (!IS_LE_MARKER(state))
97 buf = p->buf + pos + 1;
98 if (IS_16LE_MARKER(state)) {
99 data_type = AV_RL16(buf );
100 data_size = AV_RL16(buf + 2);
102 data_type = AV_RL24(buf );
103 data_size = AV_RL24(buf + 3);
106 if (s337m_get_offset_and_codec(NULL, state, data_type, data_size, &offset, NULL))
109 i = IS_16LE_MARKER(state) ? 0 : IS_20LE_MARKER(state) ? 1 : 2;
112 pos += IS_16LE_MARKER(state) ? 4 : 6;
118 for (i = 0; i < FF_ARRAY_ELEMS(markers); i++) {
120 if (markers[max] < markers[i])
124 if (markers[max] > 3 && markers[max] * 4 > sum * 3)
125 return AVPROBE_SCORE_EXTENSION + 1;
130 static int s337m_read_header(AVFormatContext *s)
132 s->ctx_flags |= AVFMTCTX_NOHEADER;
136 static void bswap_buf24(uint8_t *data, int size)
140 for (i = 0; i < size / 3; i++, data += 3)
141 FFSWAP(uint8_t, data[0], data[2]);
144 static int s337m_read_packet(AVFormatContext *s, AVPacket *pkt)
146 AVIOContext *pb = s->pb;
148 int ret, data_type, data_size, offset;
149 enum AVCodecID codec;
152 while (!IS_LE_MARKER(state)) {
153 state = (state << 8) | avio_r8(pb);
158 if (IS_16LE_MARKER(state)) {
159 data_type = avio_rl16(pb);
160 data_size = avio_rl16(pb);
162 data_type = avio_rl24(pb);
163 data_size = avio_rl24(pb);
168 if ((ret = s337m_get_offset_and_codec(s, state, data_type, data_size, &offset, &codec)) < 0)
171 if ((ret = av_new_packet(pkt, offset)) < 0)
176 if (avio_read(pb, pkt->data, pkt->size) < pkt->size) {
177 av_packet_unref(pkt);
181 if (IS_16LE_MARKER(state))
182 ff_spdif_bswap_buf16((uint16_t *)pkt->data, (uint16_t *)pkt->data, pkt->size >> 1);
184 bswap_buf24(pkt->data, pkt->size);
186 if (!s->nb_streams) {
187 AVStream *st = avformat_new_stream(s, NULL);
189 av_packet_unref(pkt);
190 return AVERROR(ENOMEM);
192 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
193 st->codecpar->codec_id = codec;
199 AVInputFormat ff_s337m_demuxer = {
201 .long_name = NULL_IF_CONFIG_SMALL("SMPTE 337M"),
202 .read_probe = s337m_probe,
203 .read_header = s337m_read_header,
204 .read_packet = s337m_read_packet,
205 .flags = AVFMT_GENERIC_INDEX,