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
bb4c1888
Commit
bb4c1888
authored
Jan 10, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffprobe: reindent after previous commit
parent
b25c239c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
20 deletions
+20
-20
ffprobe.c
ffprobe.c
+20
-20
No files found.
ffprobe.c
View file @
bb4c1888
...
...
@@ -1304,26 +1304,26 @@ static void show_frame(WriterContext *w, AVFrame *frame, AVStream *stream)
switch
(
stream
->
codec
->
codec_type
)
{
case
AVMEDIA_TYPE_VIDEO
:
print_int
(
"width"
,
frame
->
width
);
print_int
(
"height"
,
frame
->
height
);
s
=
av_get_pix_fmt_name
(
frame
->
format
);
if
(
s
)
print_str
(
"pix_fmt"
,
s
);
else
print_str_opt
(
"pix_fmt"
,
"unknown"
);
if
(
frame
->
sample_aspect_ratio
.
num
)
{
print_fmt
(
"sample_aspect_ratio"
,
"%d:%d"
,
frame
->
sample_aspect_ratio
.
num
,
frame
->
sample_aspect_ratio
.
den
);
}
else
{
print_str_opt
(
"sample_aspect_ratio"
,
"N/A"
);
}
print_fmt
(
"pict_type"
,
"%c"
,
av_get_picture_type_char
(
frame
->
pict_type
));
print_int
(
"coded_picture_number"
,
frame
->
coded_picture_number
);
print_int
(
"display_picture_number"
,
frame
->
display_picture_number
);
print_int
(
"interlaced_frame"
,
frame
->
interlaced_frame
);
print_int
(
"top_field_first"
,
frame
->
top_field_first
);
print_int
(
"repeat_pict"
,
frame
->
repeat_pict
);
print_int
(
"reference"
,
frame
->
reference
);
break
;
print_int
(
"width"
,
frame
->
width
);
print_int
(
"height"
,
frame
->
height
);
s
=
av_get_pix_fmt_name
(
frame
->
format
);
if
(
s
)
print_str
(
"pix_fmt"
,
s
);
else
print_str_opt
(
"pix_fmt"
,
"unknown"
);
if
(
frame
->
sample_aspect_ratio
.
num
)
{
print_fmt
(
"sample_aspect_ratio"
,
"%d:%d"
,
frame
->
sample_aspect_ratio
.
num
,
frame
->
sample_aspect_ratio
.
den
);
}
else
{
print_str_opt
(
"sample_aspect_ratio"
,
"N/A"
);
}
print_fmt
(
"pict_type"
,
"%c"
,
av_get_picture_type_char
(
frame
->
pict_type
));
print_int
(
"coded_picture_number"
,
frame
->
coded_picture_number
);
print_int
(
"display_picture_number"
,
frame
->
display_picture_number
);
print_int
(
"interlaced_frame"
,
frame
->
interlaced_frame
);
print_int
(
"top_field_first"
,
frame
->
top_field_first
);
print_int
(
"repeat_pict"
,
frame
->
repeat_pict
);
print_int
(
"reference"
,
frame
->
reference
);
break
;
case
AVMEDIA_TYPE_AUDIO
:
s
=
av_get_sample_fmt_name
(
frame
->
format
);
...
...
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