#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"
Go to the source code of this file.
Data Structures | |
struct | SAPState |
Defines | |
#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) |
static int | sap_fetch_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
AVInputFormat | ff_sap_demuxer |
#define MIME "application/sdp" |
Referenced by sap_read_header().
static int sap_fetch_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
static int sap_probe | ( | AVProbeData * | p | ) | [static] |
static int sap_read_close | ( | AVFormatContext * | s | ) | [static] |
static int sap_read_header | ( | AVFormatContext * | s | ) | [static] |
Initial value:
{ .name = "sap", .long_name = NULL_IF_CONFIG_SMALL("SAP input"), .priv_data_size = sizeof(struct SAPState), .read_probe = sap_probe, .read_header = sap_read_header, .read_packet = sap_fetch_packet, .read_close = sap_read_close, .flags = AVFMT_NOFILE, }