FFmpeg
|
#include "avformat.h"
#include "libavutil/aes.h"
#include "libavutil/avstring.h"
#include "libavutil/opt.h"
#include "internal.h"
#include "url.h"
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 |
#define BLOCKSIZE 16 |
Definition at line 30 of file crypto.c.
Referenced by crypto_open2(), and crypto_read().
#define OFFSET | ( | x | ) | offsetof(CryptoContext, x) |
#define D AV_OPT_FLAG_DECODING_PARAM |
|
static |
|
static |
|
static |
|
static |
|
static |
URLProtocol ff_crypto_protocol |