Audacity 3.2.0
|
#include <AVCodecFunctions.h>
Public Attributes | |
FFMPegVersion | AVCodecVersion |
void(* | av_packet_ref )(AVPacket *dst, const AVPacket *src) = nullptr |
void(* | av_packet_unref )(AVPacket *pkt) = nullptr |
void(* | av_init_packet )(AVPacket *pkt) = nullptr |
AVCodec *(* | avcodec_find_encoder )(AVCodecIDFwd id) = nullptr |
AVCodec *(* | avcodec_find_encoder_by_name )(const char *name) = nullptr |
AVCodec *(* | avcodec_find_decoder )(AVCodecIDFwd id) = nullptr |
const char *(* | avcodec_get_name )(AVCodecIDFwd id) = nullptr |
int(* | avcodec_open2 )(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options) = nullptr |
int(* | avcodec_is_open )(AVCodecContext *avctx) = nullptr |
int(* | avcodec_close )(AVCodecContext *avctx) = nullptr |
AVCodecContext *(* | avcodec_alloc_context3 )(const AVCodec *codec) = nullptr |
int(* | av_codec_is_encoder )(const AVCodec *codec) = nullptr |
int(* | avcodec_fill_audio_frame )(AVFrame *frame, int nb_channels, AVSampleFormatFwd sample_fmt, const uint8_t *buf, int buf_size, int align) = nullptr |
AVPacket *(* | av_packet_alloc )() = nullptr |
void(* | av_packet_free )(AVPacket **pkt) = nullptr |
void(* | avcodec_free_context )(AVCodecContext **avctx) = nullptr |
int(* | avcodec_parameters_to_context )(AVCodecContext *codec, const AVCodecParameters *par) = nullptr |
int(* | avcodec_parameters_from_context )(AVCodecParameters *par, const AVCodecContext *codec) = nullptr |
int(* | avcodec_decode_audio4 )(AVCodecContext *avctx, AVFrame *frame, int *got_output, const AVPacket *avpkt) = nullptr |
int(* | avcodec_encode_audio2 )(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_output) = nullptr |
void(* | avcodec_register_all )(void) = nullptr |
AVCodec *(* | av_codec_next )(const AVCodec *c) = nullptr |
const AVCodec *(* | av_codec_iterate )(void **opaque) = nullptr |
int(* | avcodec_send_packet )(AVCodecContext *avctx, const AVPacket *avpkt) = nullptr |
int(* | avcodec_receive_frame )(AVCodecContext *avctx, AVFrame *frame) = nullptr |
int(* | avcodec_send_frame )(AVCodecContext *avctx, const AVFrame *frame) = nullptr |
int(* | avcodec_receive_packet )(AVCodecContext *avctx, AVPacket *avpkt) = nullptr |
Definition at line 19 of file AVCodecFunctions.h.
int(* AVCodecFunctions::av_codec_is_encoder) (const AVCodec *codec) = nullptr |
Definition at line 34 of file AVCodecFunctions.h.
const AVCodec *(* AVCodecFunctions::av_codec_iterate) (void **opaque) = nullptr |
Definition at line 47 of file AVCodecFunctions.h.
Referenced by FFmpegFunctions::FillCodecsList().
Definition at line 46 of file AVCodecFunctions.h.
Referenced by FFmpegFunctions::FillCodecsList().
void(* AVCodecFunctions::av_init_packet) (AVPacket *pkt) = nullptr |
Definition at line 25 of file AVCodecFunctions.h.
AVPacket *(* AVCodecFunctions::av_packet_alloc) () = nullptr |
Definition at line 38 of file AVCodecFunctions.h.
void(* AVCodecFunctions::av_packet_free) (AVPacket **pkt) = nullptr |
Definition at line 39 of file AVCodecFunctions.h.
Referenced by AVPacketWrapper::~AVPacketWrapper().
Definition at line 23 of file AVCodecFunctions.h.
void(* AVCodecFunctions::av_packet_unref) (AVPacket *pkt) = nullptr |
Definition at line 24 of file AVCodecFunctions.h.
Referenced by AVPacketWrapper::~AVPacketWrapper().
AVCodecContext *(* AVCodecFunctions::avcodec_alloc_context3) (const AVCodec *codec) = nullptr |
Definition at line 33 of file AVCodecFunctions.h.
int(* AVCodecFunctions::avcodec_close) (AVCodecContext *avctx) = nullptr |
Definition at line 32 of file AVCodecFunctions.h.
Referenced by AVCodecContextWrapper::~AVCodecContextWrapper().
int(* AVCodecFunctions::avcodec_decode_audio4) (AVCodecContext *avctx, AVFrame *frame, int *got_output, const AVPacket *avpkt) = nullptr |
Definition at line 43 of file AVCodecFunctions.h.
Referenced by AVCodecContextWrapper::DecodeAudioPacket().
int(* AVCodecFunctions::avcodec_encode_audio2) (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_output) = nullptr |
Definition at line 44 of file AVCodecFunctions.h.
int(* AVCodecFunctions::avcodec_fill_audio_frame) (AVFrame *frame, int nb_channels, AVSampleFormatFwd sample_fmt, const uint8_t *buf, int buf_size, int align) = nullptr |
Definition at line 35 of file AVCodecFunctions.h.
AVCodec *(* AVCodecFunctions::avcodec_find_decoder) (AVCodecIDFwd id) = nullptr |
Definition at line 28 of file AVCodecFunctions.h.
Referenced by FFmpegFunctions::CreateDecoder().
AVCodec *(* AVCodecFunctions::avcodec_find_encoder) (AVCodecIDFwd id) = nullptr |
Definition at line 26 of file AVCodecFunctions.h.
Referenced by FFmpegFunctions::CreateEncoder().
Definition at line 27 of file AVCodecFunctions.h.
Referenced by FFmpegFunctions::CreateEncoder().
void(* AVCodecFunctions::avcodec_free_context) (AVCodecContext **avctx) = nullptr |
Definition at line 40 of file AVCodecFunctions.h.
Referenced by AVCodecContextWrapper::~AVCodecContextWrapper().
const char *(* AVCodecFunctions::avcodec_get_name) (AVCodecIDFwd id) = nullptr |
Definition at line 29 of file AVCodecFunctions.h.
int(* AVCodecFunctions::avcodec_is_open) (AVCodecContext *avctx) = nullptr |
Definition at line 31 of file AVCodecFunctions.h.
Referenced by AVCodecContextWrapper::~AVCodecContextWrapper().
int(* AVCodecFunctions::avcodec_open2) (AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options) = nullptr |
Definition at line 30 of file AVCodecFunctions.h.
int(* AVCodecFunctions::avcodec_parameters_from_context) (AVCodecParameters *par, const AVCodecContext *codec) = nullptr |
Definition at line 42 of file AVCodecFunctions.h.
int(* AVCodecFunctions::avcodec_parameters_to_context) (AVCodecContext *codec, const AVCodecParameters *par) = nullptr |
Definition at line 41 of file AVCodecFunctions.h.
int(* AVCodecFunctions::avcodec_receive_frame) (AVCodecContext *avctx, AVFrame *frame) = nullptr |
Definition at line 51 of file AVCodecFunctions.h.
Referenced by AVCodecContextWrapper::DecodeAudioPacket().
int(* AVCodecFunctions::avcodec_receive_packet) (AVCodecContext *avctx, AVPacket *avpkt) = nullptr |
Definition at line 53 of file AVCodecFunctions.h.
void(* AVCodecFunctions::avcodec_register_all) (void) = nullptr |
Definition at line 45 of file AVCodecFunctions.h.
Referenced by FFmpegFunctions::Private::Load().
int(* AVCodecFunctions::avcodec_send_frame) (AVCodecContext *avctx, const AVFrame *frame) = nullptr |
Definition at line 52 of file AVCodecFunctions.h.
int(* AVCodecFunctions::avcodec_send_packet) (AVCodecContext *avctx, const AVPacket *avpkt) = nullptr |
Definition at line 50 of file AVCodecFunctions.h.
Referenced by AVCodecContextWrapper::DecodeAudioPacket().
FFMPegVersion AVCodecFunctions::AVCodecVersion |
Definition at line 21 of file AVCodecFunctions.h.
Referenced by FFmpegFunctions::Private::Load(), and LoadAVCodecFunctions().