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
48715285
Commit
48715285
authored
Nov 04, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
graph2dot: Fix use of deprecated API
parent
70cbf334
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
graph2dot.c
tools/graph2dot.c
+2
-2
No files found.
tools/graph2dot.c
View file @
48715285
...
@@ -58,7 +58,7 @@ static void print_digraph(FILE *outfile, AVFilterGraph *graph)
...
@@ -58,7 +58,7 @@ static void print_digraph(FILE *outfile, AVFilterGraph *graph)
fprintf
(
outfile
,
"node [shape=box]
\n
"
);
fprintf
(
outfile
,
"node [shape=box]
\n
"
);
fprintf
(
outfile
,
"rankdir=LR
\n
"
);
fprintf
(
outfile
,
"rankdir=LR
\n
"
);
for
(
i
=
0
;
i
<
graph
->
filter_count
;
i
++
)
{
for
(
i
=
0
;
i
<
graph
->
nb_filters
;
i
++
)
{
char
filter_ctx_label
[
128
];
char
filter_ctx_label
[
128
];
const
AVFilterContext
*
filter_ctx
=
graph
->
filters
[
i
];
const
AVFilterContext
*
filter_ctx
=
graph
->
filters
[
i
];
...
@@ -66,7 +66,7 @@ static void print_digraph(FILE *outfile, AVFilterGraph *graph)
...
@@ -66,7 +66,7 @@ static void print_digraph(FILE *outfile, AVFilterGraph *graph)
filter_ctx
->
name
,
filter_ctx
->
name
,
filter_ctx
->
filter
->
name
);
filter_ctx
->
filter
->
name
);
for
(
j
=
0
;
j
<
filter_ctx
->
output_count
;
j
++
)
{
for
(
j
=
0
;
j
<
filter_ctx
->
nb_outputs
;
j
++
)
{
AVFilterLink
*
link
=
filter_ctx
->
outputs
[
j
];
AVFilterLink
*
link
=
filter_ctx
->
outputs
[
j
];
if
(
link
)
{
if
(
link
)
{
char
dst_filter_ctx_label
[
128
];
char
dst_filter_ctx_label
[
128
];
...
...
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