FFmpeg
|
#include <opus.h>
#include <opus_multistream.h>
#include "libavutil/internal.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/ffmath.h"
#include "libavutil/opt.h"
#include "avcodec.h"
#include "codec_internal.h"
#include "decode.h"
#include "internal.h"
#include "mathops.h"
#include "libopus.h"
#include "vorbis_data.h"
Go to the source code of this file.
Data Structures | |
struct | libopus_context |
Macros | |
#define | OPUS_HEAD_SIZE 19 |
#define | MAX_FRAME_SIZE (960 * 6) |
#define | OFFSET(x) offsetof(struct libopus_context, x) |
#define | FLAGS AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_DECODING_PARAM |
Functions | |
static av_cold int | libopus_decode_init (AVCodecContext *avc) |
static av_cold int | libopus_decode_close (AVCodecContext *avc) |
static int | libopus_decode (AVCodecContext *avc, AVFrame *frame, int *got_frame_ptr, AVPacket *pkt) |
static void | libopus_flush (AVCodecContext *avc) |
Variables | |
static const AVOption | libopusdec_options [] |
static const AVClass | libopusdec_class |
const FFCodec | ff_libopus_decoder |
#define OPUS_HEAD_SIZE 19 |
Definition at line 50 of file libopusdec.c.
#define MAX_FRAME_SIZE (960 * 6) |
Definition at line 158 of file libopusdec.c.
#define OFFSET | ( | x | ) | offsetof(struct libopus_context, x) |
Definition at line 217 of file libopusdec.c.
#define FLAGS AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_DECODING_PARAM |
Definition at line 218 of file libopusdec.c.
|
static |
Definition at line 52 of file libopusdec.c.
|
static |
Definition at line 147 of file libopusdec.c.
|
static |
Definition at line 160 of file libopusdec.c.
|
static |
Definition at line 206 of file libopusdec.c.
|
static |
Definition at line 219 of file libopusdec.c.
|
static |
Definition at line 226 of file libopusdec.c.
const FFCodec ff_libopus_decoder |
Definition at line 234 of file libopusdec.c.