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
65bb5e96
Commit
65bb5e96
authored
Sep 09, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove recursion into modules/codec/avcodec/
parent
b894ea27
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
45 deletions
+40
-45
configure.ac
configure.ac
+0
-1
modules/codec/Modules.am
modules/codec/Modules.am
+40
-1
modules/codec/avcodec/Modules.am
modules/codec/avcodec/Modules.am
+0
-43
No files found.
configure.ac
View file @
65bb5e96
...
@@ -4065,7 +4065,6 @@ AC_CONFIG_FILES([
...
@@ -4065,7 +4065,6 @@ AC_CONFIG_FILES([
modules/audio_mixer/Makefile
modules/audio_mixer/Makefile
modules/audio_output/Makefile
modules/audio_output/Makefile
modules/codec/Makefile
modules/codec/Makefile
modules/codec/avcodec/Makefile
modules/codec/loader/Makefile
modules/codec/loader/Makefile
modules/control/Makefile
modules/control/Makefile
modules/demux/Makefile
modules/demux/Makefile
...
...
modules/codec/Modules.am
View file @
65bb5e96
SUBDIRS = loader
avcodec
SUBDIRS = loader
noinst_HEADERS =
noinst_HEADERS =
SOURCES_a52 = a52.c a52.h
SOURCES_a52 = a52.c a52.h
...
@@ -81,6 +81,45 @@ libvlc_LTLIBRARIES += \
...
@@ -81,6 +81,45 @@ libvlc_LTLIBRARIES += \
libstl_plugin.la \
libstl_plugin.la \
$(NULL)
$(NULL)
### FFmpeg/libav ###
libavcodec_plugin_la_SOURCES = \
avcodec/avcommon.h \
avcodec/video.c \
avcodec/subtitle.c \
avcodec/audio.c \
avcodec/cpu.c \
avcodec/deinterlace.c \
avcodec/fourcc.c \
avcodec/chroma.c avcodec/chroma.h \
avcodec/vaapi.c \
avcodec/dxva2.c \
avcodec/vda.c \
avcodec/copy.c avcodec/copy.h \
avcodec/va.h \
avcodec/avcodec.c avcodec/avcodec.h
if ENABLE_SOUT
libavcodec_plugin_la_SOURCES += \
avcodec/encoder.c
endif
libavcodec_plugin_la_CFLAGS = $(AM_CFLAGS) $(CFLAGS_avcodec)
libavcodec_plugin_la_LIBADD = $(AM_LIBADD) $(LIBS_avcodec)
libavcodec_plugin_la_LDFLAGS = $(AM_LDFLAGS) $(LDFLAGS_avcodec)
if MERGE_FFMPEG
libavcodec_plugin_la_SOURCES += \
../demux/avformat/demux.c \
../access/avio.c
if ENABLE_SOUT
libavcodec_plugin_la_SOURCES += \
../demux/avformat/mux.c
endif
libavcodec_plugin_la_CFLAGS += -DMERGE_FFMPEG
endif
libvlc_LTLIBRARIES += \
$(LTLIBavcodec)
EXTRA_LTLIBRARIES += \
libavcodec_plugin.la
### OpenMAX ###
### OpenMAX ###
noinst_HEADERS += \
noinst_HEADERS += \
omxil/OMX_Component.h \
omxil/OMX_Component.h \
...
...
modules/codec/avcodec/Modules.am
deleted
100644 → 0
View file @
b894ea27
libavcodec_plugin_la_SOURCES = \
avcodec.c \
avcodec.h \
avcommon.h \
video.c \
subtitle.c \
audio.c \
cpu.c \
deinterlace.c \
fourcc.c \
chroma.h \
chroma.c \
vaapi.c \
dxva2.c \
vda.c \
copy.c \
copy.h \
va.h \
$(NULL)
if ENABLE_SOUT
libavcodec_plugin_la_SOURCES += \
encoder.c
endif
libavcodec_plugin_la_CFLAGS = $(AM_CFLAGS) $(CFLAGS_avcodec)
libavcodec_plugin_la_LIBADD = $(AM_LIBADD) $(LIBS_avcodec)
libavcodec_plugin_la_LDFLAGS = $(AM_LDFLAGS) $(LDFLAGS_avcodec)
if MERGE_FFMPEG
libavcodec_plugin_la_SOURCES += \
../../demux/avformat/demux.c \
../../access/avio.c
if ENABLE_SOUT
libavcodec_plugin_la_SOURCES += \
../../demux/avformat/mux.c
endif
libavcodec_plugin_la_CFLAGS += -DMERGE_FFMPEG
endif
libvlc_LTLIBRARIES += \
$(LTLIBavcodec)
EXTRA_LTLIBRARIES += \
libavcodec_plugin.la
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