Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
21cd1cd4
Commit
21cd1cd4
authored
Sep 03, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec, avformat, postproc and switcher link against avutil
Contrary to swscale(?), those plugins call avutil directly
parent
ac5d4e03
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
configure.ac
configure.ac
+6
-6
No files found.
configure.ac
View file @
21cd1cd4
...
...
@@ -2871,8 +2871,8 @@ AC_ARG_ENABLE(switcher,
AS_IF([test "${enable_switcher}" = "yes"], [
AS_IF([test "x${have_avcodec}" = "xyes"], [
VLC_ADD_PLUGIN([stream_out_switcher])
VLC_ADD_LIBS([stream_out_switcher],[$AVCODEC_LIBS])
VLC_ADD_CFLAGS([stream_out_switcher],[$AVCODEC_CFLAGS])
VLC_ADD_LIBS([stream_out_switcher],[$AVCODEC_LIBS
$AVUTIL_LIBS
])
VLC_ADD_CFLAGS([stream_out_switcher],[$AVCODEC_CFLAGS
$AVUTIL_CFLAGS
])
],[AC_MSG_ERROR([Stream_out switcher depends on avcodec])
])
])
...
...
@@ -2894,8 +2894,8 @@ then
AC_CHECK_HEADERS(libavformat/avformat.h ffmpeg/avformat.h)
AC_CHECK_HEADERS(libavutil/avutil.h ffmpeg/avutil.h)
VLC_ADD_PLUGIN([avformat])
VLC_ADD_LIBS([avformat],[$AVFORMAT_LIBS])
VLC_ADD_CFLAGS([avformat],[$AVFORMAT_CFLAGS])
VLC_ADD_LIBS([avformat],[$AVFORMAT_LIBS
$AVUTIL_LIBS
])
VLC_ADD_CFLAGS([avformat],[$AVFORMAT_CFLAGS
$AVUTIL_CFLAGS
])
VLC_RESTORE_FLAGS
],[
AC_MSG_ERROR([Could not find libavformat or libavutil. Use --disable-avformat to ignore this error.])
...
...
@@ -2941,8 +2941,8 @@ then
CFLAGS="${CFLAGS} ${POSTPROC_CFLAGS}"
AC_CHECK_HEADERS(libpostproc/postproc.h postproc/postprocess.h)
VLC_ADD_PLUGIN([postproc])
VLC_ADD_LIBS([postproc],[$POSTPROC_LIBS])
VLC_ADD_CFLAGS([postproc],[$POSTPROC_CFLAGS])
VLC_ADD_LIBS([postproc],[$POSTPROC_LIBS
$AVUTIL_LIBS
])
VLC_ADD_CFLAGS([postproc],[$POSTPROC_CFLAGS
$AVUTIL_CFLAGS
])
VLC_RESTORE_FLAGS
],[
AC_MSG_ERROR([Could not find libpostproc. Use --disable-postproc to ignore this error.])
...
...
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