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
445ad18d
Commit
445ad18d
authored
May 12, 2003
by
Zdenek Kabelac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* link libfaad when needed
Originally committed as revision 1862 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
aea22133
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
0 deletions
+20
-0
Makefile
Makefile
+8
-0
configure
configure
+7
-0
Makefile
libavcodec/Makefile
+5
-0
No files found.
Makefile
View file @
445ad18d
...
...
@@ -47,6 +47,14 @@ ifeq ($(CONFIG_VORBIS),yes)
EXTRALIBS
+=
-logg
-lvorbis
-lvorbisenc
endif
ifeq
($(CONFIG_FAAD),yes)
ifeq
($(CONFIG_FAADBIN),yes)
# no libs needed
else
EXTRALIBS
+=
-lfaad
endif
endif
ifeq
($(BUILD_VHOOK),yes)
VHOOK
=
videohook
INSTALLVHOOK
=
install-vhook
...
...
configure
View file @
445ad18d
...
...
@@ -297,6 +297,10 @@ for opt do
;;
--enable-vorbis
)
vorbis
=
"yes"
;;
--enable-faad
)
faad
=
"yes"
;;
--enable-faadbin
)
faadbin
=
"yes"
;;
--disable-vhook
)
vhook
=
"no"
;;
--disable-simple_idct
)
simpleidct
=
"no"
...
...
@@ -654,6 +658,8 @@ echo "gprof enabled $gprof"
echo
"zlib enabled
$zlib
"
echo
"mp3lame enabled
$mp3lame
"
echo
"vorbis enabled
$vorbis
"
echo
"faad enabled
$faad
"
echo
"faadbin enabled
$faadbin
"
echo
"a52 support
$a52
"
echo
"a52 dlopened
$a52bin
"
echo
"pp support
$pp
"
...
...
@@ -852,6 +858,7 @@ fi
if
test
"
$faadbin
"
=
"yes"
;
then
echo
"#define CONFIG_FAADBIN 1"
>>
$TMPH
echo
"CONFIG_FAADBIN=yes"
>>
config.mak
fi
if
test
"
$win32
"
=
"yes"
;
then
...
...
libavcodec/Makefile
View file @
445ad18d
...
...
@@ -38,6 +38,11 @@ endif
ifeq
($(CONFIG_FAAD),yes)
OBJS
+=
faad.o
ifeq
($(CONFIG_FAADBIN),yes)
# no libs needed
else
EXTRALIBS
+=
-lfaad
endif
endif
ifeq
($(CONFIG_PP),yes)
...
...
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