mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-02 03:06:28 +02:00
eee5fa0808
This commit adds a decoder for the frequency-domain part of USAC. What works: - Mono - Stereo (no prediction) - Stereo (mid/side coding) - Stereo (complex prediction) What's left: - SBR - Speech coding Known issues: - Desync with certain sequences - Preroll crossover missing (shouldn't matter, bitrate adaptation only)
9 lines
408 B
Makefile
9 lines
408 B
Makefile
clean::
|
|
$(RM) $(CLEANSUFFIXES:%=libavcodec/aac/%)
|
|
|
|
OBJS-$(CONFIG_AAC_DECODER) += aac/aacdec.o aac/aacdec_tab.o \
|
|
aac/aacdec_float.o aac/aacdec_usac.o \
|
|
aac/aacdec_ac.o aac/aacdec_lpd.o
|
|
OBJS-$(CONFIG_AAC_FIXED_DECODER) += aac/aacdec.o aac/aacdec_tab.o \
|
|
aac/aacdec_fixed.o
|