mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/dashenc: Format VP9 profile as decimal instead of Hexadecimal
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
422be081a3
commit
e3981c5a21
|
@ -211,7 +211,7 @@ static void set_vp9_codec_str(AVFormatContext *s, AVCodecParameters *par,
|
||||||
VPCC vpcc;
|
VPCC vpcc;
|
||||||
int ret = ff_isom_get_vpcc_features(s, par, frame_rate, &vpcc);
|
int ret = ff_isom_get_vpcc_features(s, par, frame_rate, &vpcc);
|
||||||
if (ret == 0) {
|
if (ret == 0) {
|
||||||
av_strlcatf(str, size, "vp09.%02x.%02d.%02d",
|
av_strlcatf(str, size, "vp09.%02d.%02d.%02d",
|
||||||
vpcc.profile, vpcc.level, vpcc.bitdepth);
|
vpcc.profile, vpcc.level, vpcc.bitdepth);
|
||||||
} else {
|
} else {
|
||||||
// Default to just vp9 in case of error while finding out profile or level
|
// Default to just vp9 in case of error while finding out profile or level
|
||||||
|
|
Loading…
Reference in New Issue