ffmpeg / libavformat / wtv.c @ 9372f31e
History | View | Annotate | Download (24.5 KB)
1 |
/*
|
---|---|
2 |
* Windows Television (WTV) demuxer
|
3 |
* Copyright (c) 2010 Peter Ross <pross@xvid.org>
|
4 |
*
|
5 |
* This file is part of FFmpeg.
|
6 |
*
|
7 |
* FFmpeg is free software; you can redistribute it and/or
|
8 |
* modify it under the terms of the GNU Lesser General Public
|
9 |
* License as published by the Free Software Foundation; either
|
10 |
* version 2.1 of the License, or (at your option) any later version.
|
11 |
*
|
12 |
* FFmpeg is distributed in the hope that it will be useful,
|
13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15 |
* Lesser General Public License for more details.
|
16 |
*
|
17 |
* You should have received a copy of the GNU Lesser General Public
|
18 |
* License along with FFmpeg; if not, write to the Free Software
|
19 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
20 |
*/
|
21 |
|
22 |
/**
|
23 |
* @file
|
24 |
* Windows Television (WTV) demuxer
|
25 |
* @author Peter Ross <pross@xvid.org>
|
26 |
*/
|
27 |
|
28 |
#include "libavutil/intreadwrite.h" |
29 |
#include "avformat.h" |
30 |
#include "riff.h" |
31 |
#include "asf.h" |
32 |
#include "mpegts.h" |
33 |
|
34 |
/* Macros for formating GUIDs */
|
35 |
#define PRI_GUID \
|
36 |
"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x"
|
37 |
#define ARG_GUID(g) \
|
38 |
g[0],g[1],g[2],g[3],g[4],g[5],g[6],g[7],g[8],g[9],g[10],g[11],g[12],g[13],g[14],g[15] |
39 |
|
40 |
typedef struct WtvContext { |
41 |
uint64_t pts; |
42 |
} WtvContext; |
43 |
|
44 |
static int is_zero(uint8_t *v, int n) |
45 |
{ |
46 |
int i;
|
47 |
for (i = 0; i < n; i++) |
48 |
if (v[i]) return 0; |
49 |
return 1; |
50 |
} |
51 |
|
52 |
typedef struct { |
53 |
enum CodecID id;
|
54 |
ff_asf_guid guid; |
55 |
} AVCodecGuid; |
56 |
|
57 |
static enum CodecID ff_codec_guid_get_id(const AVCodecGuid *guids, ff_asf_guid guid) |
58 |
{ |
59 |
int i;
|
60 |
for (i = 0; guids[i].id != CODEC_ID_NONE; i++) { |
61 |
if (!ff_guidcmp(guids[i].guid, guid))
|
62 |
return guids[i].id;
|
63 |
} |
64 |
return CODEC_ID_NONE;
|
65 |
} |
66 |
|
67 |
/* WTV GUIDs */
|
68 |
static const ff_asf_guid wtv_guid = |
69 |
{0xB7,0xD8,0x00,0x20,0x37,0x49,0xDA,0x11,0xA6,0x4E,0x00,0x07,0xE9,0x5E,0xAD,0x8D}; |
70 |
static const ff_asf_guid meta_guid = |
71 |
{0x5A,0xFE,0xD7,0x6D,0xC8,0x1D,0x8F,0x4A,0x99,0x22,0xFA,0xB1,0x1C,0x38,0x14,0x53}; |
72 |
static const ff_asf_guid timestamp_guid = |
73 |
{0x5B,0x05,0xE6,0x1B,0x97,0xA9,0x49,0x43,0x88,0x17,0x1A,0x65,0x5A,0x29,0x8A,0x97}; |
74 |
static const ff_asf_guid data_guid = |
75 |
{0x95,0xC3,0xD2,0xC2,0x7E,0x9A,0xDA,0x11,0x8B,0xF7,0x00,0x07,0xE9,0x5E,0xAD,0x8D}; |
76 |
static const ff_asf_guid stream_guid = |
77 |
{0xED,0xA4,0x13,0x23,0x2D,0xBF,0x4F,0x45,0xAD,0x8A,0xD9,0x5B,0xA7,0xF9,0x1F,0xEE}; |
78 |
static const ff_asf_guid stream2_guid = |
79 |
{0xA2,0xC3,0xD2,0xC2,0x7E,0x9A,0xDA,0x11,0x8B,0xF7,0x00,0x07,0xE9,0x5E,0xAD,0x8D}; |
80 |
static const ff_asf_guid EVENTID_SubtitleSpanningEvent = |
81 |
{0x48,0xC0,0xCE,0x5D,0xB9,0xD0,0x63,0x41,0x87,0x2C,0x4F,0x32,0x22,0x3B,0xE8,0x8A}; |
82 |
static const ff_asf_guid EVENTID_LanguageSpanningEvent = |
83 |
{0x6D,0x66,0x92,0xE2,0x02,0x9C,0x8D,0x44,0xAA,0x8D,0x78,0x1A,0x93,0xFD,0xC3,0x95}; |
84 |
static const ff_asf_guid EVENTID_AudioDescriptorSpanningEvent = |
85 |
{0x1C,0xD4,0x7B,0x10,0xDA,0xA6,0x91,0x46,0x83,0x69,0x11,0xB2,0xCD,0xAA,0x28,0x8E}; |
86 |
static const ff_asf_guid EVENTID_CtxADescriptorSpanningEvent = |
87 |
{0xE6,0xA2,0xB4,0x3A,0x47,0x42,0x34,0x4B,0x89,0x6C,0x30,0xAF,0xA5,0xD2,0x1C,0x24}; |
88 |
static const ff_asf_guid EVENTID_CSDescriptorSpanningEvent = |
89 |
{0xD9,0x79,0xE7,0xEf,0xF0,0x97,0x86,0x47,0x80,0x0D,0x95,0xCF,0x50,0x5D,0xDC,0x66}; |
90 |
static const ff_asf_guid EVENTID_DVBScramblingControlSpanningEvent = |
91 |
{0xC4,0xE1,0xD4,0x4B,0xA1,0x90,0x09,0x41,0x82,0x36,0x27,0xF0,0x0E,0x7D,0xCC,0x5B}; |
92 |
static const ff_asf_guid EVENTID_StreamIDSpanningEvent = |
93 |
{0x68,0xAB,0xF1,0xCA,0x53,0xE1,0x41,0x4D,0xA6,0xB3,0xA7,0xC9,0x98,0xDB,0x75,0xEE}; |
94 |
static const ff_asf_guid EVENTID_TeletextSpanningEvent = |
95 |
{0x50,0xD9,0x99,0x95,0x33,0x5F,0x17,0x46,0xAF,0x7C,0x1E,0x54,0xB5,0x10,0xDA,0xA3}; |
96 |
|
97 |
/* Windows media GUIDs */
|
98 |
|
99 |
#define MEDIASUBTYPE_BASE_GUID \
|
100 |
0x00,0x00,0x10,0x00,0x80,0x00,0x00,0xAA,0x00,0x38,0x9B,0x71 |
101 |
|
102 |
/* Media types */
|
103 |
static const ff_asf_guid mediatype_audio = |
104 |
{'a','u','d','s',MEDIASUBTYPE_BASE_GUID}; |
105 |
static const ff_asf_guid mediatype_video = |
106 |
{'v','i','d','s',MEDIASUBTYPE_BASE_GUID}; |
107 |
static const ff_asf_guid mediasubtype_mpeg1payload = |
108 |
{0x81,0xEB,0x36,0xE4,0x4F,0x52,0xCE,0x11,0x9F,0x53,0x00,0x20,0xAF,0x0B,0xA7,0x70}; |
109 |
static const ff_asf_guid mediatype_mpeg2_sections = |
110 |
{0x6C,0x17,0x5F,0x45,0x06,0x4B,0xCE,0x47,0x9A,0xEF,0x8C,0xAE,0xF7,0x3D,0xF7,0xB5}; |
111 |
static const ff_asf_guid mediatype_mpeg2_pes = |
112 |
{0x20,0x80,0x6D,0xE0,0x46,0xDB,0xCF,0x11,0xB4,0xD1,0x00,0x80,0x5F,0x6C,0xBB,0xEA}; |
113 |
static const ff_asf_guid mediatype_mstvcaption = |
114 |
{0x89,0x8A,0x8B,0xB8,0x49,0xB0,0x80,0x4C,0xAD,0xCF,0x58,0x98,0x98,0x5E,0x22,0xC1}; |
115 |
|
116 |
/* Media subtypes */
|
117 |
static const ff_asf_guid mediasubtype_cpfilters_processed = |
118 |
{0x28,0xBD,0xAD,0x46,0xD0,0x6F,0x96,0x47,0x93,0xB2,0x15,0x5C,0x51,0xDC,0x04,0x8D}; |
119 |
static const ff_asf_guid mediasubtype_dvb_subtitle = |
120 |
{0xC3,0xCB,0xFF,0x34,0xB3,0xD5,0x71,0x41,0x90,0x02,0xD4,0xC6,0x03,0x01,0x69,0x7F}; |
121 |
static const ff_asf_guid mediasubtype_teletext = |
122 |
{0xE3,0x76,0x2A,0xF7,0x0A,0xEB,0xD0,0x11,0xAC,0xE4,0x00,0x00,0xC0,0xCC,0x16,0xBA}; |
123 |
static const ff_asf_guid mediasubtype_dtvccdata = |
124 |
{0xAA,0xDD,0x2A,0xF5,0xF0,0x36,0xF5,0x43,0x95,0xEA,0x6D,0x86,0x64,0x84,0x26,0x2A}; |
125 |
static const ff_asf_guid mediasubtype_mpeg2_sections = |
126 |
{0x79,0x85,0x9F,0x4A,0xF8,0x6B,0x92,0x43,0x8A,0x6D,0xD2,0xDD,0x09,0xFA,0x78,0x61}; |
127 |
|
128 |
/* Formats */
|
129 |
static const ff_asf_guid format_cpfilters_processed = |
130 |
{0x6F,0xB3,0x39,0x67,0x5F,0x1D,0xC2,0x4A,0x81,0x92,0x28,0xBB,0x0E,0x73,0xD1,0x6A}; |
131 |
static const ff_asf_guid format_waveformatex = |
132 |
{0x81,0x9F,0x58,0x05,0x56,0xC3,0xCE,0x11,0xBF,0x01,0x00,0xAA,0x00,0x55,0x59,0x5A}; |
133 |
static const ff_asf_guid format_videoinfo2 = |
134 |
{0xA0,0x76,0x2A,0xF7,0x0A,0xEB,0xD0,0x11,0xAC,0xE4,0x00,0x00,0xC0,0xCC,0x16,0xBA}; |
135 |
static const ff_asf_guid format_mpeg2_video = |
136 |
{0xE3,0x80,0x6D,0xE0,0x46,0xDB,0xCF,0x11,0xB4,0xD1,0x00,0x80,0x5F,0x6C,0xBB,0xEA}; |
137 |
static const ff_asf_guid format_none = |
138 |
{0xD6,0x17,0x64,0x0F,0x18,0xC3,0xD0,0x11,0xA4,0x3F,0x00,0xA0,0xC9,0x22,0x31,0x96}; |
139 |
|
140 |
static const AVCodecGuid video_guids[] = { |
141 |
{CODEC_ID_MPEG2VIDEO, {0x26,0x80,0x6D,0xE0,0x46,0xDB,0xCF,0x11,0xB4,0xD1,0x00,0x80,0x5F,0x6C,0xBB,0xEA}}, |
142 |
{CODEC_ID_NONE} |
143 |
}; |
144 |
|
145 |
static const AVCodecGuid audio_guids[] = { |
146 |
{CODEC_ID_AC3, {0x2C,0x80,0x6D,0xE0,0x46,0xDB,0xCF,0x11,0xB4,0xD1,0x00,0x80,0x5F,0x6C,0xBB,0xEA}}, |
147 |
{CODEC_ID_EAC3, {0xAF,0x87,0xFB,0xA7,0x02,0x2D,0xFB,0x42,0xA4,0xD4,0x05,0xCD,0x93,0x84,0x3B,0xDD}}, |
148 |
{CODEC_ID_MP2, {0x2B,0x80,0x6D,0xE0,0x46,0xDB,0xCF,0x11,0xB4,0xD1,0x00,0x80,0x5F,0x6C,0xBB,0xEA}}, |
149 |
{CODEC_ID_NONE} |
150 |
}; |
151 |
|
152 |
static int read_probe(AVProbeData *p) |
153 |
{ |
154 |
return ff_guidcmp(p->buf, wtv_guid) ? 0 : AVPROBE_SCORE_MAX; |
155 |
} |
156 |
|
157 |
/**
|
158 |
* parse VIDEOINFOHEADER2 structure
|
159 |
* @return bytes consumed
|
160 |
*/
|
161 |
static int parse_videoinfoheader2(AVFormatContext *s, AVStream *st) |
162 |
{ |
163 |
ByteIOContext *pb = s->pb; |
164 |
|
165 |
url_fskip(pb, 32);
|
166 |
st->codec->bit_rate = get_le32(pb); |
167 |
url_fskip(pb, 20);
|
168 |
st->sample_aspect_ratio.num = get_le32(pb); |
169 |
st->sample_aspect_ratio.den = get_le32(pb); |
170 |
url_fskip(pb, 8);
|
171 |
ff_get_bmp_header(pb, st); |
172 |
|
173 |
return 72 + 40; |
174 |
} |
175 |
|
176 |
/**
|
177 |
* Parse MPEG1WAVEFORMATEX extradata structure
|
178 |
*/
|
179 |
static void parse_mpeg1waveformatex(AVStream *st) |
180 |
{ |
181 |
/* fwHeadLayer */
|
182 |
switch (AV_RL16(st->codec->extradata)) {
|
183 |
case 0x0001 : st->codec->codec_id = CODEC_ID_MP1; break; |
184 |
case 0x0002 : st->codec->codec_id = CODEC_ID_MP2; break; |
185 |
case 0x0004 : st->codec->codec_id = CODEC_ID_MP3; break; |
186 |
} |
187 |
|
188 |
st->codec->bit_rate = AV_RL32(st->codec->extradata + 2); /* dwHeadBitrate */ |
189 |
|
190 |
/* dwHeadMode */
|
191 |
switch (AV_RL16(st->codec->extradata + 6)) { |
192 |
case 1 : case 2 : case 4 : st->codec->channels = 2; break; |
193 |
case 8 : st->codec->channels = 1; break; |
194 |
} |
195 |
} |
196 |
|
197 |
/**
|
198 |
* Initialise stream
|
199 |
* @param st Stream to initialise, or NULL to create and initialise new stream
|
200 |
* @return NULL on error
|
201 |
*/
|
202 |
static AVStream * new_stream(AVFormatContext *s, AVStream *st, int sid, int codec_type) |
203 |
{ |
204 |
if (st) {
|
205 |
if (st->codec->extradata) {
|
206 |
av_freep(&st->codec->extradata); |
207 |
st->codec->extradata_size = 0;
|
208 |
} |
209 |
} else {
|
210 |
st = av_new_stream(s, sid); |
211 |
if (!st)
|
212 |
return NULL; |
213 |
} |
214 |
st->codec->codec_type = codec_type; |
215 |
st->need_parsing = AVSTREAM_PARSE_FULL; |
216 |
av_set_pts_info(st, 64, 1, 10000000); |
217 |
return st;
|
218 |
} |
219 |
|
220 |
/**
|
221 |
* parse Media Type structure and populate stream
|
222 |
* @param st Stream, or NULL to create new stream
|
223 |
* @param mediatype Mediatype GUID
|
224 |
* @param subtype Subtype GUID
|
225 |
* @param formattype Format GUID
|
226 |
* @param size Size of format buffer
|
227 |
* @return NULL on error
|
228 |
*/
|
229 |
static AVStream * parse_media_type(AVFormatContext *s, AVStream *st, int sid, |
230 |
ff_asf_guid mediatype, ff_asf_guid subtype, |
231 |
ff_asf_guid formattype, int size)
|
232 |
{ |
233 |
ByteIOContext *pb = s->pb; |
234 |
if (!ff_guidcmp(subtype, mediasubtype_cpfilters_processed) &&
|
235 |
!ff_guidcmp(formattype, format_cpfilters_processed)) { |
236 |
ff_asf_guid actual_subtype; |
237 |
ff_asf_guid actual_formattype; |
238 |
|
239 |
if (size < 32) { |
240 |
av_log(s, AV_LOG_WARNING, "format buffer size underflow\n");
|
241 |
url_fskip(pb, size); |
242 |
return NULL; |
243 |
} |
244 |
|
245 |
url_fskip(pb, size - 32);
|
246 |
ff_get_guid(pb, &actual_subtype); |
247 |
ff_get_guid(pb, &actual_formattype); |
248 |
url_fseek(pb, -size, SEEK_CUR); |
249 |
|
250 |
st = parse_media_type(s, st, sid, mediatype, actual_subtype, actual_formattype, size - 32);
|
251 |
url_fskip(pb, 32);
|
252 |
return st;
|
253 |
} else if (!ff_guidcmp(mediatype, mediatype_audio)) { |
254 |
st = new_stream(s, st, sid, AVMEDIA_TYPE_AUDIO); |
255 |
if (!st)
|
256 |
return NULL; |
257 |
if (!ff_guidcmp(formattype, format_waveformatex)) {
|
258 |
ff_get_wav_header(pb, st->codec, size); |
259 |
} else {
|
260 |
if (ff_guidcmp(formattype, format_none))
|
261 |
av_log(s, AV_LOG_WARNING, "unknown formattype:"PRI_GUID"\n", ARG_GUID(formattype)); |
262 |
url_fskip(pb, size); |
263 |
} |
264 |
|
265 |
if (!memcmp(subtype + 4, (const uint8_t[]){MEDIASUBTYPE_BASE_GUID}, 12)) { |
266 |
st->codec->codec_id = ff_wav_codec_get_id(AV_RL32(subtype), st->codec->bits_per_coded_sample); |
267 |
} else if (!ff_guidcmp(subtype, mediasubtype_mpeg1payload)) { |
268 |
if (st->codec->extradata && st->codec->extradata_size >= 22) |
269 |
parse_mpeg1waveformatex(st); |
270 |
else
|
271 |
av_log(s, AV_LOG_WARNING, "MPEG1WAVEFORMATEX underflow\n");
|
272 |
} else {
|
273 |
st->codec->codec_id = ff_codec_guid_get_id(audio_guids, subtype); |
274 |
if (st->codec->codec_id == CODEC_ID_NONE)
|
275 |
av_log(s, AV_LOG_WARNING, "unknown subtype:"PRI_GUID"\n", ARG_GUID(subtype)); |
276 |
} |
277 |
return st;
|
278 |
} else if (!ff_guidcmp(mediatype, mediatype_video)) { |
279 |
st = new_stream(s, st, sid, AVMEDIA_TYPE_VIDEO); |
280 |
if (!st)
|
281 |
return NULL; |
282 |
if (!ff_guidcmp(formattype, format_videoinfo2)) {
|
283 |
int consumed = parse_videoinfoheader2(s, st);
|
284 |
url_fskip(pb, FFMAX(size - consumed, 0));
|
285 |
} else if (!ff_guidcmp(formattype, format_mpeg2_video)) { |
286 |
int consumed = parse_videoinfoheader2(s, st);
|
287 |
url_fskip(pb, FFMAX(size - consumed, 0));
|
288 |
} else {
|
289 |
if (ff_guidcmp(formattype, format_none))
|
290 |
av_log(s, AV_LOG_WARNING, "unknown formattype:"PRI_GUID"\n", ARG_GUID(formattype)); |
291 |
url_fskip(pb, size); |
292 |
} |
293 |
|
294 |
if (!memcmp(subtype + 4, (const uint8_t[]){MEDIASUBTYPE_BASE_GUID}, 12)) { |
295 |
st->codec->codec_id = ff_codec_get_id(ff_codec_bmp_tags, AV_RL32(subtype)); |
296 |
} else {
|
297 |
st->codec->codec_id = ff_codec_guid_get_id(video_guids, subtype); |
298 |
} |
299 |
if (st->codec->codec_id == CODEC_ID_NONE)
|
300 |
av_log(s, AV_LOG_WARNING, "unknown subtype:"PRI_GUID"\n", ARG_GUID(subtype)); |
301 |
return st;
|
302 |
} else if (!ff_guidcmp(mediatype, mediatype_mpeg2_pes) && |
303 |
!ff_guidcmp(subtype, mediasubtype_dvb_subtitle)) { |
304 |
st = new_stream(s, st, sid, AVMEDIA_TYPE_SUBTITLE); |
305 |
if (!st)
|
306 |
return NULL; |
307 |
if (ff_guidcmp(formattype, format_none))
|
308 |
av_log(s, AV_LOG_WARNING, "unknown formattype:"PRI_GUID"\n", ARG_GUID(formattype)); |
309 |
url_fskip(pb, size); |
310 |
st->codec->codec_id = CODEC_ID_DVB_SUBTITLE; |
311 |
return st;
|
312 |
} else if (!ff_guidcmp(mediatype, mediatype_mstvcaption) && |
313 |
(!ff_guidcmp(subtype, mediasubtype_teletext) || !ff_guidcmp(subtype, mediasubtype_dtvccdata))) { |
314 |
st = new_stream(s, st, sid, AVMEDIA_TYPE_SUBTITLE); |
315 |
if (!st)
|
316 |
return NULL; |
317 |
if (ff_guidcmp(formattype, format_none))
|
318 |
av_log(s, AV_LOG_WARNING, "unknown formattype:"PRI_GUID"\n", ARG_GUID(formattype)); |
319 |
url_fskip(pb, size); |
320 |
st->codec->codec_id = CODEC_ID_DVB_TELETEXT; |
321 |
return st;
|
322 |
} else if (!ff_guidcmp(mediatype, mediatype_mpeg2_sections) && |
323 |
!ff_guidcmp(subtype, mediasubtype_mpeg2_sections)) { |
324 |
if (ff_guidcmp(formattype, format_none))
|
325 |
av_log(s, AV_LOG_WARNING, "unknown formattype:"PRI_GUID"\n", ARG_GUID(formattype)); |
326 |
url_fskip(pb, size); |
327 |
return NULL; |
328 |
} |
329 |
|
330 |
av_log(s, AV_LOG_WARNING, "unknown media type, mediatype:"PRI_GUID
|
331 |
", subtype:"PRI_GUID", formattype:"PRI_GUID"\n", |
332 |
ARG_GUID(mediatype), ARG_GUID(subtype), ARG_GUID(formattype)); |
333 |
url_fskip(pb, size); |
334 |
return NULL; |
335 |
} |
336 |
|
337 |
enum {
|
338 |
SEEK_TO_DATA = 0,
|
339 |
SEEK_TO_BYTE, |
340 |
SEEK_TO_PTS, |
341 |
}; |
342 |
|
343 |
/**
|
344 |
* Parse WTV chunks
|
345 |
* @param mode SEEK_TO_DATA, SEEK_TO_BYTE, SEEK_TO_PTS
|
346 |
* @param seekts either byte position or timestamp
|
347 |
* @param[out] len Length of data chunk
|
348 |
* @return stream index of data chunk, or <0 on error
|
349 |
*/
|
350 |
static int parse_chunks(AVFormatContext *s, int mode, int64_t seekts, int *len_ptr) |
351 |
{ |
352 |
WtvContext *wtv = s->priv_data; |
353 |
ByteIOContext *pb = s->pb; |
354 |
while (!url_feof(pb)) {
|
355 |
ff_asf_guid g; |
356 |
int len, sid, consumed;
|
357 |
|
358 |
if (mode == SEEK_TO_BYTE && url_ftell(pb) >= seekts)
|
359 |
return 0; |
360 |
|
361 |
ff_get_guid(pb, &g); |
362 |
if (is_zero(g, sizeof(ff_asf_guid))) |
363 |
return AVERROR_EOF;
|
364 |
|
365 |
len = get_le32(pb); |
366 |
sid = get_le32(pb) & 0x7FFF;
|
367 |
url_fskip(pb, 8);
|
368 |
consumed = 32;
|
369 |
|
370 |
if (!ff_guidcmp(g, stream_guid)) {
|
371 |
if (ff_find_stream_index(s, sid) < 0) { |
372 |
ff_asf_guid mediatype, subtype, formattype; |
373 |
int size;
|
374 |
consumed += 20;
|
375 |
url_fskip(pb, 16);
|
376 |
if (get_le32(pb)) {
|
377 |
url_fskip(pb, 8);
|
378 |
ff_get_guid(pb, &mediatype); |
379 |
ff_get_guid(pb, &subtype); |
380 |
url_fskip(pb, 12);
|
381 |
ff_get_guid(pb, &formattype); |
382 |
size = get_le32(pb); |
383 |
parse_media_type(s, 0, sid, mediatype, subtype, formattype, size);
|
384 |
consumed += 72 + size;
|
385 |
} |
386 |
} |
387 |
} else if (!ff_guidcmp(g, stream2_guid)) { |
388 |
int stream_index = ff_find_stream_index(s, sid);
|
389 |
if (stream_index >= 0) { |
390 |
ff_asf_guid mediatype, subtype, formattype; |
391 |
int size;
|
392 |
url_fskip(pb, 12);
|
393 |
ff_get_guid(pb, &mediatype); |
394 |
ff_get_guid(pb, &subtype); |
395 |
url_fskip(pb, 12);
|
396 |
ff_get_guid(pb, &formattype); |
397 |
size = get_le32(pb); |
398 |
parse_media_type(s, s->streams[stream_index], sid, mediatype, subtype, formattype, size); |
399 |
consumed += 76 + size;
|
400 |
} |
401 |
} else if (!ff_guidcmp(g, EVENTID_AudioDescriptorSpanningEvent) || |
402 |
!ff_guidcmp(g, EVENTID_CtxADescriptorSpanningEvent) || |
403 |
!ff_guidcmp(g, EVENTID_CSDescriptorSpanningEvent) || |
404 |
!ff_guidcmp(g, EVENTID_StreamIDSpanningEvent) || |
405 |
!ff_guidcmp(g, EVENTID_SubtitleSpanningEvent) || |
406 |
!ff_guidcmp(g, EVENTID_TeletextSpanningEvent)) { |
407 |
int stream_index = ff_find_stream_index(s, sid);
|
408 |
if (stream_index >= 0) { |
409 |
AVStream *st = s->streams[stream_index]; |
410 |
uint8_t buf[258];
|
411 |
const uint8_t *pbuf = buf;
|
412 |
int buf_size;
|
413 |
|
414 |
url_fskip(pb, 8);
|
415 |
consumed += 8;
|
416 |
if (!ff_guidcmp(g, EVENTID_CtxADescriptorSpanningEvent) ||
|
417 |
!ff_guidcmp(g, EVENTID_CSDescriptorSpanningEvent)) { |
418 |
url_fskip(pb, 6);
|
419 |
consumed += 6;
|
420 |
} |
421 |
|
422 |
buf_size = FFMIN(len - consumed, sizeof(buf));
|
423 |
get_buffer(pb, buf, buf_size); |
424 |
consumed += buf_size; |
425 |
ff_parse_mpeg2_descriptor(s, st, 0, &pbuf, buf + buf_size, 0, 0, 0, 0); |
426 |
} |
427 |
} else if (!ff_guidcmp(g, EVENTID_DVBScramblingControlSpanningEvent)) { |
428 |
int stream_index = ff_find_stream_index(s, sid);
|
429 |
if (stream_index >= 0) { |
430 |
url_fskip(pb, 12);
|
431 |
if (get_le32(pb))
|
432 |
av_log(s, AV_LOG_WARNING, "DVB scrambled stream detected (st:%d), decoding will likely fail\n", stream_index);
|
433 |
consumed += 16;
|
434 |
} |
435 |
} else if (!ff_guidcmp(g, EVENTID_LanguageSpanningEvent)) { |
436 |
int stream_index = ff_find_stream_index(s, sid);
|
437 |
if (stream_index >= 0) { |
438 |
AVStream *st = s->streams[stream_index]; |
439 |
uint8_t language[4];
|
440 |
url_fskip(pb, 12);
|
441 |
get_buffer(pb, language, 3);
|
442 |
if (language[0]) { |
443 |
language[3] = 0; |
444 |
av_metadata_set2(&st->metadata, "language", language, 0); |
445 |
} |
446 |
consumed += 15;
|
447 |
} |
448 |
} else if (!ff_guidcmp(g, timestamp_guid)) { |
449 |
url_fskip(pb, 8);
|
450 |
wtv->pts = get_le64(pb); |
451 |
consumed += 16;
|
452 |
if (wtv->pts == -1) |
453 |
wtv->pts = AV_NOPTS_VALUE; |
454 |
if (mode == SEEK_TO_PTS && wtv->pts >= seekts) {
|
455 |
#define WTV_PAD8(x) (((x) + 7) & ~7) |
456 |
url_fskip(pb, WTV_PAD8(len) - consumed); |
457 |
return 0; |
458 |
} |
459 |
} else if (!ff_guidcmp(g, data_guid)) { |
460 |
int stream_index = ff_find_stream_index(s, sid);
|
461 |
if (mode == SEEK_TO_DATA && stream_index >= 0) { |
462 |
if (len_ptr) {
|
463 |
*len_ptr = len; |
464 |
} |
465 |
if (wtv->pts != AV_NOPTS_VALUE)
|
466 |
av_add_index_entry(s->streams[stream_index], url_ftell(pb) - consumed, wtv->pts, 0, 0, AVINDEX_KEYFRAME); |
467 |
return stream_index;
|
468 |
} |
469 |
} else if ( |
470 |
!ff_guidcmp(g, /* DSATTRIB_CAPTURE_STREAMTIME */ (const ff_asf_guid){0x14,0x56,0x1A,0x0C,0xCD,0x30,0x40,0x4F,0xBC,0xBF,0xD0,0x3E,0x52,0x30,0x62,0x07}) || |
471 |
!ff_guidcmp(g, /* DSATTRIB_PicSampleSeq */ (const ff_asf_guid){0x02,0xAE,0x5B,0x2F,0x8F,0x7B,0x60,0x4F,0x82,0xD6,0xE4,0xEA,0x2F,0x1F,0x4C,0x99}) || |
472 |
!ff_guidcmp(g, /* DSATTRIB_TRANSPORT_PROPERTIES */ (const ff_asf_guid){0x12,0xF6,0x22,0xB6,0xAD,0x47,0x71,0x46,0xAD,0x6C,0x05,0xA9,0x8E,0x65,0xDE,0x3A}) || |
473 |
!ff_guidcmp(g, /* dvr_ms_vid_frame_rep_data */ (const ff_asf_guid){0xCC,0x32,0x64,0xDD,0x29,0xE2,0xDB,0x40,0x80,0xF6,0xD2,0x63,0x28,0xD2,0x76,0x1F}) || |
474 |
!ff_guidcmp(g, /* EVENTID_AudioTypeSpanningEvent */ (const ff_asf_guid){0xBE,0xBF,0x1C,0x50,0x49,0xB8,0xCE,0x42,0x9B,0xE9,0x3D,0xB8,0x69,0xFB,0x82,0xB3}) || |
475 |
!ff_guidcmp(g, /* EVENTID_ChannelChangeSpanningEvent */ (const ff_asf_guid){0xE5,0xC5,0x67,0x90,0x5C,0x4C,0x05,0x42,0x86,0xC8,0x7A,0xFE,0x20,0xFE,0x1E,0xFA}) || |
476 |
!ff_guidcmp(g, /* EVENTID_ChannelInfoSpanningEvent */ (const ff_asf_guid){0x80,0x6D,0xF3,0x41,0x32,0x41,0xC2,0x4C,0xB1,0x21,0x01,0xA4,0x32,0x19,0xD8,0x1B}) || |
477 |
!ff_guidcmp(g, /* EVENTID_ChannelTypeSpanningEvent */ (const ff_asf_guid){0x51,0x1D,0xAB,0x72,0xD2,0x87,0x9B,0x48,0xBA,0x11,0x0E,0x08,0xDC,0x21,0x02,0x43}) || |
478 |
!ff_guidcmp(g, /* EVENTID_PIDListSpanningEvent */ (const ff_asf_guid){0x65,0x8F,0xFC,0x47,0xBB,0xE2,0x34,0x46,0x9C,0xEF,0xFD,0xBF,0xE6,0x26,0x1D,0x5C}) || |
479 |
!ff_guidcmp(g, /* EVENTID_SignalAndServiceStatusSpanningEvent */ (const ff_asf_guid){0xCB,0xC5,0x68,0x80,0x04,0x3C,0x2B,0x49,0xB4,0x7D,0x03,0x08,0x82,0x0D,0xCE,0x51}) || |
480 |
!ff_guidcmp(g, /* EVENTID_StreamTypeSpanningEvent */ (const ff_asf_guid){0xBC,0x2E,0xAF,0x82,0xA6,0x30,0x64,0x42,0xA8,0x0B,0xAD,0x2E,0x13,0x72,0xAC,0x60}) || |
481 |
!ff_guidcmp(g, (const ff_asf_guid){0x1E,0xBE,0xC3,0xC5,0x43,0x92,0xDC,0x11,0x85,0xE5,0x00,0x12,0x3F,0x6F,0x73,0xB9}) || |
482 |
!ff_guidcmp(g, (const ff_asf_guid){0x3B,0x86,0xA2,0xB1,0xEB,0x1E,0xC3,0x44,0x8C,0x88,0x1C,0xA3,0xFF,0xE3,0xE7,0x6A}) || |
483 |
!ff_guidcmp(g, (const ff_asf_guid){0x4E,0x7F,0x4C,0x5B,0xC4,0xD0,0x38,0x4B,0xA8,0x3E,0x21,0x7F,0x7B,0xBF,0x52,0xE7}) || |
484 |
!ff_guidcmp(g, (const ff_asf_guid){0x63,0x36,0xEB,0xFE,0xA1,0x7E,0xD9,0x11,0x83,0x08,0x00,0x07,0xE9,0x5E,0xAD,0x8D}) || |
485 |
!ff_guidcmp(g, (const ff_asf_guid){0x70,0xE9,0xF1,0xF8,0x89,0xA4,0x4C,0x4D,0x83,0x73,0xB8,0x12,0xE0,0xD5,0xF8,0x1E}) || |
486 |
!ff_guidcmp(g, (const ff_asf_guid){0x96,0xC3,0xD2,0xC2,0x7E,0x9A,0xDA,0x11,0x8B,0xF7,0x00,0x07,0xE9,0x5E,0xAD,0x8D}) || |
487 |
!ff_guidcmp(g, (const ff_asf_guid){0x97,0xC3,0xD2,0xC2,0x7E,0x9A,0xDA,0x11,0x8B,0xF7,0x00,0x07,0xE9,0x5E,0xAD,0x8D}) || |
488 |
!ff_guidcmp(g, (const ff_asf_guid){0xA1,0xC3,0xD2,0xC2,0x7E,0x9A,0xDA,0x11,0x8B,0xF7,0x00,0x07,0xE9,0x5E,0xAD,0x8D})) { |
489 |
//ignore known guids
|
490 |
} else
|
491 |
av_log(s, AV_LOG_WARNING, "unsupported chunk:"PRI_GUID"\n", ARG_GUID(g)); |
492 |
|
493 |
url_fskip(pb, WTV_PAD8(len) - consumed); |
494 |
} |
495 |
return AVERROR_EOF;
|
496 |
} |
497 |
|
498 |
#define WTV_CHUNK_START 0x40000 |
499 |
|
500 |
static int read_header(AVFormatContext *s, AVFormatParameters *ap) |
501 |
{ |
502 |
ByteIOContext *pb = s->pb; |
503 |
int ret;
|
504 |
|
505 |
url_fseek(pb, WTV_CHUNK_START, SEEK_SET); |
506 |
ret = parse_chunks(s, SEEK_TO_DATA, 0, 0); |
507 |
if (ret < 0) |
508 |
return ret;
|
509 |
|
510 |
url_fseek(pb, -32, SEEK_CUR);
|
511 |
return 0; |
512 |
} |
513 |
|
514 |
static int read_packet(AVFormatContext *s, AVPacket *pkt) |
515 |
{ |
516 |
WtvContext *wtv = s->priv_data; |
517 |
ByteIOContext *pb = s->pb; |
518 |
int stream_index, len, ret;
|
519 |
|
520 |
stream_index = parse_chunks(s, SEEK_TO_DATA, 0, &len);
|
521 |
if (stream_index < 0) |
522 |
return stream_index;
|
523 |
|
524 |
ret = av_get_packet(pb, pkt, len - 32);
|
525 |
if (ret < 0) |
526 |
return ret;
|
527 |
pkt->stream_index = stream_index; |
528 |
pkt->pts = wtv->pts; |
529 |
url_fskip(pb, WTV_PAD8(len) - len); |
530 |
return 0; |
531 |
} |
532 |
|
533 |
static int read_seek2(AVFormatContext *s, int stream_index, |
534 |
int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
|
535 |
{ |
536 |
WtvContext *wtv = s->priv_data; |
537 |
ByteIOContext *pb = s->pb; |
538 |
AVStream *st; |
539 |
int i;
|
540 |
|
541 |
if (stream_index < 0) { |
542 |
stream_index = av_find_default_stream_index(s); |
543 |
if (stream_index < 0) |
544 |
return -1; |
545 |
} |
546 |
st = s->streams[stream_index]; |
547 |
|
548 |
if ((flags & AVSEEK_FLAG_FRAME)) {
|
549 |
return AVERROR_NOTSUPP;
|
550 |
} else if ((flags & AVSEEK_FLAG_BYTE)) { |
551 |
if (ts < url_ftell(pb)) {
|
552 |
for (i = st->nb_index_entries - 1; i >= 0; i--) { |
553 |
if (st->index_entries[i].pos <= ts) {
|
554 |
wtv->pts = st->index_entries[i].timestamp; |
555 |
url_fseek(pb, st->index_entries[i].pos, SEEK_SET); |
556 |
break;
|
557 |
} |
558 |
} |
559 |
if (i < 0) { |
560 |
wtv->pts = 0;
|
561 |
url_fseek(pb, WTV_CHUNK_START, SEEK_SET); |
562 |
} |
563 |
} |
564 |
if (parse_chunks(s, SEEK_TO_BYTE, ts, 0) < 0) |
565 |
return AVERROR(ERANGE);
|
566 |
return 0; |
567 |
} else {
|
568 |
ts *= 10;
|
569 |
i = av_index_search_timestamp(st, ts, flags); |
570 |
if (i < 0) { |
571 |
if (st->nb_index_entries > 0) { |
572 |
wtv->pts = st->index_entries[st->nb_index_entries - 1].timestamp;
|
573 |
url_fseek(pb, st->index_entries[st->nb_index_entries - 1].pos, SEEK_SET);
|
574 |
} else {
|
575 |
wtv->pts = 0;
|
576 |
url_fseek(pb, WTV_CHUNK_START, SEEK_SET); |
577 |
} |
578 |
if (parse_chunks(s, SEEK_TO_PTS, ts, 0) < 0) |
579 |
return AVERROR(ERANGE);
|
580 |
return 0; |
581 |
} |
582 |
wtv->pts = st->index_entries[i].timestamp; |
583 |
url_fseek(pb, st->index_entries[i].pos, SEEK_SET); |
584 |
return 0; |
585 |
} |
586 |
} |
587 |
|
588 |
AVInputFormat wtv_demuxer = { |
589 |
.name = "wtv",
|
590 |
.long_name = NULL_IF_CONFIG_SMALL("Windows Television (WTV)"),
|
591 |
.priv_data_size = sizeof(WtvContext),
|
592 |
.read_probe = read_probe, |
593 |
.read_header = read_header, |
594 |
.read_packet = read_packet, |
595 |
.read_seek2 = read_seek2, |
596 |
.flags = AVFMT_SHOW_IDS|AVFMT_TS_DISCONT, |
597 |
}; |