ffmpeg / libavformat / msnwc_tcp.c @ 6cc7f139
History | View | Annotate | Download (3.94 KB)
1 | 0f3444e1 | Ramiro Polla | /*
|
---|---|---|---|
2 | cbf5d22d | Ramiro Polla | * Copyright (C) 2008 Ramiro Polla
|
3 | 0f3444e1 | Ramiro Polla | *
|
4 | 2912e87a | Mans Rullgard | * This file is part of Libav.
|
5 | 0f3444e1 | Ramiro Polla | *
|
6 | 2912e87a | Mans Rullgard | * Libav is free software; you can redistribute it and/or
|
7 | 0f3444e1 | Ramiro Polla | * 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 | 2912e87a | Mans Rullgard | * Libav is distributed in the hope that it will be useful,
|
12 | 0f3444e1 | Ramiro Polla | * 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 | 2912e87a | Mans Rullgard | * License along with Libav; if not, write to the Free Software
|
18 | 0f3444e1 | Ramiro Polla | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
19 | */
|
||
20 | |||
21 | 245976da | Diego Biurrun | #include "libavcodec/bytestream.h" |
22 | 0f3444e1 | Ramiro Polla | #include "avformat.h" |
23 | |||
24 | #define HEADER_SIZE 24 |
||
25 | |||
26 | /*
|
||
27 | * Header structure:
|
||
28 | * uint16_t ss; // struct size
|
||
29 | * uint16_t width; // frame width
|
||
30 | * uint16_t height; // frame height
|
||
31 | * uint16_t ff; // keyframe + some other info(???)
|
||
32 | * uint32_t size; // size of data
|
||
33 | * uint32_t fourcc; // ML20
|
||
34 | * uint32_t u3; // ?
|
||
35 | * uint32_t ts; // time
|
||
36 | */
|
||
37 | |||
38 | static int msnwc_tcp_probe(AVProbeData *p) |
||
39 | { |
||
40 | int i;
|
||
41 | |||
42 | for(i = 0 ; i + HEADER_SIZE <= p->buf_size ; i++) { |
||
43 | uint16_t width, height; |
||
44 | uint32_t fourcc; |
||
45 | const uint8_t *bytestream = p->buf+i;
|
||
46 | |||
47 | if(bytestream_get_le16(&bytestream) != HEADER_SIZE)
|
||
48 | continue;
|
||
49 | width = bytestream_get_le16(&bytestream); |
||
50 | height = bytestream_get_le16(&bytestream); |
||
51 | if(!(width==320 && height==240) && !(width==160 && height==120)) |
||
52 | continue;
|
||
53 | bytestream += 2; // keyframe |
||
54 | bytestream += 4; // size |
||
55 | fourcc = bytestream_get_le32(&bytestream); |
||
56 | if(fourcc != MKTAG('M', 'L', '2', '0')) |
||
57 | continue;
|
||
58 | |||
59 | if(i) {
|
||
60 | if(i < 14) /* starts with SwitchBoard connection info */ |
||
61 | return AVPROBE_SCORE_MAX / 2; |
||
62 | else /* starts in the middle of stream */ |
||
63 | return AVPROBE_SCORE_MAX / 3; |
||
64 | } else {
|
||
65 | return AVPROBE_SCORE_MAX;
|
||
66 | } |
||
67 | } |
||
68 | |||
69 | return -1; |
||
70 | } |
||
71 | |||
72 | static int msnwc_tcp_read_header(AVFormatContext *ctx, AVFormatParameters *ap) |
||
73 | { |
||
74 | ae628ec1 | Anton Khirnov | AVIOContext *pb = ctx->pb; |
75 | 0f3444e1 | Ramiro Polla | AVCodecContext *codec; |
76 | AVStream *st; |
||
77 | |||
78 | st = av_new_stream(ctx, 0);
|
||
79 | if(!st)
|
||
80 | 2874c81c | Stefano Sabatini | return AVERROR(ENOMEM);
|
81 | 0f3444e1 | Ramiro Polla | |
82 | codec = st->codec; |
||
83 | 72415b2a | Stefano Sabatini | codec->codec_type = AVMEDIA_TYPE_VIDEO; |
84 | 0f3444e1 | Ramiro Polla | codec->codec_id = CODEC_ID_MIMIC; |
85 | codec->codec_tag = MKTAG('M', 'L', '2', '0'); |
||
86 | |||
87 | av_set_pts_info(st, 32, 1, 1000); |
||
88 | |||
89 | /* Some files start with "connected\r\n\r\n".
|
||
90 | * So skip until we find the first byte of struct size */
|
||
91 | 66e5b1df | Anton Khirnov | while(avio_r8(pb) != HEADER_SIZE && !pb->eof_reached);
|
92 | 0f3444e1 | Ramiro Polla | |
93 | 66e5b1df | Anton Khirnov | if(pb->eof_reached) {
|
94 | 0f3444e1 | Ramiro Polla | av_log(ctx, AV_LOG_ERROR, "Could not find valid start.");
|
95 | return -1; |
||
96 | } |
||
97 | |||
98 | return 0; |
||
99 | } |
||
100 | |||
101 | static int msnwc_tcp_read_packet(AVFormatContext *ctx, AVPacket *pkt) |
||
102 | { |
||
103 | ae628ec1 | Anton Khirnov | AVIOContext *pb = ctx->pb; |
104 | 0f3444e1 | Ramiro Polla | uint16_t keyframe; |
105 | uint32_t size, timestamp; |
||
106 | |||
107 | 45a8a02a | Anton Khirnov | avio_skip(pb, 1); /* one byte has been read ahead */ |
108 | avio_skip(pb, 2);
|
||
109 | avio_skip(pb, 2);
|
||
110 | b7effd4e | Anton Khirnov | keyframe = avio_rl16(pb); |
111 | size = avio_rl32(pb); |
||
112 | 45a8a02a | Anton Khirnov | avio_skip(pb, 4);
|
113 | avio_skip(pb, 4);
|
||
114 | b7effd4e | Anton Khirnov | timestamp = avio_rl32(pb); |
115 | 0f3444e1 | Ramiro Polla | |
116 | if(!size || av_get_packet(pb, pkt, size) != size)
|
||
117 | return -1; |
||
118 | |||
119 | 45a8a02a | Anton Khirnov | avio_skip(pb, 1); /* Read ahead one byte of struct size like read_header */ |
120 | 0f3444e1 | Ramiro Polla | |
121 | pkt->pts = timestamp; |
||
122 | pkt->dts = timestamp; |
||
123 | pkt->stream_index = 0;
|
||
124 | |||
125 | /* Some aMsn generated videos (or was it Mercury Messenger?) don't set
|
||
126 | * this bit and rely on the codec to get keyframe information */
|
||
127 | if(keyframe&1) |
||
128 | cc947f04 | Jean-Daniel Dupas | pkt->flags |= AV_PKT_FLAG_KEY; |
129 | 0f3444e1 | Ramiro Polla | |
130 | return HEADER_SIZE + size;
|
||
131 | } |
||
132 | |||
133 | c6610a21 | Diego Elio Pettenò | AVInputFormat ff_msnwc_tcp_demuxer = { |
134 | 0f3444e1 | Ramiro Polla | "msnwctcp",
|
135 | bde15e74 | Stefano Sabatini | NULL_IF_CONFIG_SMALL("MSN TCP Webcam stream"),
|
136 | 0f3444e1 | Ramiro Polla | 0,
|
137 | msnwc_tcp_probe, |
||
138 | msnwc_tcp_read_header, |
||
139 | msnwc_tcp_read_packet, |
||
140 | }; |