Files
FFmpeg/libavformat/msnwc_tcp.c
T

146 lines
4.2 KiB
C
Raw Normal View History

2008-03-18 19:54:47 +00:00
/*
2011-03-16 15:28:43 -03:00
* Copyright (C) 2008 Ramiro Polla
2008-03-18 19:54:47 +00:00
*
* This file is part of Libav.
2008-03-18 19:54:47 +00:00
*
* Libav is free software; you can redistribute it and/or
2008-03-18 19:54:47 +00:00
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* Libav is distributed in the hope that it will be useful,
2008-03-18 19:54:47 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Libav; if not, write to the Free Software
2008-03-18 19:54:47 +00:00
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavcodec/bytestream.h"
2008-03-18 19:54:47 +00:00
#include "avformat.h"
2011-11-29 19:28:15 +01:00
#include "internal.h"
2008-03-18 19:54:47 +00:00
#define HEADER_SIZE 24
/*
* Header structure:
* uint16_t ss; // struct size
* uint16_t width; // frame width
* uint16_t height; // frame height
* uint16_t ff; // keyframe + some other info(???)
* uint32_t size; // size of data
* uint32_t fourcc; // ML20
* uint32_t u3; // ?
* uint32_t ts; // time
*/
static int msnwc_tcp_probe(AVProbeData *p)
{
int i;
2015-11-01 04:07:44 +01:00
for (i = 0; i + HEADER_SIZE <= p->buf_size; i++) {
2008-03-18 19:54:47 +00:00
uint16_t width, height;
uint32_t fourcc;
2015-11-01 04:07:44 +01:00
const uint8_t *bytestream = p->buf + i;
2008-03-18 19:54:47 +00:00
2015-11-01 04:07:44 +01:00
if (bytestream_get_le16(&bytestream) != HEADER_SIZE)
2008-03-18 19:54:47 +00:00
continue;
width = bytestream_get_le16(&bytestream);
height = bytestream_get_le16(&bytestream);
2015-11-01 04:07:44 +01:00
if (!(width == 320 &&
height == 240) && !(width == 160 && height == 120))
2008-03-18 19:54:47 +00:00
continue;
bytestream += 2; // keyframe
bytestream += 4; // size
2015-11-01 04:07:44 +01:00
fourcc = bytestream_get_le32(&bytestream);
if (fourcc != MKTAG('M', 'L', '2', '0'))
2008-03-18 19:54:47 +00:00
continue;
2015-11-01 04:07:44 +01:00
if (i) {
if (i < 14) /* starts with SwitchBoard connection info */
2008-03-18 19:54:47 +00:00
return AVPROBE_SCORE_MAX / 2;
else /* starts in the middle of stream */
return AVPROBE_SCORE_MAX / 3;
} else {
return AVPROBE_SCORE_MAX;
}
}
2015-11-01 04:07:45 +01:00
return 0;
2008-03-18 19:54:47 +00:00
}
static int msnwc_tcp_read_header(AVFormatContext *ctx)
2008-03-18 19:54:47 +00:00
{
2011-02-20 11:04:12 +01:00
AVIOContext *pb = ctx->pb;
AVCodecParameters *par;
2008-03-18 19:54:47 +00:00
AVStream *st;
st = avformat_new_stream(ctx, NULL);
2015-11-01 04:07:44 +01:00
if (!st)
return AVERROR(ENOMEM);
2008-03-18 19:54:47 +00:00
par = st->codecpar;
par->codec_type = AVMEDIA_TYPE_VIDEO;
par->codec_id = AV_CODEC_ID_MIMIC;
par->codec_tag = MKTAG('M', 'L', '2', '0');
2008-03-18 19:54:47 +00:00
2011-11-29 19:28:15 +01:00
avpriv_set_pts_info(st, 32, 1, 1000);
2008-03-18 19:54:47 +00:00
/* Some files start with "connected\r\n\r\n".
* So skip until we find the first byte of struct size */
2015-11-01 04:07:44 +01:00
while (avio_r8(pb) != HEADER_SIZE && !pb->eof_reached) ;
2008-03-18 19:54:47 +00:00
2015-11-01 04:07:44 +01:00
if (pb->eof_reached) {
2008-03-18 19:54:47 +00:00
av_log(ctx, AV_LOG_ERROR, "Could not find valid start.");
2015-11-01 04:07:45 +01:00
return AVERROR_INVALIDDATA;
2008-03-18 19:54:47 +00:00
}
return 0;
}
static int msnwc_tcp_read_packet(AVFormatContext *ctx, AVPacket *pkt)
{
2011-02-20 11:04:12 +01:00
AVIOContext *pb = ctx->pb;
2008-03-18 19:54:47 +00:00
uint16_t keyframe;
uint32_t size, timestamp;
2015-11-01 04:07:43 +01:00
int ret;
2008-03-18 19:54:47 +00:00
avio_skip(pb, 1); /* one byte has been read ahead */
avio_skip(pb, 2);
avio_skip(pb, 2);
2011-02-21 16:43:01 +01:00
keyframe = avio_rl16(pb);
2015-11-01 04:07:44 +01:00
size = avio_rl32(pb);
avio_skip(pb, 4);
avio_skip(pb, 4);
2011-02-21 16:43:01 +01:00
timestamp = avio_rl32(pb);
2008-03-18 19:54:47 +00:00
2015-11-01 04:07:43 +01:00
if (!size)
return AVERROR_INVALIDDATA;
if ((ret = av_get_packet(pb, pkt, size)) < 0)
return ret;
2008-03-18 19:54:47 +00:00
avio_skip(pb, 1); /* Read ahead one byte of struct size like read_header */
2008-03-18 19:54:47 +00:00
2015-11-01 04:07:44 +01:00
pkt->pts = timestamp;
pkt->dts = timestamp;
2008-03-18 19:54:47 +00:00
pkt->stream_index = 0;
/* Some aMsn generated videos (or was it Mercury Messenger?) don't set
* this bit and rely on the codec to get keyframe information */
2015-11-01 04:07:44 +01:00
if (keyframe & 1)
pkt->flags |= AV_PKT_FLAG_KEY;
2008-03-18 19:54:47 +00:00
return HEADER_SIZE + size;
}
AVInputFormat ff_msnwc_tcp_demuxer = {
2015-11-01 04:07:44 +01:00
.name = "msnwctcp",
.long_name = NULL_IF_CONFIG_SMALL("MSN TCP Webcam stream"),
.read_probe = msnwc_tcp_probe,
.read_header = msnwc_tcp_read_header,
.read_packet = msnwc_tcp_read_packet,
2008-03-18 19:54:47 +00:00
};