mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
Fix all -Wformat warnings raised by DJGPP
This commit is contained in:
parent
1473afac5d
commit
549045254c
56 changed files with 118 additions and 101 deletions
|
|
@ -380,7 +380,8 @@ int ff_rm_read_mdpr_codecdata(AVFormatContext *s, AVIOContext *pb,
|
|||
st->codecpar->codec_tag = avio_rl32(pb);
|
||||
st->codecpar->codec_id = ff_codec_get_id(ff_rm_codec_tags,
|
||||
st->codecpar->codec_tag);
|
||||
av_log(s, AV_LOG_TRACE, "%X %X\n", st->codecpar->codec_tag, MKTAG('R', 'V', '2', '0'));
|
||||
av_log(s, AV_LOG_TRACE, "%"PRIX32" %X\n",
|
||||
st->codecpar->codec_tag, MKTAG('R', 'V', '2', '0'));
|
||||
if (st->codecpar->codec_id == AV_CODEC_ID_NONE)
|
||||
goto fail1;
|
||||
st->codecpar->width = avio_rb16(pb);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue