mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
aacdec: move aacdec_common to aac/aacdec_tab
Start to clean up the decoder. Also renames a confusingly named file.
This commit is contained in:
parent
fc02b910ad
commit
f55b587820
@ -64,6 +64,7 @@ OBJS = ac3_parser.o \
|
||||
xiph.o \
|
||||
|
||||
# subsystems
|
||||
include $(SRC_PATH)/libavcodec/aac/Makefile
|
||||
include $(SRC_PATH)/libavcodec/vvc/Makefile
|
||||
-include $(SRC_PATH)/libavcodec/$(ARCH)/vvc/Makefile
|
||||
OBJS-$(CONFIG_AANDCTTABLES) += aandcttab.o
|
||||
@ -179,11 +180,11 @@ OBJS-$(CONFIG_WMV2DSP) += wmv2dsp.o
|
||||
OBJS-$(CONFIG_ZERO12V_DECODER) += 012v.o
|
||||
OBJS-$(CONFIG_A64MULTI_ENCODER) += a64multienc.o elbg.o
|
||||
OBJS-$(CONFIG_A64MULTI5_ENCODER) += a64multienc.o elbg.o
|
||||
OBJS-$(CONFIG_AAC_DECODER) += aacdec.o aacdec_common.o aactab.o \
|
||||
OBJS-$(CONFIG_AAC_DECODER) += aacdec.o aactab.o \
|
||||
aacsbr.o aacps_common.o aacps_float.o \
|
||||
kbdwin.o \
|
||||
sbrdsp.o aacpsdsp_float.o cbrt_data.o
|
||||
OBJS-$(CONFIG_AAC_FIXED_DECODER) += aacdec_fixed.o aacdec_common.o aactab.o \
|
||||
OBJS-$(CONFIG_AAC_FIXED_DECODER) += aacdec_fixed.o aactab.o \
|
||||
aacsbr_fixed.o aacps_common.o aacps_fixed.o \
|
||||
kbdwin.o \
|
||||
sbrdsp_fixed.o aacpsdsp_fixed.o cbrt_data_fixed.o
|
||||
|
5
libavcodec/aac/Makefile
Normal file
5
libavcodec/aac/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
clean::
|
||||
$(RM) $(CLEANSUFFIXES:%=libavcodec/aac/%)
|
||||
|
||||
OBJS-$(CONFIG_AAC_DECODER) += aac/aacdec_tab.o
|
||||
OBJS-$(CONFIG_AAC_FIXED_DECODER) += aac/aacdec_tab.o
|
@ -25,11 +25,12 @@
|
||||
* Common code and tables of the AAC fixed- and floating-point decoders
|
||||
*/
|
||||
|
||||
#include "aac.h"
|
||||
#include "aacdectab.h"
|
||||
#include "aacps.h"
|
||||
#include "aactab.h"
|
||||
#include "vlc.h"
|
||||
#include "aacdec_tab.h"
|
||||
|
||||
#include "libavcodec/aac.h"
|
||||
#include "libavcodec/aacps.h"
|
||||
#include "libavcodec/aactab.h"
|
||||
#include "libavcodec/vlc.h"
|
||||
|
||||
#include "libavutil/attributes.h"
|
||||
#include "libavutil/thread.h"
|
@ -25,12 +25,12 @@
|
||||
* @author Maxim Gavrilov ( maxim.gavrilov gmail com )
|
||||
*/
|
||||
|
||||
#ifndef AVCODEC_AACDECTAB_H
|
||||
#define AVCODEC_AACDECTAB_H
|
||||
#ifndef AVCODEC_AAC_AACDEC_TAB_H
|
||||
#define AVCODEC_AAC_AACDEC_TAB_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "vlc.h"
|
||||
#include "libavcodec/vlc.h"
|
||||
|
||||
#include "libavutil/attributes_internal.h"
|
||||
#include "libavutil/channel_layout.h"
|
||||
@ -52,4 +52,4 @@ extern const int16_t ff_aac_channel_map[3][4][6];
|
||||
extern const AVChannelLayout ff_aac_ch_layout[];
|
||||
FF_VISIBILITY_POP_HIDDEN
|
||||
|
||||
#endif /* AVCODEC_AACDECTAB_H */
|
||||
#endif /* AVCODEC_AAC_AACDEC_TAB_H */
|
@ -47,7 +47,7 @@
|
||||
#include "aac.h"
|
||||
#include "aacdec.h"
|
||||
#include "aactab.h"
|
||||
#include "aacdectab.h"
|
||||
#include "aac/aacdec_tab.h"
|
||||
#include "adts_header.h"
|
||||
#include "cbrt_data.h"
|
||||
#include "sbr.h"
|
||||
|
@ -72,7 +72,7 @@
|
||||
#include "aac.h"
|
||||
#include "aacdec.h"
|
||||
#include "aactab.h"
|
||||
#include "aacdectab.h"
|
||||
#include "aac/aacdec_tab.h"
|
||||
#include "adts_header.h"
|
||||
#include "cbrt_data.h"
|
||||
#include "sbr.h"
|
||||
|
@ -33,7 +33,7 @@
|
||||
*/
|
||||
|
||||
#include "aacdec.h"
|
||||
#include "aacdectab.h"
|
||||
#include "aac/aacdec_tab.h"
|
||||
#include "avcodec.h"
|
||||
#include "libavutil/qsort.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user