Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
87f1c97e
Commit
87f1c97e
authored
18 years ago
by
Måns Rullgård
Browse files
Options
Downloads
Patches
Plain Diff
allow recent libfaad versions with new function names
Originally committed as revision 5508 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
0187178e
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
configure
+15
-1
15 additions, 1 deletion
configure
with
15 additions
and
1 deletion
configure
+
15
−
1
View file @
87f1c97e
...
...
@@ -1178,7 +1178,6 @@ enabled mp3lame && require LAME lame/lame.h lame_init -lmp3lame
enabled libogg
&&
require libogg ogg/ogg.h ogg_sync_init
-logg
enabled vorbis
&&
require libvorbis vorbis/vorbisenc.h vorbis_info_init
-lvorbis
-lvorbisenc
enabled theora
&&
require libtheora theora/theora.h theora_info_init
-ltheora
enabled faad
&&
require libfaad faad.h faacDecOpen
-lfaad
enabled xvid
&&
require XviD xvid.h xvid_global
-lxvidcore
enabled x264
&&
require x264 x264.h x264_encoder_open
-lx264
enabled dc1394
&&
require libdc1394 libdc1394/dc1394_control.h dc1394_create_handle
-ldc1394_control
-lraw1394
...
...
@@ -1201,6 +1200,21 @@ EOF
restore_flags
fi
# Ugh, recent faad2 versions have renamed all functions and #define the
# old names in faad.h. Generic tests won't work.
if
enabled faad
;
then
save_flags
temp_extralibs
-lfaad
check_ld
<<
EOF
&& add_extralibs -lfaad || die "ERROR: libfaad not found"
#include <faad.h>
int main(){
faacDecOpen();
return 0;
}
EOF
restore_flags
fi
# test for lrintf in math.h
check_exec
<<
EOF
&& have_lrintf=yes || have_lrintf=no
#define _ISOC9X_SOURCE 1
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment