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
9eb83a56
Commit
9eb83a56
authored
Apr 14, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: cosmetics: Split HEADERS/OBJS/PROGS lists into one entry per line.
parent
1f4f7521
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
69 additions
and
16 deletions
+69
-16
Makefile
libavcodec/Makefile
+26
-5
Makefile
libavdevice/Makefile
+2
-1
Makefile
libavfilter/Makefile
+7
-2
Makefile
libavformat/Makefile
+11
-3
Makefile
libavutil/Makefile
+21
-4
Makefile
libswscale/Makefile
+2
-1
No files found.
libavcodec/Makefile
View file @
9eb83a56
NAME
=
avcodec
FFLIBS
=
avutil
HEADERS
=
avcodec.h avfft.h dxva2.h vaapi.h vda.h vdpau.h version.h xvmc.h
HEADERS
=
avcodec.h
\
avfft.h
\
dxva2.h
\
vaapi.h
\
vda.h
\
vdpau.h
\
version.h
\
xvmc.h
\
OBJS
=
allcodecs.o
\
audioconvert.o
\
...
...
@@ -700,13 +707,27 @@ SKIPHEADERS-$(HAVE_W32THREADS) += w32pthreads.h
EXAMPLES
=
api
TESTPROGS
=
cabac dct fft fft-fixed golomb iirfilter rangecoder
TESTPROGS
=
cabac
\
dct
\
fft
\
fft-fixed
\
golomb
\
iirfilter
\
rangecoder
\
TESTPROGS-$(HAVE_MMX)
+=
motion
TESTOBJS
=
dctref.o
HOSTPROGS
=
aac_tablegen aacps_tablegen cbrt_tablegen cos_tablegen
\
dv_tablegen motionpixels_tablegen mpegaudio_tablegen
\
pcm_tablegen qdm2_tablegen sinewin_tablegen
HOSTPROGS
=
aac_tablegen
\
aacps_tablegen
\
cbrt_tablegen
\
cos_tablegen
\
dv_tablegen
\
motionpixels_tablegen
\
mpegaudio_tablegen
\
pcm_tablegen
\
qdm2_tablegen
\
sinewin_tablegen
\
CLEANFILES
=
*
_tables.c
*
_tables.h
*
_tablegen
$(HOSTEXESUF)
...
...
libavdevice/Makefile
View file @
9eb83a56
...
...
@@ -3,7 +3,8 @@ FFLIBS = avformat avcodec avutil
HEADERS
=
avdevice.h
OBJS
=
alldevices.o avdevice.o
OBJS
=
alldevices.o
\
avdevice.o
\
# input/output devices
OBJS-$(CONFIG_ALSA_INDEV)
+=
alsa-audio-common.o
\
...
...
libavfilter/Makefile
View file @
9eb83a56
...
...
@@ -2,7 +2,11 @@ NAME = avfilter
FFLIBS
=
avutil swscale
FFLIBS-$(CONFIG_MOVIE_FILTER)
+=
avformat
avcodec
HEADERS
=
avfilter.h avfiltergraph.h buffersrc.h version.h vsrc_buffer.h
HEADERS
=
avfilter.h
\
avfiltergraph.h
\
buffersrc.h
\
version.h
\
vsrc_buffer.h
\
OBJS
=
allfilters.o
\
avfilter.o
\
...
...
@@ -68,4 +72,5 @@ OBJS-$(CONFIG_TESTSRC_FILTER) += vsrc_testsrc.o
OBJS-$(CONFIG_NULLSINK_FILTER)
+=
vsink_nullsink.o
TOOLS
=
graph2dot lavfi-showfiltfmts
TOOLS
=
graph2dot
\
lavfi-showfiltfmts
\
libavformat/Makefile
View file @
9eb83a56
NAME
=
avformat
FFLIBS
=
avcodec avutil
HEADERS
=
avformat.h avio.h version.h
HEADERS
=
avformat.h
\
avio.h
\
version.h
\
OBJS
=
allformats.o
\
avio.o
\
...
...
@@ -352,8 +354,14 @@ OBJS-$(CONFIG_UDP_PROTOCOL) += udp.o
SKIPHEADERS-$(CONFIG_NETWORK)
+=
network.h
rtsp.h
EXAMPLES
=
metadata output
EXAMPLES
=
metadata
\
output
\
TESTPROGS
=
seek
TOOLS
=
aviocat ismindex pktdumper probetest
TOOLS
=
aviocat
\
ismindex
\
pktdumper
\
probetest
\
$(SUBDIR)output-example$(EXESUF)
:
ELIBS = -lswscale
libavutil/Makefile
View file @
9eb83a56
...
...
@@ -37,6 +37,11 @@ HEADERS = adler32.h \
samplefmt.h
\
sha.h
\
ARCH_HEADERS
=
bswap.h
\
intmath.h
\
intreadwrite.h
\
timer.h
\
BUILT_HEADERS
=
avconfig.h
OBJS
=
adler32.o
\
...
...
@@ -74,7 +79,19 @@ OBJS = adler32.o \
tree.o
\
utils.o
\
TESTPROGS
=
adler32 aes avstring
base64
cpu crc des
eval
fifo lfg lls
\
md5 opt parseutils sha tree
ARCH_HEADERS
=
bswap.h intmath.h intreadwrite.h timer.h
TESTPROGS
=
adler32
\
aes
\
avstring
\
base64
\
cpu
\
crc
\
des
\
eval
\
fifo
\
lfg
\
lls
\
md5
\
opt
\
parseutils
\
sha
\
tree
\
libswscale/Makefile
View file @
9eb83a56
...
...
@@ -12,4 +12,5 @@ OBJS = input.o \
utils.o
\
yuv2rgb.o
\
TESTPROGS
=
colorspace swscale
TESTPROGS
=
colorspace
\
swscale
\
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