Go to the documentation of this file.
20 #include <fdk-aac/aacenc_lib.h>
31 #ifdef AACENCODER_LIB_VL0
32 #define FDKENC_VER_AT_LEAST(vl0, vl1) \
33 ((AACENCODER_LIB_VL0 > vl0) || \
34 (AACENCODER_LIB_VL0 == vl0 && AACENCODER_LIB_VL1 >= vl1))
36 #define FDKENC_VER_AT_LEAST(vl0, vl1) 0
55 {
"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 },
56 #if FDKENC_VER_AT_LEAST(4, 0) // 4.0.0
59 {
"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" },
60 {
"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" },
62 {
"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" },
83 case AACENC_INVALID_HANDLE:
84 return "Invalid handle";
85 case AACENC_MEMORY_ERROR:
86 return "Memory allocation error";
87 case AACENC_UNSUPPORTED_PARAMETER:
88 return "Unsupported parameter";
89 case AACENC_INVALID_CONFIG:
90 return "Invalid config";
91 case AACENC_INIT_ERROR:
92 return "Initialization error";
93 case AACENC_INIT_AAC_ERROR:
94 return "AAC library initialization error";
95 case AACENC_INIT_SBR_ERROR:
96 return "SBR library initialization error";
97 case AACENC_INIT_TP_ERROR:
98 return "Transport library initialization error";
99 case AACENC_INIT_META_ERROR:
100 return "Metadata library initialization error";
101 case AACENC_ENCODE_ERROR:
102 return "Encoding error";
103 case AACENC_ENCODE_EOF:
104 return "End of file";
106 return "Unknown error";
115 aacEncClose(&
s->handle);
125 AACENC_InfoStruct
info = { 0 };
129 int sce = 0, cpe = 0;
140 if ((err = aacEncoder_SetParam(
s->handle, AACENC_AOT, aot)) != AACENC_OK) {
147 if ((err = aacEncoder_SetParam(
s->handle, AACENC_SBR_MODE,
155 if ((err = aacEncoder_SetParam(
s->handle, AACENC_SAMPLERATE,
163 case 1:
mode = MODE_1; sce = 1; cpe = 0;
break;
165 #if FDKENC_VER_AT_LEAST(4, 0) // 4.0.0
168 if ((err = aacEncoder_SetParam(
s->handle, AACENC_CHANNELMODE,
169 128)) != AACENC_OK) {
186 case 3:
mode = MODE_1_2; sce = 1; cpe = 1;
break;
187 case 4:
mode = MODE_1_2_1; sce = 2; cpe = 1;
break;
188 case 5:
mode = MODE_1_2_2; sce = 1; cpe = 2;
break;
189 case 6:
mode = MODE_1_2_2_1; sce = 2; cpe = 2;
break;
190 #if FDKENC_VER_AT_LEAST(4, 0) // 4.0.0
191 case 7:
mode = MODE_6_1; sce = 3; cpe = 2;
break;
195 #if FDKENC_VER_AT_LEAST(3, 4) // 3.4.12
200 mode = MODE_7_1_REAR_SURROUND;
201 #if FDKENC_VER_AT_LEAST(4, 0) // 4.0.0
203 mode = MODE_7_1_TOP_FRONT;
207 mode = MODE_7_1_FRONT_CENTER;
217 if ((err = aacEncoder_SetParam(
s->handle, AACENC_CHANNELMODE,
218 mode)) != AACENC_OK) {
224 if ((err = aacEncoder_SetParam(
s->handle, AACENC_CHANNELORDER,
227 "Unable to set wav channel order %d: %s\n",
236 "VBR quality %d out of range, should be 1-5\n",
mode);
240 "Note, the VBR setting is unsupported and only works with "
241 "some parameter combinations\n");
242 if ((err = aacEncoder_SetParam(
s->handle, AACENC_BITRATEMODE,
243 mode)) != AACENC_OK) {
261 if ((err = aacEncoder_SetParam(
s->handle, AACENC_BITRATE,
271 if ((err = aacEncoder_SetParam(
s->handle, AACENC_TRANSMUX,
273 s->latm ? TT_MP4_LOAS : TT_MP4_ADTS)) != AACENC_OK) {
279 if (
s->latm &&
s->header_period) {
280 if ((err = aacEncoder_SetParam(
s->handle, AACENC_HEADER_PERIOD,
281 s->header_period)) != AACENC_OK) {
291 if (
s->signaling < 0)
294 if ((err = aacEncoder_SetParam(
s->handle, AACENC_SIGNALING_MODE,
295 s->signaling)) != AACENC_OK) {
301 if ((err = aacEncoder_SetParam(
s->handle, AACENC_AFTERBURNER,
302 s->afterburner)) != AACENC_OK) {
314 if ((err = aacEncoder_SetParam(
s->handle, AACENC_BANDWIDTH,
315 avctx->
cutoff)) != AACENC_OK) {
328 if ((err = aacEncInfo(
s->handle, &
info)) != AACENC_OK) {
335 #if FDKENC_VER_AT_LEAST(4, 0) // 4.0.0
363 AACENC_BufDesc in_buf = { 0 }, out_buf = { 0 };
364 AACENC_InArgs in_args = { 0 };
365 AACENC_OutArgs out_args = { 0 };
366 int in_buffer_identifier = IN_AUDIO_DATA;
367 int in_buffer_size, in_buffer_element_size;
368 int out_buffer_identifier = OUT_BITSTREAM_DATA;
369 int out_buffer_size, out_buffer_element_size;
370 void *in_ptr, *out_ptr;
372 uint8_t dummy_buf[1];
382 in_args.numInSamples = -1;
384 in_ptr =
frame->data[0];
394 in_buffer_element_size = 2;
396 in_buf.bufs = &in_ptr;
397 in_buf.bufferIdentifiers = &in_buffer_identifier;
398 in_buf.bufSizes = &in_buffer_size;
399 in_buf.bufElSizes = &in_buffer_element_size;
406 out_ptr = avpkt->
data;
407 out_buffer_size = avpkt->
size;
408 out_buffer_element_size = 1;
410 out_buf.bufs = &out_ptr;
411 out_buf.bufferIdentifiers = &out_buffer_identifier;
412 out_buf.bufSizes = &out_buffer_size;
413 out_buf.bufElSizes = &out_buffer_element_size;
415 if ((err = aacEncEncode(
s->handle, &in_buf, &out_buf, &in_args,
416 &out_args)) != AACENC_OK) {
417 if (!
frame && err == AACENC_ENCODE_EOF)
424 if (!out_args.numOutBytes)
431 avpkt->
size = out_args.numOutBytes;
450 #if FF_API_OLD_CHANNEL_LAYOUT
451 static const uint64_t aac_channel_layout[] = {
458 #if FDKENC_VER_AT_LEAST(4, 0) // 4.0.0
461 #if FDKENC_VER_AT_LEAST(3, 4) // 3.4.12
465 #if FDKENC_VER_AT_LEAST(4, 0) // 4.0.0
479 #if FDKENC_VER_AT_LEAST(4, 0) // 4.0.0
482 #if FDKENC_VER_AT_LEAST(3, 4) // 3.4.12
486 #if FDKENC_VER_AT_LEAST(4, 0) // 4.0.0
493 96000, 88200, 64000, 48000, 44100, 32000,
494 24000, 22050, 16000, 12000, 11025, 8000, 0
498 .
p.
name =
"libfdk_aac",
515 .p.wrapper_name =
"libfdk",
static void error(const char *err)
int frame_size
Number of samples per channel in an audio frame.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define AV_CH_LAYOUT_7POINT1_WIDE_BACK
#define AV_CH_LAYOUT_5POINT0_BACK
static const AVChannelLayout aac_ch_layouts[16]
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
#define FF_PROFILE_MPEG2_AAC_HE
static const AVClass aac_enc_class
const FFCodec ff_libfdk_aac_encoder
void ff_af_queue_remove(AudioFrameQueue *afq, int nb_samples, int64_t *pts, int64_t *duration)
Remove frame(s) from the queue.
#define AV_CHANNEL_LAYOUT_STEREO
int sample_rate
samples per second
void ff_af_queue_close(AudioFrameQueue *afq)
Close AudioFrameQueue.
#define AV_CH_LAYOUT_MONO
#define AV_CODEC_FLAG_QSCALE
Use fixed qscale.
av_cold void ff_af_queue_init(AVCodecContext *avctx, AudioFrameQueue *afq)
Initialize AudioFrameQueue.
static int aac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
This structure describes decoded (raw) audio or video data.
static av_cold int aac_encode_init(AVCodecContext *avctx)
#define FF_CODEC_CAP_NOT_INIT_THREADSAFE
The codec is not known to be init-threadsafe (i.e.
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
int nb_channels
Number of channels in this layout.
#define AV_CODEC_FLAG_GLOBAL_HEADER
Place global headers in extradata instead of every keyframe.
AVCodec p
The public AVCodec.
AVChannelLayout ch_layout
Audio channel layout.
static const char * aac_get_error(AACENC_ERROR err)
int initial_padding
Audio only.
#define AV_CHANNEL_LAYOUT_7POINT1_TOP_BACK
int flags
AV_CODEC_FLAG_*.
#define FF_CODEC_ENCODE_CB(func)
int ff_af_queue_add(AudioFrameQueue *afq, const AVFrame *f)
Add a frame to the queue.
#define AV_CH_LAYOUT_STEREO
#define AV_CHANNEL_LAYOUT_SURROUND
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
#define FF_PROFILE_AAC_HE_V2
#define AV_CHANNEL_LAYOUT_4POINT0
#define AV_CHANNEL_LAYOUT_7POINT1
int global_quality
Global quality for codecs which cannot change it per frame.
#define AV_OPT_FLAG_ENCODING_PARAM
a generic parameter which can be set by the user for muxing or encoding
#define AV_CHANNEL_LAYOUT_5POINT0_BACK
int(* init)(AVBSFContext *ctx)
#define FF_PROFILE_UNKNOWN
#define CODEC_LONG_NAME(str)
#define AV_OPT_FLAG_AUDIO_PARAM
#define AV_CHANNEL_LAYOUT_7POINT1_WIDE_BACK
#define LIBAVUTIL_VERSION_INT
Describe the class of an AVClass context structure.
int64_t bit_rate
the average bitrate
#define FF_PROFILE_AAC_LD
const char * av_default_item_name(void *ptr)
Return the context name.
static int aac_encode_close(AVCodecContext *avctx)
#define FF_PROFILE_AAC_ELD
static const FFCodecDefault aac_encode_defaults[]
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
An AVChannelLayout holds information about the channel layout of audio data.
#define FF_PROFILE_AAC_LOW
#define AV_CH_LAYOUT_5POINT1_BACK
int av_channel_layout_compare(const AVChannelLayout *chl, const AVChannelLayout *chl1)
Check whether two channel layouts are semantically the same, i.e.
#define AV_CHANNEL_LAYOUT_6POINT1_BACK
#define CODEC_OLD_CHANNEL_LAYOUTS_ARRAY(array)
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
int cutoff
Audio cutoff bandwidth (0 means "automatic")
AVSampleFormat
Audio sample formats.
#define AV_CH_LAYOUT_7POINT1
@ AV_SAMPLE_FMT_S16
signed 16 bits
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
const char * name
Name of the codec implementation.
#define FF_PROFILE_AAC_HE
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
#define AV_CH_LAYOUT_SURROUND
#define AV_INPUT_BUFFER_PADDING_SIZE
main external API structure.
static const AVProfile profiles[]
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
#define AV_CHANNEL_LAYOUT_MONO
#define FF_AAC_PROFILE_OPTS
This structure stores compressed data.
static const int aac_sample_rates[]
#define AV_CH_LAYOUT_4POINT0
#define AV_CHANNEL_LAYOUT_5POINT1_BACK
#define AV_CH_LAYOUT_6POINT1_BACK
#define AV_CH_LAYOUT_7POINT1_TOP_BACK
#define AV_CODEC_CAP_SMALL_LAST_FRAME
Codec can be fed a final frame with a smaller size.
int ff_alloc_packet(AVCodecContext *avctx, AVPacket *avpkt, int64_t size)
Check AVPacket size and allocate data.
static const AVOption aac_enc_options[]