#include "libavcodec/bytestream.h"
#include "avformat.h"
#include "internal.h"
Go to the source code of this file.
Defines | |
#define | HEADER_SIZE 24 |
Functions | |
static int | msnwc_tcp_probe (AVProbeData *p) |
static int | msnwc_tcp_read_header (AVFormatContext *ctx, AVFormatParameters *ap) |
static int | msnwc_tcp_read_packet (AVFormatContext *ctx, AVPacket *pkt) |
Variables | |
AVInputFormat | ff_msnwc_tcp_demuxer |
#define HEADER_SIZE 24 |
Definition at line 25 of file msnwc_tcp.c.
static int msnwc_tcp_probe | ( | AVProbeData * | p | ) | [static] |
Definition at line 39 of file msnwc_tcp.c.
static int msnwc_tcp_read_header | ( | AVFormatContext * | ctx, | |
AVFormatParameters * | ap | |||
) | [static] |
Definition at line 73 of file msnwc_tcp.c.
static int msnwc_tcp_read_packet | ( | AVFormatContext * | ctx, | |
AVPacket * | pkt | |||
) | [static] |
Definition at line 102 of file msnwc_tcp.c.
Initial value:
{ .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, }
Definition at line 134 of file msnwc_tcp.c.