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
d93a448b
Commit
d93a448b
authored
Sep 16, 2011
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
graph2dot: show timebase information for audio links
parent
db79d041
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
graph2dot.c
tools/graph2dot.c
+3
-2
No files found.
tools/graph2dot.c
View file @
d93a448b
...
...
@@ -75,9 +75,10 @@ static void print_digraph(FILE *outfile, AVFilterGraph *graph)
}
else
if
(
link
->
type
==
AVMEDIA_TYPE_AUDIO
)
{
char
buf
[
255
];
av_get_channel_layout_string
(
buf
,
sizeof
(
buf
),
-
1
,
link
->
channel_layout
);
fprintf
(
outfile
,
" [ label=
\"
fmt:%s sr:%"
PRId64
" cl:%s
\"
]"
,
fprintf
(
outfile
,
" [ label=
\"
fmt:%s sr:%"
PRId64
" cl:%s
tb:%d/%d
\"
]"
,
av_get_sample_fmt_name
(
link
->
format
),
link
->
sample_rate
,
buf
);
link
->
sample_rate
,
buf
,
link
->
time_base
.
num
,
link
->
time_base
.
den
);
}
fprintf
(
outfile
,
";
\n
"
);
}
...
...
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