#include "avcodec.h"
#include <aacplus.h>
Go to the source code of this file.
Data Structures | |
| struct | aacPlusAudioContext |
Defines | |
| #define | free please_use_av_free |
Functions | |
| static av_cold int | aacPlus_encode_init (AVCodecContext *avctx) |
| static int | aacPlus_encode_frame (AVCodecContext *avctx, unsigned char *frame, int buf_size, void *data) |
| static av_cold int | aacPlus_encode_close (AVCodecContext *avctx) |
Variables | |
| AVCodec | ff_libaacplus_encoder |
Definition in file libaacplus.c.
| #define free please_use_av_free |
| static av_cold int aacPlus_encode_close | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 113 of file libaacplus.c.
| static int aacPlus_encode_frame | ( | AVCodecContext * | avctx, | |
| unsigned char * | frame, | |||
| int | buf_size, | |||
| void * | data | |||
| ) | [static] |
Definition at line 98 of file libaacplus.c.
| static av_cold int aacPlus_encode_init | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 34 of file libaacplus.c.
Initial value:
{
"libaacplus",
AVMEDIA_TYPE_AUDIO,
CODEC_ID_AAC,
sizeof(aacPlusAudioContext),
aacPlus_encode_init,
aacPlus_encode_frame,
aacPlus_encode_close,
.sample_fmts = (const enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE},
.long_name = NULL_IF_CONFIG_SMALL("libaacplus AAC+ (Advanced Audio Codec with SBR+PS)"),
}
Definition at line 124 of file libaacplus.c.
1.5.8