#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 | 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:
{ "libvo_aacenc", CODEC_TYPE_AUDIO, CODEC_ID_AAC, sizeof(AACContext), aac_encode_init, aac_encode_frame, aac_encode_close, NULL, .sample_fmts = (const enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE}, .long_name = NULL_IF_CONFIG_SMALL("Android VisualOn AAC"), }
Definition at line 118 of file libvo-aacenc.c.