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
196c9e5c
Commit
196c9e5c
authored
Dec 21, 2011
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: always build vsrc_buffer.
It's a part of public API.
parent
9a3f1069
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
configure
configure
+0
-2
Makefile
libavfilter/Makefile
+1
-1
allfilters.c
libavfilter/allfilters.c
+6
-1
No files found.
configure
View file @
196c9e5c
...
...
@@ -1525,14 +1525,12 @@ postproc_deps="gpl"
# programs
avconv_deps
=
"avcodec avformat swscale"
avconv_select
=
"buffer_filter"
avplay_deps
=
"avcodec avformat swscale sdl"
avplay_select
=
"rdft"
avprobe_deps
=
"avcodec avformat"
avserver_deps
=
"avformat ffm_muxer fork rtp_protocol rtsp_demuxer"
avserver_extralibs
=
'$ldl'
ffmpeg_deps
=
"avcodec avformat swscale"
ffmpeg_select
=
"buffer_filter"
doc_deps
=
"texi2html"
...
...
libavfilter/Makefile
View file @
196c9e5c
...
...
@@ -12,6 +12,7 @@ OBJS = allfilters.o \
drawutils.o
\
formats.o
\
graphparser.o
\
vsrc_buffer.o
OBJS-$(CONFIG_ANULL_FILTER)
+=
af_anull.o
...
...
@@ -59,7 +60,6 @@ OBJS-$(CONFIG_UNSHARP_FILTER) += vf_unsharp.o
OBJS-$(CONFIG_VFLIP_FILTER)
+=
vf_vflip.o
OBJS-$(CONFIG_YADIF_FILTER)
+=
vf_yadif.o
OBJS-$(CONFIG_BUFFER_FILTER)
+=
vsrc_buffer.o
OBJS-$(CONFIG_COLOR_FILTER)
+=
vsrc_color.o
OBJS-$(CONFIG_FREI0R_SRC_FILTER)
+=
vf_frei0r.o
OBJS-$(CONFIG_MOVIE_FILTER)
+=
vsrc_movie.o
...
...
libavfilter/allfilters.c
View file @
196c9e5c
...
...
@@ -80,7 +80,6 @@ void avfilter_register_all(void)
REGISTER_FILTER
(
VFLIP
,
vflip
,
vf
);
REGISTER_FILTER
(
YADIF
,
yadif
,
vf
);
REGISTER_FILTER
(
BUFFER
,
buffer
,
vsrc
);
REGISTER_FILTER
(
COLOR
,
color
,
vsrc
);
REGISTER_FILTER
(
FREI0R
,
frei0r_src
,
vsrc
);
REGISTER_FILTER
(
MOVIE
,
movie
,
vsrc
);
...
...
@@ -89,4 +88,10 @@ void avfilter_register_all(void)
REGISTER_FILTER
(
TESTSRC
,
testsrc
,
vsrc
);
REGISTER_FILTER
(
NULLSINK
,
nullsink
,
vsink
);
/* vsrc_buffer is a part of public API => registered unconditionally */
{
extern
avfilter_vsrc_buffer
;
avfilter_register
(
&
avfilter_vsrc_buffer
);
}
}
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