summaryrefslogtreecommitdiff
path: root/libavformat/ape.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/ape.c')
-rw-r--r--libavformat/ape.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/ape.c b/libavformat/ape.c
index 061f32866f..50a1aa13c1 100644
--- a/libavformat/ape.c
+++ b/libavformat/ape.c
@@ -374,7 +374,7 @@ static int ape_read_header(AVFormatContext * s)
}
/* try to read APE tags */
- if (pb->seekable) {
+ if (pb->seekable & AVIO_SEEKABLE_NORMAL) {
ff_ape_parse_tag(s);
avio_seek(pb, 0, SEEK_SET);
}