#include <vo-aacenc/voAAC.h>
#include <vo-aacenc/cmnMemory.h>
#include "avcodec.h"
#include "mpeg4audio.h"
Go to the source code of this file.
Data Structures | |
struct | AACContext |
main AAC context More... | |
Functions | |
static av_cold int | aac_encode_init (AVCodecContext *avctx) |
static int | aac_encode_close (AVCodecContext *avctx) |
static int | aac_encode_frame (AVCodecContext *avctx, unsigned char *frame, int buf_size, void *data) |
Variables | |
AVCodec | ff_libvo_aacenc_encoder |
static int aac_encode_close | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 86 of file libvo-aacenc.c.
static int aac_encode_frame | ( | AVCodecContext * | avctx, | |
unsigned char * | frame, | |||
int | buf_size, | |||
void * | data | |||
) | [static] |
Definition at line 96 of file libvo-aacenc.c.
static av_cold int aac_encode_init | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 35 of file libvo-aacenc.c.
Initial value:
{ .name = "libvo_aacenc", .type = AVMEDIA_TYPE_AUDIO, .id = CODEC_ID_AAC, .priv_data_size = sizeof(AACContext), .init = aac_encode_init, .encode = aac_encode_frame, .close = aac_encode_close, .sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE}, .long_name = NULL_IF_CONFIG_SMALL("Android VisualOn AAC"), }
Definition at line 118 of file libvo-aacenc.c.