FFmpeg
|
#include "avformat.h"
#include "url.h"
#include "libavutil/avstring.h"
#include "libavutil/opt.h"
#include "libavutil/parseutils.h"
#include "network.h"
#include "os_support.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | TLSContext |
Macros | |
#define | OFFSET(x) offsetof(TLSContext, x) |
#define | D AV_OPT_FLAG_DECODING_PARAM |
#define | E AV_OPT_FLAG_ENCODING_PARAM |
Functions | |
static int | do_tls_poll (URLContext *h, int ret) |
static void | set_options (URLContext *h, const char *uri) |
static int | tls_open (URLContext *h, const char *uri, int flags) |
static int | tls_read (URLContext *h, uint8_t *buf, int size) |
static int | tls_write (URLContext *h, const uint8_t *buf, int size) |
static int | tls_close (URLContext *h) |
Variables | |
static const AVOption | options [] |
static const AVClass | tls_class |
URLProtocol | ff_tls_protocol |
#define OFFSET | ( | x | ) | offsetof(TLSContext, x) |
#define D AV_OPT_FLAG_DECODING_PARAM |
#define E AV_OPT_FLAG_ENCODING_PARAM |
|
static |
Definition at line 98 of file tls.c.
Referenced by tls_open(), tls_read(), and tls_write().
|
static |
Definition at line 141 of file tls.c.
Referenced by tls_open().
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
URLProtocol ff_tls_protocol |