Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
e3981c5a
Commit
e3981c5a
authored
Sep 17, 2018
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/dashenc: Format VP9 profile as decimal instead of Hexadecimal
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
422be081
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
dashenc.c
libavformat/dashenc.c
+1
-1
No files found.
libavformat/dashenc.c
View file @
e3981c5a
...
...
@@ -211,7 +211,7 @@ static void set_vp9_codec_str(AVFormatContext *s, AVCodecParameters *par,
VPCC
vpcc
;
int
ret
=
ff_isom_get_vpcc_features
(
s
,
par
,
frame_rate
,
&
vpcc
);
if
(
ret
==
0
)
{
av_strlcatf
(
str
,
size
,
"vp09.%02
x
.%02d.%02d"
,
av_strlcatf
(
str
,
size
,
"vp09.%02
d
.%02d.%02d"
,
vpcc
.
profile
,
vpcc
.
level
,
vpcc
.
bitdepth
);
}
else
{
// Default to just vp9 in case of error while finding out profile or level
...
...
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