#include <faac.h>
#include "avcodec.h"
#include "audio_frame_queue.h"
#include "internal.h"
#include "libavutil/audioconvert.h"
#include "libavutil/common.h"
Go to the source code of this file.
Data Structures | |
| struct | FaacAudioContext |
Defines | |
| #define | FAAC_DELAY_SAMPLES 1024 |
| #define | free please_use_av_free |
Functions | |
| static av_cold int | Faac_encode_close (AVCodecContext *avctx) |
| static av_cold int | Faac_encode_init (AVCodecContext *avctx) |
| static int | Faac_encode_frame (AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr) |
Variables | |
| static const int | channel_maps [][6] |
| static const AVProfile | profiles [] |
| static const uint64_t | faac_channel_layouts [] |
| AVCodec | ff_libfaac_encoder |
Definition in file libfaac.c.
| #define FAAC_DELAY_SAMPLES 1024 |
| #define free please_use_av_free |
| static av_cold int Faac_encode_close | ( | AVCodecContext * | avctx | ) | [static] |
| static int Faac_encode_frame | ( | AVCodecContext * | avctx, | |
| AVPacket * | avpkt, | |||
| const AVFrame * | frame, | |||
| int * | got_packet_ptr | |||
| ) | [static] |
| static av_cold int Faac_encode_init | ( | AVCodecContext * | avctx | ) | [static] |
const int channel_maps[][6] [static] |
Initial value:
{
{ 2, 0, 1 },
{ 2, 0, 1, 3 },
{ 2, 0, 1, 3, 4 },
{ 2, 0, 1, 4, 5, 3 },
}
Definition at line 60 of file libfaac.c.
Referenced by Faac_encode_init().
const uint64_t faac_channel_layouts[] [static] |
Initial value:
Initial value:
{
.name = "libfaac",
.type = AVMEDIA_TYPE_AUDIO,
.id = AV_CODEC_ID_AAC,
.priv_data_size = sizeof(FaacAudioContext),
.init = Faac_encode_init,
.encode2 = Faac_encode_frame,
.close = Faac_encode_close,
.capabilities = CODEC_CAP_SMALL_LAST_FRAME | CODEC_CAP_DELAY,
.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16,
AV_SAMPLE_FMT_NONE },
.long_name = NULL_IF_CONFIG_SMALL("libfaac AAC (Advanced Audio Coding)"),
.profiles = NULL_IF_CONFIG_SMALL(profiles),
.channel_layouts = faac_channel_layouts,
}
Initial value:
{
{ FF_PROFILE_AAC_MAIN, "Main" },
{ FF_PROFILE_AAC_LOW, "LC" },
{ FF_PROFILE_AAC_SSR, "SSR" },
{ FF_PROFILE_AAC_LTP, "LTP" },
{ FF_PROFILE_UNKNOWN },
}
1.5.8