Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
34332287
Commit
34332287
authored
Sep 05, 2015
by
Hendrik Leppkes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: remove old graph parser API with different semantics
This API hasn't been active since the last bump already.
parent
c43bd08f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
32 deletions
+0
-32
avfilter.h
libavfilter/avfilter.h
+0
-21
graphparser.c
libavfilter/graphparser.c
+0
-8
version.h
libavfilter/version.h
+0
-3
No files found.
libavfilter/avfilter.h
View file @
34332287
...
...
@@ -937,7 +937,6 @@ AVFilterInOut *avfilter_inout_alloc(void);
*/
void
avfilter_inout_free
(
AVFilterInOut
**
inout
);
#if AV_HAVE_INCOMPATIBLE_LIBAV_ABI || !FF_API_OLD_GRAPH_PARSE
/**
* Add a graph described by a string to a graph.
*
...
...
@@ -959,26 +958,6 @@ void avfilter_inout_free(AVFilterInOut **inout);
int
avfilter_graph_parse
(
AVFilterGraph
*
graph
,
const
char
*
filters
,
AVFilterInOut
*
inputs
,
AVFilterInOut
*
outputs
,
void
*
log_ctx
);
#else
/**
* Add a graph described by a string to a graph.
*
* @param graph the filter graph where to link the parsed graph context
* @param filters string to be parsed
* @param inputs pointer to a linked list to the inputs of the graph, may be NULL.
* If non-NULL, *inputs is updated to contain the list of open inputs
* after the parsing, should be freed with avfilter_inout_free().
* @param outputs pointer to a linked list to the outputs of the graph, may be NULL.
* If non-NULL, *outputs is updated to contain the list of open outputs
* after the parsing, should be freed with avfilter_inout_free().
* @return non negative on success, a negative AVERROR code on error
* @deprecated Use avfilter_graph_parse_ptr() instead.
*/
attribute_deprecated
int
avfilter_graph_parse
(
AVFilterGraph
*
graph
,
const
char
*
filters
,
AVFilterInOut
**
inputs
,
AVFilterInOut
**
outputs
,
void
*
log_ctx
);
#endif
/**
* Add a graph described by a string to a graph.
...
...
libavfilter/graphparser.c
View file @
34332287
...
...
@@ -456,7 +456,6 @@ int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters,
return
ret
;
}
#if HAVE_INCOMPATIBLE_LIBAV_ABI || !FF_API_OLD_GRAPH_PARSE
int
avfilter_graph_parse
(
AVFilterGraph
*
graph
,
const
char
*
filters
,
AVFilterInOut
*
open_inputs
,
AVFilterInOut
*
open_outputs
,
void
*
log_ctx
)
...
...
@@ -518,13 +517,6 @@ int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
avfilter_inout_free
(
&
open_inputs
);
avfilter_inout_free
(
&
open_outputs
);
return
ret
;
#else
int
avfilter_graph_parse
(
AVFilterGraph
*
graph
,
const
char
*
filters
,
AVFilterInOut
**
inputs
,
AVFilterInOut
**
outputs
,
void
*
log_ctx
)
{
return
avfilter_graph_parse_ptr
(
graph
,
filters
,
inputs
,
outputs
,
log_ctx
);
#endif
}
int
avfilter_graph_parse_ptr
(
AVFilterGraph
*
graph
,
const
char
*
filters
,
...
...
libavfilter/version.h
View file @
34332287
...
...
@@ -64,9 +64,6 @@
#ifndef FF_API_OLD_FILTER_REGISTER
#define FF_API_OLD_FILTER_REGISTER (LIBAVFILTER_VERSION_MAJOR < 7)
#endif
#ifndef FF_API_OLD_GRAPH_PARSE
#define FF_API_OLD_GRAPH_PARSE (LIBAVFILTER_VERSION_MAJOR < 5)
#endif
#ifndef FF_API_NOCONST_GET_NAME
#define FF_API_NOCONST_GET_NAME (LIBAVFILTER_VERSION_MAJOR < 7)
#endif
...
...
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