1 /*
2 * Copyright (C) 2008 Ramiro Polla
3 *
4 * This file is part of FFmpeg.
5 *
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.
10 *
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.
15 *
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
19 */
20
25
26 #define HEADER_SIZE 24
27
28 /*
29 * Header structure:
30 * uint16_t ss; // struct size
31 * uint16_t width; // frame width
32 * uint16_t height; // frame height
33 * uint16_t ff; // keyframe + some other info(???)
34 * uint32_t size; // size of data
35 * uint32_t fourcc; // ML20
36 * uint32_t u3; // ?
37 * uint32_t ts; // time
38 */
39
41 {
43
47 const uint8_t *bytestream = p->
buf +
i;
48
49 if (bytestream_get_le16(&bytestream) !=
HEADER_SIZE)
50 continue;
51 width = bytestream_get_le16(&bytestream);
52 height = bytestream_get_le16(&bytestream);
55 continue;
56 bytestream += 2; // keyframe
57 bytestream += 4; // size
58 fourcc = bytestream_get_le32(&bytestream);
60 continue;
61
63 if (
i < 14)
/* starts with SwitchBoard connection info */
65 else /* starts in the middle of stream */
67 } else {
69 }
70 }
71
72 return 0;
73 }
74
76 {
80
82 if (!st)
84
89
91
92 /* Some files start with "connected\r\n\r\n".
93 * So skip until we find the first byte of struct size */
95
99 }
100
101 return 0;
102 }
103
105 {
107 uint16_t keyframe;
108 uint32_t
size, timestamp;
110
111 avio_skip(pb, 1);
/* one byte has been read ahead */
119
122
125
126 avio_skip(pb, 1);
/* Read ahead one byte of struct size like read_header */
127
131
132 /* Some aMsn generated videos (or was it Mercury Messenger?) don't set
133 * this bit and rely on the codec to get keyframe information */
134 if (keyframe & 1)
136
138 }
139
141 .
p.
name =
"msnwctcp",
146 };