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
60827a1a
Commit
60827a1a
authored
May 06, 2006
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Further simplify AMR build.
Originally committed as revision 5347 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
46fe31a0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
20 deletions
+14
-20
configure
configure
+9
-4
Makefile
libavcodec/Makefile
+3
-6
Makefile
libavformat/Makefile
+2
-10
No files found.
configure
View file @
60827a1a
...
...
@@ -591,13 +591,13 @@ for opt do
;;
--enable-small
)
optimize
=
"small"
;;
--enable-amr_nb
)
amr_nb
=
"yes"
;
amr_nb_fixed
=
"no"
--enable-amr_nb
)
amr
=
"yes"
;
amr
_nb
=
"yes"
;
amr_nb_fixed
=
"no"
;;
--enable-amr_nb-fixed
)
amr_nb_fixed
=
"yes"
;
amr_nb
=
"no"
--enable-amr_nb-fixed
)
amr
=
"yes"
;
amr
_nb_fixed
=
"yes"
;
amr_nb
=
"no"
;;
--enable-amr_wb
)
amr_wb
=
"yes"
--enable-amr_wb
)
amr
=
"yes"
;
amr
_wb
=
"yes"
;;
--enable-amr_if2
)
amr_if2
=
"yes"
--enable-amr_if2
)
amr
=
"yes"
;
amr
_if2
=
"yes"
;;
--enable-sunmlib
)
sunmlib
=
"yes"
;;
...
...
@@ -1913,6 +1913,11 @@ fi
echo
"SRC_PATH=
$source_path
"
>>
config.mak
echo
"BUILD_ROOT=
$PWD
"
>>
config.mak
if
test
"
$amr
"
=
"yes"
;
then
echo
"#define AMR 1"
>>
$TMPH
echo
"AMR=yes"
>>
config.mak
fi
if
test
"
$amr_wb
"
=
"yes"
;
then
echo
"#define AMR_WB 1"
>>
$TMPH
echo
"AMR_WB=yes"
>>
config.mak
...
...
libavcodec/Makefile
View file @
60827a1a
...
...
@@ -235,21 +235,20 @@ ifeq ($(CONFIG_ZMBV_DECODER),yes)
endif
AMROBJS
=
ifeq
($(AMR),yes)
OBJS
+=
amr.o
endif
ifeq
($(AMR_NB),yes)
AMROBJS
=
amr.o
OBJS
+=
amr_float/sp_dec.o amr_float/sp_enc.o amr_float/interf_dec.o amr_float/interf_enc.o
endif
ifeq
($(AMR_NB_FIXED),yes)
AMROBJS
=
amr.o
EXTRAOBJS
+=
amr/
*
.o
EXTRADEPS
=
amrlibs
endif
ifeq
($(AMR_WB),yes)
AMROBJS
=
amr.o
OBJS
+=
amrwb_float/dec_acelp.o amrwb_float/dec_dtx.o amrwb_float/dec_gain.o
\
amrwb_float/dec_if.o amrwb_float/dec_lpc.o amrwb_float/dec_main.o
\
amrwb_float/dec_rom.o amrwb_float/dec_util.o amrwb_float/enc_acelp.o
\
...
...
@@ -258,8 +257,6 @@ OBJS+= amrwb_float/dec_acelp.o amrwb_float/dec_dtx.o amrwb_float/dec_gain.o \
amrwb_float/enc_util.o amrwb_float/if_rom.o
endif
OBJS
+=
$(AMROBJS)
ifeq
($(HAVE_PTHREADS),yes)
OBJS
+=
pthread.o
...
...
libavformat/Makefile
View file @
60827a1a
...
...
@@ -26,17 +26,9 @@ OBJS+= flvenc.o movenc.o asf-enc.o adtsenc.o
endif
AMROBJS
=
ifeq
($(AMR_NB),yes)
AMROBJS
=
amr.o
ifeq
($(AMR),yes)
OBJS
+=
amr.o
endif
ifeq
($(AMR_NB_FIXED),yes)
AMROBJS
=
amr.o
endif
ifeq
($(AMR_WB),yes)
AMROBJS
=
amr.o
endif
OBJS
+=
$(AMROBJS)
# image formats
OBJS
+=
pnm.o yuv.o png.o jpeg.o gifdec.o sgi.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