Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Is ER AAC LC available? (Read 4062 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Is ER AAC LC available?

Hi,
is the code of error resilience tools for AAC available from internet?

For High Efficiency AAC profile which includes the object of AAC LC and SBR is available (3GPP standard),
but how about the high quality audio profile or the low dealy audio profile? (These two profiles both include the object of ER AAC LC.)
Are their codes accessible? or I have to implement by myself based on the HE AAC?

Thanks.

Is ER AAC LC available?

Reply #1
fdk-aac source code defines and uses "AOT_ER_AAC_LC", so should support encoding with that extension enabled.
faad2 should support decoding it.

Also look into ffmpeg, e.g. see
Code: [Select]
aac_decode_er_frame
.
"I hear it when I see it."

Is ER AAC LC available?

Reply #2
fdk-aac source code defines and uses "AOT_ER_AAC_LC", so should support encoding with that extension enabled.
faad2 should support decoding it.

Also look into ffmpeg, e.g. see
Code: [Select]
aac_decode_er_frame
.


Thanks. I will have a try