msnwc_tcp.c 3.94 KB
Newer Older
1
/*
2
 * Copyright (C) 2008  Ramiro Polla
3
 *
4
 * This file is part of Libav.
5
 *
6
 * Libav is free software; you can redistribute it and/or
7 8 9 10
 * 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.
 *
11
 * Libav is distributed in the hope that it will be useful,
12 13 14 15 16
 * 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
17
 * License along with Libav; if not, write to the Free Software
18 19 20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

21
#include "libavcodec/bytestream.h"
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
#include "avformat.h"

#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;

    for(i = 0 ; i + HEADER_SIZE <= p->buf_size ; i++) {
        uint16_t width, height;
        uint32_t fourcc;
        const uint8_t *bytestream = p->buf+i;

        if(bytestream_get_le16(&bytestream) != HEADER_SIZE)
            continue;
        width  = bytestream_get_le16(&bytestream);
        height = bytestream_get_le16(&bytestream);
        if(!(width==320 && height==240) && !(width==160 && height==120))
            continue;
        bytestream += 2; // keyframe
        bytestream += 4; // size
        fourcc = bytestream_get_le32(&bytestream);
        if(fourcc != MKTAG('M', 'L', '2', '0'))
            continue;

        if(i) {
            if(i < 14)  /* starts with SwitchBoard connection info */
                return AVPROBE_SCORE_MAX / 2;
            else        /* starts in the middle of stream */
                return AVPROBE_SCORE_MAX / 3;
        } else {
            return AVPROBE_SCORE_MAX;
        }
    }

    return -1;
}

static int msnwc_tcp_read_header(AVFormatContext *ctx, AVFormatParameters *ap)
{
74
    AVIOContext *pb = ctx->pb;
75 76 77 78 79
    AVCodecContext *codec;
    AVStream *st;

    st = av_new_stream(ctx, 0);
    if(!st)
80
        return AVERROR(ENOMEM);
81 82

    codec = st->codec;
83
    codec->codec_type = AVMEDIA_TYPE_VIDEO;
84 85 86 87 88 89 90
    codec->codec_id = CODEC_ID_MIMIC;
    codec->codec_tag = MKTAG('M', 'L', '2', '0');

    av_set_pts_info(st, 32, 1, 1000);

    /* Some files start with "connected\r\n\r\n".
     * So skip until we find the first byte of struct size */
Anton Khirnov's avatar
Anton Khirnov committed
91
    while(avio_r8(pb) != HEADER_SIZE && !pb->eof_reached);
92

Anton Khirnov's avatar
Anton Khirnov committed
93
    if(pb->eof_reached) {
94 95 96 97 98 99 100 101 102
        av_log(ctx, AV_LOG_ERROR, "Could not find valid start.");
        return -1;
    }

    return 0;
}

static int msnwc_tcp_read_packet(AVFormatContext *ctx, AVPacket *pkt)
{
103
    AVIOContext *pb = ctx->pb;
104 105 106
    uint16_t keyframe;
    uint32_t size, timestamp;

107 108 109
    avio_skip(pb, 1); /* one byte has been read ahead */
    avio_skip(pb, 2);
    avio_skip(pb, 2);
110 111
    keyframe = avio_rl16(pb);
    size = avio_rl32(pb);
112 113
    avio_skip(pb, 4);
    avio_skip(pb, 4);
114
    timestamp = avio_rl32(pb);
115 116 117 118

    if(!size || av_get_packet(pb, pkt, size) != size)
        return -1;

119
    avio_skip(pb, 1); /* Read ahead one byte of struct size like read_header */
120 121 122 123 124 125 126 127

    pkt->pts = timestamp;
    pkt->dts = timestamp;
    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 */
    if(keyframe&1)
128
        pkt->flags |= AV_PKT_FLAG_KEY;
129 130 131 132

    return HEADER_SIZE + size;
}

133
AVInputFormat ff_msnwc_tcp_demuxer = {
134
    "msnwctcp",
135
    NULL_IF_CONFIG_SMALL("MSN TCP Webcam stream"),
136 137 138 139 140
    0,
    msnwc_tcp_probe,
    msnwc_tcp_read_header,
    msnwc_tcp_read_packet,
};