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
fe2147e9
Commit
fe2147e9
authored
Aug 02, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avconv: split configuring filter configuration to a separate file.
parent
f5e66827
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
563 additions
and
530 deletions
+563
-530
Makefile
Makefile
+1
-1
avconv.c
avconv.c
+0
-529
avconv.h
avconv.h
+2
-0
avconv_filter.c
avconv_filter.c
+560
-0
No files found.
Makefile
View file @
fe2147e9
...
...
@@ -60,7 +60,7 @@ PROGS-$(CONFIG_AVSERVER) += avserver
PROGS
:=
$
(
PROGS-yes:%
=
%
$(EXESUF)
)
OBJS
=
cmdutils.o
OBJS-avconv
=
avconv_opt.o
OBJS-avconv
=
avconv_opt.o
avconv_filter.o
TESTTOOLS
=
audiogen videogen rotozoom tiny_psnr
base64
HOSTPROGS
:=
$
(
TESTTOOLS:%
=
tests/%
)
doc/print_options
TOOLS
=
qt-faststart trasher
...
...
avconv.c
View file @
fe2147e9
This diff is collapsed.
Click to expand it.
avconv.h
View file @
fe2147e9
...
...
@@ -356,5 +356,7 @@ int guess_input_channel_layout(InputStream *ist);
int
configure_filtergraph
(
FilterGraph
*
fg
);
int
configure_output_filter
(
FilterGraph
*
fg
,
OutputFilter
*
ofilter
,
AVFilterInOut
*
out
);
int
ist_in_filtergraph
(
FilterGraph
*
fg
,
InputStream
*
ist
);
FilterGraph
*
init_simple_filtergraph
(
InputStream
*
ist
,
OutputStream
*
ost
);
#endif
/* AVCONV_H */
avconv_filter.c
0 → 100644
View file @
fe2147e9
This diff is collapsed.
Click to expand it.
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