sapdec.c File Reference
#include "avformat.h"
#include "libavutil/avstring.h"
#include "libavutil/intreadwrite.h"
#include "network.h"
#include "os_support.h"
#include "internal.h"
#include "avio_internal.h"
#include "url.h"
#include <sys/time.h>

Go to the source code of this file.

Data Structures

struct  SAPState

Macros

#define MIME   "application/sdp"

Functions

static int sap_probe (AVProbeData *p)
static int sap_read_close (AVFormatContext *s)
static int sap_read_header (AVFormatContext *s, AVFormatParameters *ap)
static int sap_fetch_packet (AVFormatContext *s, AVPacket *pkt)

Variables

AVInputFormat ff_sap_demuxer

Macro Definition Documentation

#define MIME   "application/sdp"

Referenced by sap_read_header().

Function Documentation

static int sap_fetch_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 185 of file sapdec.c.

static int sap_probe ( AVProbeData p)
static

Definition at line 44 of file sapdec.c.

static int sap_read_close ( AVFormatContext s)
static

Definition at line 51 of file sapdec.c.

Referenced by sap_read_header().

static int sap_read_header ( AVFormatContext s,
AVFormatParameters ap 
)
static

Definition at line 63 of file sapdec.c.

Variable Documentation

AVInputFormat ff_sap_demuxer
Initial value:
{
.name = "sap",
.long_name = NULL_IF_CONFIG_SMALL("SAP input format"),
.priv_data_size = sizeof(struct SAPState),
.read_header = sap_read_header,
.read_packet = sap_fetch_packet,
.read_close = sap_read_close,
.flags = AVFMT_NOFILE,
}

Definition at line 230 of file sapdec.c.