20 #include <fdk-aac/aacenc_lib.h>
44 {
"eld_sbr",
"Enable SBR for ELD (for SBR in other configurations, use the -profile parameter)", offsetof(
AACContext, eld_sbr),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1,
AV_OPT_FLAG_AUDIO_PARAM |
AV_OPT_FLAG_ENCODING_PARAM },
45 {
"signaling",
"SBR/PS signaling style", offsetof(
AACContext, signaling),
AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 2,
AV_OPT_FLAG_AUDIO_PARAM |
AV_OPT_FLAG_ENCODING_PARAM,
"signaling" },
46 {
"default",
"Choose signaling implicitly (explicit hierarchical by default, implicit if global header is disabled)", 0,
AV_OPT_TYPE_CONST, { .i64 = -1 }, 0, 0,
AV_OPT_FLAG_AUDIO_PARAM |
AV_OPT_FLAG_ENCODING_PARAM,
"signaling" },
48 {
"explicit_sbr",
"Explicit SBR, implicit PS signaling", 0,
AV_OPT_TYPE_CONST, { .i64 = 1 }, 0, 0,
AV_OPT_FLAG_AUDIO_PARAM |
AV_OPT_FLAG_ENCODING_PARAM,
"signaling" },
68 case AACENC_INVALID_HANDLE:
69 return "Invalid handle";
70 case AACENC_MEMORY_ERROR:
71 return "Memory allocation error";
72 case AACENC_UNSUPPORTED_PARAMETER:
73 return "Unsupported parameter";
74 case AACENC_INVALID_CONFIG:
75 return "Invalid config";
76 case AACENC_INIT_ERROR:
77 return "Initialization error";
78 case AACENC_INIT_AAC_ERROR:
79 return "AAC library initialization error";
80 case AACENC_INIT_SBR_ERROR:
81 return "SBR library initialization error";
82 case AACENC_INIT_TP_ERROR:
83 return "Transport library initialization error";
84 case AACENC_INIT_META_ERROR:
85 return "Metadata library initialization error";
86 case AACENC_ENCODE_ERROR:
87 return "Encoding error";
88 case AACENC_ENCODE_EOF:
91 return "Unknown error";
111 AACENC_InfoStruct info = { 0 };
115 int sce = 0, cpe = 0;
117 if ((err = aacEncOpen(&s->
handle, 0, avctx->
channels)) != AACENC_OK) {
126 if ((err = aacEncoder_SetParam(s->
handle, AACENC_AOT, aot)) != AACENC_OK) {
133 if ((err = aacEncoder_SetParam(s->
handle, AACENC_SBR_MODE,
141 if ((err = aacEncoder_SetParam(s->
handle, AACENC_SAMPLERATE,
149 case 1: mode = MODE_1; sce = 1; cpe = 0;
break;
150 case 2: mode = MODE_2; sce = 0; cpe = 1;
break;
151 case 3: mode = MODE_1_2; sce = 1; cpe = 1;
break;
152 case 4: mode = MODE_1_2_1; sce = 2; cpe = 1;
break;
153 case 5: mode = MODE_1_2_2; sce = 1; cpe = 2;
break;
154 case 6: mode = MODE_1_2_2_1; sce = 2; cpe = 2;
break;
157 #ifdef AACENCODER_LIB_VL0
162 mode = MODE_7_1_REAR_SURROUND;
165 mode = MODE_7_1_FRONT_CENTER;
171 "Unsupported number of channels %d\n", avctx->
channels);
175 if ((err = aacEncoder_SetParam(s->
handle, AACENC_CHANNELMODE,
176 mode)) != AACENC_OK) {
178 "Unable to set channel mode %d: %s\n", mode,
aac_get_error(err));
182 if ((err = aacEncoder_SetParam(s->
handle, AACENC_CHANNELORDER,
185 "Unable to set wav channel order %d: %s\n",
194 "VBR quality %d out of range, should be 1-5\n", mode);
195 mode = av_clip(mode, 1, 5);
198 "Note, the VBR setting is unsupported and only works with "
199 "some parameter combinations\n");
200 if ((err = aacEncoder_SetParam(s->
handle, AACENC_BITRATEMODE,
201 mode)) != AACENC_OK) {
219 if ((err = aacEncoder_SetParam(s->
handle, AACENC_BITRATE,
229 if ((err = aacEncoder_SetParam(s->
handle, AACENC_TRANSMUX,
237 if ((err = aacEncoder_SetParam(s->
handle, AACENC_HEADER_PERIOD,
251 if ((err = aacEncoder_SetParam(s->
handle, AACENC_SIGNALING_MODE,
258 if ((err = aacEncoder_SetParam(s->
handle, AACENC_AFTERBURNER,
271 if ((err = aacEncoder_SetParam(s->
handle, AACENC_BANDWIDTH,
272 avctx->
cutoff)) != AACENC_OK) {
285 if ((err = aacEncInfo(s->
handle, &info)) != AACENC_OK) {
304 memcpy(avctx->
extradata, info.confBuf, info.confSize);
316 AACENC_BufDesc in_buf = { 0 }, out_buf = { 0 };
317 AACENC_InArgs in_args = { 0 };
318 AACENC_OutArgs out_args = { 0 };
319 int in_buffer_identifier = IN_AUDIO_DATA;
320 int in_buffer_size, in_buffer_element_size;
321 int out_buffer_identifier = OUT_BITSTREAM_DATA;
322 int out_buffer_size, out_buffer_element_size;
323 void *in_ptr, *out_ptr;
329 in_args.numInSamples = -1;
331 in_ptr = frame->
data[0];
333 in_buffer_element_size = 2;
337 in_buf.bufs = &in_ptr;
338 in_buf.bufferIdentifiers = &in_buffer_identifier;
339 in_buf.bufSizes = &in_buffer_size;
340 in_buf.bufElSizes = &in_buffer_element_size;
351 out_ptr = avpkt->
data;
352 out_buffer_size = avpkt->
size;
353 out_buffer_element_size = 1;
355 out_buf.bufs = &out_ptr;
356 out_buf.bufferIdentifiers = &out_buffer_identifier;
357 out_buf.bufSizes = &out_buffer_size;
358 out_buf.bufElSizes = &out_buffer_element_size;
360 if ((err = aacEncEncode(s->
handle, &in_buf, &out_buf, &in_args,
361 &out_args)) != AACENC_OK) {
362 if (!frame && err == AACENC_ENCODE_EOF)
369 if (!out_args.numOutBytes)
376 avpkt->
size = out_args.numOutBytes;
402 #ifdef AACENCODER_LIB_VL0
410 96000, 88200, 64000, 48000, 44100, 32000,
411 24000, 22050, 16000, 12000, 11025, 8000, 0
415 .
name =
"libfdk_aac",
431 .wrapper_name =
"libfdk",
void ff_af_queue_remove(AudioFrameQueue *afq, int nb_samples, int64_t *pts, int64_t *duration)
Remove frame(s) from the queue.
#define AV_CH_LAYOUT_7POINT1
This structure describes decoded (raw) audio or video data.
static const int aac_sample_rates[]
#define AV_LOG_WARNING
Something somehow does not look correct.
int64_t bit_rate
the average bitrate
#define AV_CH_LAYOUT_SURROUND
#define LIBAVUTIL_VERSION_INT
static av_cold int init(AVCodecContext *avctx)
#define FF_PROFILE_MPEG2_AAC_HE
#define AV_OPT_FLAG_AUDIO_PARAM
const char * av_default_item_name(void *ptr)
Return the context name.
#define AV_CH_LAYOUT_4POINT0
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
#define AV_CH_LAYOUT_STEREO
#define FF_PROFILE_AAC_HE_V2
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int64_t min_size)
Check AVPacket size and/or allocate data.
static int aac_encode_close(AVCodecContext *avctx)
AVCodec ff_libfdk_aac_encoder
av_cold void ff_af_queue_init(AVCodecContext *avctx, AudioFrameQueue *afq)
Initialize AudioFrameQueue.
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
static const AVClass aac_enc_class
#define FF_PROFILE_AAC_LD
#define AV_OPT_FLAG_ENCODING_PARAM
a generic parameter which can be set by the user for muxing or encoding
static av_cold int aac_encode_init(AVCodecContext *avctx)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
int initial_padding
Audio only.
int flags
AV_CODEC_FLAG_*.
const char * name
Name of the codec implementation.
int ff_af_queue_add(AudioFrameQueue *afq, const AVFrame *f)
Add a frame to the queue.
#define FF_PROFILE_AAC_ELD
uint64_t channel_layout
Audio channel layout.
audio channel layout utility functions
#define AV_CODEC_FLAG_QSCALE
Use fixed qscale.
#define AV_CODEC_CAP_SMALL_LAST_FRAME
Codec can be fed a final frame with a smaller size.
#define FF_PROFILE_AAC_LOW
#define FF_PROFILE_UNKNOWN
#define AV_CH_LAYOUT_5POINT1_BACK
static void error(const char *err)
int frame_size
Number of samples per channel in an audio frame.
Libavcodec external API header.
AVSampleFormat
Audio sample formats.
int sample_rate
samples per second
main external API structure.
static const AVCodecDefault aac_encode_defaults[]
Describe the class of an AVClass context structure.
#define AV_CH_LAYOUT_7POINT1_WIDE_BACK
static const AVProfile profiles[]
#define AV_CH_LAYOUT_5POINT0_BACK
int global_quality
Global quality for codecs which cannot change it per frame.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
#define AV_CODEC_FLAG_GLOBAL_HEADER
Place global headers in extradata instead of every keyframe.
common internal api header.
common internal and external API header
static const AVOption aac_enc_options[]
static int aac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
int cutoff
Audio cutoff bandwidth (0 means "automatic")
int channels
number of audio channels
static const uint64_t aac_channel_layout[]
void ff_af_queue_close(AudioFrameQueue *afq)
Close AudioFrameQueue.
#define FF_PROFILE_AAC_HE
static enum AVSampleFormat sample_fmts[]
#define AV_CH_LAYOUT_MONO
This structure stores compressed data.
mode
Use these values in ebur128_init (or'ed).
int nb_samples
number of audio samples (per channel) described by this frame
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
static const char * aac_get_error(AACENC_ERROR err)