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
ddd0b191
Commit
ddd0b191
authored
Oct 29, 2017
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffprobe: remove usage of deprecated getter functions
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
158a79c3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
ffprobe.c
fftools/ffprobe.c
+1
-1
No files found.
fftools/ffprobe.c
View file @
ddd0b191
...
...
@@ -2792,7 +2792,7 @@ static int show_format(WriterContext *w, InputFile *ifile)
else
print_str_opt
(
"size"
,
"N/A"
);
if
(
fmt_ctx
->
bit_rate
>
0
)
print_val
(
"bit_rate"
,
fmt_ctx
->
bit_rate
,
unit_bit_per_second_str
);
else
print_str_opt
(
"bit_rate"
,
"N/A"
);
print_int
(
"probe_score"
,
av_format_get_probe_score
(
fmt_ctx
)
);
print_int
(
"probe_score"
,
fmt_ctx
->
probe_score
);
if
(
do_show_format_tags
)
ret
=
show_tags
(
w
,
fmt_ctx
->
metadata
,
SECTION_ID_FORMAT_TAGS
);
...
...
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