mirror of https://git.ffmpeg.org/ffmpeg.git
apedec: display a warning when truncating a metadata tag
Originally committed as revision 17394 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ce09f9270a
commit
41d7f7bdb9
|
@ -111,6 +111,8 @@ static void ape_tag_read_field(AVFormatContext *s)
|
|||
get_buffer(pb, value, l);
|
||||
value[l] = 0;
|
||||
url_fskip(pb, size-l);
|
||||
if (l < size)
|
||||
av_log(s, AV_LOG_WARNING, "Too long '%s' tag was truncated.\n", key);
|
||||
av_metadata_set(&s->metadata, key, value);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue