[FFmpeg-cvslog] avformat/dashenc: Format VP9 profile as decimal instead of Hexadecimal

James Almer git at videolan.org
Mon Sep 17 20:30:51 EEST 2018


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Mon Sep 17 14:29:46 2018 -0300| [e3981c5a21872a6d11104f6a4fbf9be81a358a81] | committer: James Almer

avformat/dashenc: Format VP9 profile as decimal instead of Hexadecimal

Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e3981c5a21872a6d11104f6a4fbf9be81a358a81
---

 libavformat/dashenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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



More information about the ffmpeg-cvslog mailing list