You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
apetag: return value when required.
Should fix compilation on clang.
This commit is contained in:
@@ -157,7 +157,7 @@ int64_t ff_ape_parse_tag(AVFormatContext *s)
|
||||
val = avio_rl32(pb); /* flags */
|
||||
if (val & APE_TAG_FLAG_IS_HEADER) {
|
||||
av_log(s, AV_LOG_ERROR, "APE Tag is a header\n");
|
||||
return;
|
||||
return 0;
|
||||
}
|
||||
|
||||
avio_seek(pb, file_size - tag_bytes, SEEK_SET);
|
||||
|
Reference in New Issue
Block a user