aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/dashenc.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2018-09-17 14:29:46 -0300
committerJames Almer <jamrial@gmail.com>2018-09-17 14:29:46 -0300
commite3981c5a21872a6d11104f6a4fbf9be81a358a81 (patch)
treeb6ff397b26f2403012b2d74cdff02497f0f54d29 /libavformat/dashenc.c
parent422be081a3d8def358d40de3c68b00ddc0b75cdb (diff)
downloadffmpeg-e3981c5a21872a6d11104f6a4fbf9be81a358a81.tar.gz
avformat/dashenc: Format VP9 profile as decimal instead of Hexadecimal
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/dashenc.c')
-rw-r--r--libavformat/dashenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index dc8af2f7b6..df7a8564df 100644
--- a/libavformat/dashenc.c
+++ b/libavformat/dashenc.c
@@ -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.%02x.%02d.%02d",
+ av_strlcatf(str, size, "vp09.%02d.%02d.%02d",
vpcc.profile, vpcc.level, vpcc.bitdepth);
} else {
// Default to just vp9 in case of error while finding out profile or level