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
42047c3e
Commit
42047c3e
authored
Sep 22, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffprobe: reindent after the previous commit
parent
4cd1addc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
ffprobe.c
ffprobe.c
+6
-6
No files found.
ffprobe.c
View file @
42047c3e
...
...
@@ -1659,13 +1659,13 @@ static void show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_i
if
(
dec
)
{
print_str
(
"codec_name"
,
dec
->
name
);
if
(
!
do_bitexact
)
{
if
(
dec
->
long_name
)
print_str
(
"codec_long_name"
,
dec
->
long_name
);
else
print_str_opt
(
"codec_long_name"
,
"unknown"
);
if
(
dec
->
long_name
)
print_str
(
"codec_long_name"
,
dec
->
long_name
);
else
print_str_opt
(
"codec_long_name"
,
"unknown"
);
}
}
else
{
print_str_opt
(
"codec_name"
,
"unknown"
);
print_str_opt
(
"codec_name"
,
"unknown"
);
if
(
!
do_bitexact
)
{
print_str_opt
(
"codec_long_name"
,
"unknown"
);
print_str_opt
(
"codec_long_name"
,
"unknown"
);
}
}
...
...
@@ -1788,8 +1788,8 @@ static void show_format(WriterContext *w, AVFormatContext *fmt_ctx)
print_int
(
"nb_streams"
,
fmt_ctx
->
nb_streams
);
print_str
(
"format_name"
,
fmt_ctx
->
iformat
->
name
);
if
(
!
do_bitexact
)
{
if
(
fmt_ctx
->
iformat
->
long_name
)
print_str
(
"format_long_name"
,
fmt_ctx
->
iformat
->
long_name
);
else
print_str_opt
(
"format_long_name"
,
"unknown"
);
if
(
fmt_ctx
->
iformat
->
long_name
)
print_str
(
"format_long_name"
,
fmt_ctx
->
iformat
->
long_name
);
else
print_str_opt
(
"format_long_name"
,
"unknown"
);
}
print_time
(
"start_time"
,
fmt_ctx
->
start_time
,
&
AV_TIME_BASE_Q
);
print_time
(
"duration"
,
fmt_ctx
->
duration
,
&
AV_TIME_BASE_Q
);
...
...
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