00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include "libavcodec/bytestream.h"
00022 #include "avformat.h"
00023
00024 #define HEADER_SIZE 24
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 static int msnwc_tcp_probe(AVProbeData *p)
00039 {
00040 int i;
00041
00042 for(i = 0 ; i + HEADER_SIZE <= p->buf_size ; i++) {
00043 uint16_t width, height;
00044 uint32_t fourcc;
00045 const uint8_t *bytestream = p->buf+i;
00046
00047 if(bytestream_get_le16(&bytestream) != HEADER_SIZE)
00048 continue;
00049 width = bytestream_get_le16(&bytestream);
00050 height = bytestream_get_le16(&bytestream);
00051 if(!(width==320 && height==240) && !(width==160 && height==120))
00052 continue;
00053 bytestream += 2;
00054 bytestream += 4;
00055 fourcc = bytestream_get_le32(&bytestream);
00056 if(fourcc != MKTAG('M', 'L', '2', '0'))
00057 continue;
00058
00059 if(i) {
00060 if(i < 14)
00061 return AVPROBE_SCORE_MAX / 2;
00062 else
00063 return AVPROBE_SCORE_MAX / 3;
00064 } else {
00065 return AVPROBE_SCORE_MAX;
00066 }
00067 }
00068
00069 return -1;
00070 }
00071
00072 static int msnwc_tcp_read_header(AVFormatContext *ctx, AVFormatParameters *ap)
00073 {
00074 ByteIOContext *pb = ctx->pb;
00075 AVCodecContext *codec;
00076 AVStream *st;
00077
00078 st = av_new_stream(ctx, 0);
00079 if(!st)
00080 return AVERROR_NOMEM;
00081
00082 codec = st->codec;
00083 codec->codec_type = CODEC_TYPE_VIDEO;
00084 codec->codec_id = CODEC_ID_MIMIC;
00085 codec->codec_tag = MKTAG('M', 'L', '2', '0');
00086
00087 av_set_pts_info(st, 32, 1, 1000);
00088
00089
00090
00091 while(get_byte(pb) != HEADER_SIZE && !url_feof(pb));
00092
00093 if(url_feof(pb)) {
00094 av_log(ctx, AV_LOG_ERROR, "Could not find valid start.");
00095 return -1;
00096 }
00097
00098 return 0;
00099 }
00100
00101 static int msnwc_tcp_read_packet(AVFormatContext *ctx, AVPacket *pkt)
00102 {
00103 ByteIOContext *pb = ctx->pb;
00104 uint16_t keyframe;
00105 uint32_t size, timestamp;
00106
00107 url_fskip(pb, 1);
00108 url_fskip(pb, 2);
00109 url_fskip(pb, 2);
00110 keyframe = get_le16(pb);
00111 size = get_le32(pb);
00112 url_fskip(pb, 4);
00113 url_fskip(pb, 4);
00114 timestamp = get_le32(pb);
00115
00116 if(!size || av_get_packet(pb, pkt, size) != size)
00117 return -1;
00118
00119 url_fskip(pb, 1);
00120
00121 pkt->pts = timestamp;
00122 pkt->dts = timestamp;
00123 pkt->stream_index = 0;
00124
00125
00126
00127 if(keyframe&1)
00128 pkt->flags |= PKT_FLAG_KEY;
00129
00130 return HEADER_SIZE + size;
00131 }
00132
00133 AVInputFormat msnwc_tcp_demuxer = {
00134 "msnwctcp",
00135 NULL_IF_CONFIG_SMALL("MSN TCP Webcam stream"),
00136 0,
00137 msnwc_tcp_probe,
00138 msnwc_tcp_read_header,
00139 msnwc_tcp_read_packet,
00140 };