Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
a5444fee
Commit
a5444fee
authored
Mar 11, 2011
by
Mans Rullgard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add CONFIG_AC3DSP symbol to simplify makefiles
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
4fa18c56
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
9 deletions
+8
-9
configure
configure
+3
-1
Makefile
libavcodec/Makefile
+3
-4
Makefile
libavcodec/x86/Makefile
+2
-4
No files found.
configure
View file @
a5444fee
...
...
@@ -899,6 +899,7 @@ COMPONENT_LIST="
CONFIG_LIST
=
"
$COMPONENT_LIST
aandct
ac3dsp
avcodec
avdevice
avfilter
...
...
@@ -1237,7 +1238,8 @@ aac_decoder_select="mdct rdft"
aac_encoder_select
=
"mdct"
aac_latm_decoder_select
=
"aac_decoder aac_latm_parser"
ac3_decoder_select
=
"mdct ac3_parser"
ac3_encoder_select
=
"mdct"
ac3_encoder_select
=
"mdct ac3dsp"
ac3_fixed_encoder_select
=
"ac3dsp"
alac_encoder_select
=
"lpc"
amrnb_decoder_select
=
"lsp"
amrwb_decoder_select
=
"lsp"
...
...
libavcodec/Makefile
View file @
a5444fee
...
...
@@ -26,6 +26,7 @@ OBJS = allcodecs.o \
# parts needed for many different codecs
OBJS-$(CONFIG_AANDCT)
+=
aandcttab.o
OBJS-$(CONFIG_AC3DSP)
+=
ac3dsp.o
OBJS-$(CONFIG_ENCODERS)
+=
faandct.o
jfdctfst.o
jfdctint.o
OBJS-$(CONFIG_DCT)
+=
dct.o
OBJS-$(CONFIG_DWT)
+=
dwt.o
...
...
@@ -55,10 +56,8 @@ OBJS-$(CONFIG_AAC_ENCODER) += aacenc.o aaccoder.o \
mpeg4audio.o
OBJS-$(CONFIG_AASC_DECODER)
+=
aasc.o
msrledec.o
OBJS-$(CONFIG_AC3_DECODER)
+=
ac3dec.o
ac3dec_data.o
ac3.o
OBJS-$(CONFIG_AC3_ENCODER)
+=
ac3enc_float.o
ac3tab.o
ac3.o
\
ac3dsp.o
OBJS-$(CONFIG_AC3_FIXED_ENCODER)
+=
ac3enc_fixed.o
ac3tab.o
ac3.o
\
ac3dsp.o
OBJS-$(CONFIG_AC3_ENCODER)
+=
ac3enc_float.o
ac3tab.o
ac3.o
OBJS-$(CONFIG_AC3_FIXED_ENCODER)
+=
ac3enc_fixed.o
ac3tab.o
ac3.o
OBJS-$(CONFIG_ALAC_DECODER)
+=
alac.o
OBJS-$(CONFIG_ALAC_ENCODER)
+=
alacenc.o
OBJS-$(CONFIG_ALS_DECODER)
+=
alsdec.o
bgmc.o
mpeg4audio.o
...
...
libavcodec/x86/Makefile
View file @
a5444fee
...
...
@@ -17,10 +17,8 @@ MMX-OBJS-$(CONFIG_H264PRED) += x86/h264_intrapred_init.o
YASM-OBJS-$(CONFIG_VC1_DECODER)
+=
x86/vc1dsp_yasm.o
MMX-OBJS-$(CONFIG_AC3_ENCODER)
+=
x86/ac3dsp_mmx.o
MMX-OBJS-$(CONFIG_AC3_FIXED_ENCODER)
+=
x86/ac3dsp_mmx.o
YASM-OBJS-$(CONFIG_AC3_ENCODER)
+=
x86/ac3dsp.o
YASM-OBJS-$(CONFIG_AC3_FIXED_ENCODER)
+=
x86/ac3dsp.o
MMX-OBJS-$(CONFIG_AC3DSP)
+=
x86/ac3dsp_mmx.o
YASM-OBJS-$(CONFIG_AC3DSP)
+=
x86/ac3dsp.o
MMX-OBJS-$(CONFIG_CAVS_DECODER)
+=
x86/cavsdsp_mmx.o
MMX-OBJS-$(CONFIG_MP1FLOAT_DECODER)
+=
x86/mpegaudiodec_mmx.o
MMX-OBJS-$(CONFIG_MP2FLOAT_DECODER)
+=
x86/mpegaudiodec_mmx.o
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment