]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/dashenc.c
avcodec/av1_parse: Fix bistream typo
[ffmpeg] / libavformat / dashenc.c
index 87e31e25fc5599c32064bdc2e8bbc920ccd2e21b..df7a8564df860c08d5a59fcf4bda8515f8dbfbf5 100644 (file)
@@ -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.%02x.%02x",
+        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