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
167e6f14
Commit
167e6f14
authored
Sep 30, 2014
by
Sylvain Rabot
Committed by
Vittorio Giovara
Oct 08, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dump: Update streams and chapters printout format
This matches the -map option which requires '%d:%d' format.
parent
9f3a70c4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dump.c
libavformat/dump.c
+2
-2
No files found.
libavformat/dump.c
View file @
167e6f14
...
...
@@ -332,7 +332,7 @@ static void dump_stream_format(AVFormatContext *ic, int i,
AVDictionaryEntry
*
lang
=
av_dict_get
(
st
->
metadata
,
"language"
,
NULL
,
0
);
avcodec_string
(
buf
,
sizeof
(
buf
),
st
->
codec
,
is_output
);
av_log
(
NULL
,
AV_LOG_INFO
,
" Stream #%d
.
%d"
,
index
,
i
);
av_log
(
NULL
,
AV_LOG_INFO
,
" Stream #%d
:
%d"
,
index
,
i
);
/* the pid is an important information, so we display it */
/* XXX: add a generic system */
...
...
@@ -446,7 +446,7 @@ void av_dump_format(AVFormatContext *ic, int index,
for
(
i
=
0
;
i
<
ic
->
nb_chapters
;
i
++
)
{
AVChapter
*
ch
=
ic
->
chapters
[
i
];
av_log
(
NULL
,
AV_LOG_INFO
,
" Chapter #%d
.
%d: "
,
index
,
i
);
av_log
(
NULL
,
AV_LOG_INFO
,
" Chapter #%d
:
%d: "
,
index
,
i
);
av_log
(
NULL
,
AV_LOG_INFO
,
"start %f, "
,
ch
->
start
*
av_q2d
(
ch
->
time_base
));
av_log
(
NULL
,
AV_LOG_INFO
,
...
...
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