#include "avcodec.h"
#include <faac.h>
Go to the source code of this file.
Data Structures | |
| struct | FaacAudioContext |
Defines | |
| #define | free please_use_av_free |
Functions | |
| static av_cold int | Faac_encode_init (AVCodecContext *avctx) |
| static int | Faac_encode_frame (AVCodecContext *avctx, unsigned char *frame, int buf_size, void *data) |
| static av_cold int | Faac_encode_close (AVCodecContext *avctx) |
Variables | |
| AVCodec | libfaac_encoder |
Definition in file libfaac.c.
| #define free please_use_av_free |
Referenced by audio_decode_example(), audio_encode_example(), av_free(), Faac_encode_init(), main(), pgmyuv_save(), and video_encode_example().
| static av_cold int Faac_encode_close | ( | AVCodecContext * | avctx | ) | [static] |
| static int Faac_encode_frame | ( | AVCodecContext * | avctx, | |
| unsigned char * | frame, | |||
| int | buf_size, | |||
| void * | data | |||
| ) | [static] |
| static av_cold int Faac_encode_init | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{
"libfaac",
AVMEDIA_TYPE_AUDIO,
CODEC_ID_AAC,
sizeof(FaacAudioContext),
Faac_encode_init,
Faac_encode_frame,
Faac_encode_close,
.sample_fmts = (const enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE},
.long_name = NULL_IF_CONFIG_SMALL("libfaac AAC (Advanced Audio Codec)"),
}
1.5.8