Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
external
ffmpeg
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
Changes
4
Expand all
Show 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
...
@@ -60,7 +60,7 @@ PROGS-$(CONFIG_AVSERVER) += avserver
PROGS
:=
$
(
PROGS-yes:%
=
%
$(EXESUF)
)
PROGS
:=
$
(
PROGS-yes:%
=
%
$(EXESUF)
)
OBJS
=
cmdutils.o
OBJS
=
cmdutils.o
OBJS-avconv
=
avconv_opt.o
OBJS-avconv
=
avconv_opt.o
avconv_filter.o
TESTTOOLS
=
audiogen videogen rotozoom tiny_psnr
base64
TESTTOOLS
=
audiogen videogen rotozoom tiny_psnr
base64
HOSTPROGS
:=
$
(
TESTTOOLS:%
=
tests/%
)
doc/print_options
HOSTPROGS
:=
$
(
TESTTOOLS:%
=
tests/%
)
doc/print_options
TOOLS
=
qt-faststart trasher
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);
...
@@ -356,5 +356,7 @@ int guess_input_channel_layout(InputStream *ist);
int
configure_filtergraph
(
FilterGraph
*
fg
);
int
configure_filtergraph
(
FilterGraph
*
fg
);
int
configure_output_filter
(
FilterGraph
*
fg
,
OutputFilter
*
ofilter
,
AVFilterInOut
*
out
);
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 */
#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