FFmpeg
|
crypto.c File Reference
#include "avformat.h"
#include "libavutil/aes.h"
#include "libavutil/avstring.h"
#include "libavutil/opt.h"
#include "internal.h"
#include "url.h"
Include dependency graph for crypto.c:
Go to the source code of this file.
Data Structures | |
struct | CryptoContext |
Macros | |
#define | MAX_BUFFER_BLOCKS 150 |
#define | BLOCKSIZE 16 |
#define | OFFSET(x) offsetof(CryptoContext, x) |
#define | D AV_OPT_FLAG_DECODING_PARAM |
Functions | |
static int | crypto_open2 (URLContext *h, const char *uri, int flags, AVDictionary **options) |
static int | crypto_read (URLContext *h, uint8_t *buf, int size) |
static int | crypto_close (URLContext *h) |
Variables | |
static const AVOption | options [] |
static const AVClass | crypto_class |
URLProtocol | ff_crypto_protocol |
Macro Definition Documentation
#define BLOCKSIZE 16 |
Definition at line 30 of file crypto.c.
Referenced by crypto_open2(), and crypto_read().
#define D AV_OPT_FLAG_DECODING_PARAM |
#define OFFSET | ( | x | ) | offsetof(CryptoContext, x) |
Function Documentation
|
static |
|
static |
|
static |
Variable Documentation
|
static |
Initial value:
= {
.class_name = "crypto",
.item_name = av_default_item_name,
.option = options,
.version = LIBAVUTIL_VERSION_INT,
}
URLProtocol ff_crypto_protocol |
Initial value:
= {
.name = "crypto",
.url_open2 = crypto_open2,
.url_read = crypto_read,
.url_close = crypto_close,
.priv_data_size = sizeof(CryptoContext),
.priv_data_class = &crypto_class,
}
Definition: mxf.h:40
static int crypto_open2(URLContext *h, const char *uri, int flags, AVDictionary **options)
Definition: crypto.c:62
Generated on Mon Nov 18 2024 06:52:05 for FFmpeg by 1.8.11