srtpproto.c File Reference
#include "libavutil/opt.h"
#include "avformat.h"
#include "avio_internal.h"
#include "url.h"
#include "internal.h"
#include "rtpdec.h"
#include "srtp.h"
Include dependency graph for srtpproto.c:

Go to the source code of this file.

Data Structures

struct  SRTPProtoContext
 

Macros

#define D   AV_OPT_FLAG_DECODING_PARAM
 
#define E   AV_OPT_FLAG_ENCODING_PARAM
 

Typedefs

typedef struct SRTPProtoContext SRTPProtoContext
 

Functions

static int srtp_close (URLContext *h)
 
static int srtp_open (URLContext *h, const char *uri, int flags)
 
static int srtp_read (URLContext *h, uint8_t *buf, int size)
 
static int srtp_write (URLContext *h, const uint8_t *buf, int size)
 
static int srtp_get_file_handle (URLContext *h)
 
static int srtp_get_multi_file_handle (URLContext *h, int **handles, int *numhandles)
 

Variables

static const AVOption options []
 
static const AVClass srtp_context_class
 
URLProtocol ff_srtp_protocol
 

Macro Definition Documentation

Definition at line 40 of file srtpproto.c.

Definition at line 41 of file srtpproto.c.

Typedef Documentation

Function Documentation

static int srtp_close ( URLContext h)
static

Definition at line 57 of file srtpproto.c.

Referenced by srtp_open().

static int srtp_get_file_handle ( URLContext h)
static

Definition at line 121 of file srtpproto.c.

static int srtp_get_multi_file_handle ( URLContext h,
int **  handles,
int *  numhandles 
)
static

Definition at line 127 of file srtpproto.c.

static int srtp_open ( URLContext h,
const char *  uri,
int  flags 
)
static

Definition at line 67 of file srtpproto.c.

static int srtp_read ( URLContext h,
uint8_t buf,
int  size 
)
static

Definition at line 96 of file srtpproto.c.

static int srtp_write ( URLContext h,
const uint8_t buf,
int  size 
)
static

Definition at line 109 of file srtpproto.c.

Variable Documentation

URLProtocol ff_srtp_protocol
Initial value:
= {
.name = "srtp",
.url_open = srtp_open,
.url_read = srtp_read,
.url_write = srtp_write,
.url_close = srtp_close,
.url_get_file_handle = srtp_get_file_handle,
.url_get_multi_file_handle = srtp_get_multi_file_handle,
.priv_data_size = sizeof(SRTPProtoContext),
.priv_data_class = &srtp_context_class,
}
#define URL_PROTOCOL_FLAG_NETWORK
Definition: url.h:35
struct SRTPProtoContext SRTPProtoContext
static int srtp_get_file_handle(URLContext *h)
Definition: srtpproto.c:121
static int srtp_read(URLContext *h, uint8_t *buf, int size)
Definition: srtpproto.c:96
static const AVClass srtp_context_class
Definition: srtpproto.c:50
static int srtp_write(URLContext *h, const uint8_t *buf, int size)
Definition: srtpproto.c:109
static int srtp_open(URLContext *h, const char *uri, int flags)
Definition: srtpproto.c:67
static int srtp_get_multi_file_handle(URLContext *h, int **handles, int *numhandles)
Definition: srtpproto.c:127
static int flags
Definition: cpu.c:23
static int srtp_close(URLContext *h)
Definition: srtpproto.c:57

Definition at line 134 of file srtpproto.c.

const AVOption options[]
static
Initial value:
= {
{ "srtp_out_suite", "", offsetof(SRTPProtoContext, out_suite), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
{ "srtp_out_params", "", offsetof(SRTPProtoContext, out_params), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
{ "srtp_in_suite", "", offsetof(SRTPProtoContext, in_suite), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
{ "srtp_in_params", "", offsetof(SRTPProtoContext, in_params), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
{ NULL }
}
NULL
Definition: eval.c:55
#define E
Definition: srtpproto.c:41

Definition at line 42 of file srtpproto.c.

const AVClass srtp_context_class
static
Initial value:
= {
.class_name = "srtp",
.item_name = av_default_item_name,
.option = options,
}
av_default_item_name
LIBAVUTIL_VERSION_INT
Definition: eval.c:55
static const AVOption options[]
Definition: srtpproto.c:42

Definition at line 50 of file srtpproto.c.