You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
dash: Use correct ISO C scanf conversion specifier
This commit is contained in:
@@ -130,7 +130,7 @@ static void set_codec_str(AVFormatContext *s, AVCodecParameters *par,
|
|||||||
tags[0] = ff_mp4_obj_type;
|
tags[0] = ff_mp4_obj_type;
|
||||||
oti = av_codec_get_tag(tags, par->codec_id);
|
oti = av_codec_get_tag(tags, par->codec_id);
|
||||||
if (oti)
|
if (oti)
|
||||||
av_strlcatf(str, size, ".%02x", oti);
|
av_strlcatf(str, size, ".%02"SCNx32, oti);
|
||||||
else
|
else
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user