summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMika Raento <mikie@iki.fi>2014-11-14 19:12:34 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-11-15 12:04:34 +0100
commitb08fd7ea78792c4e0141e2d384b9acd4699bb5cc (patch)
treeb46250af1ce423d2e341f37b1c0a617a290a2aaf /libavformat
parent42c8db69b686949ff726b2886305f31fe40f3ab1 (diff)
mov.c: fix handling of seek return in read_mfra
this would cause mfra to be ignored in files larger than 2G Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mov.c22
1 files changed, 14 insertions, 8 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 6ba7b96f20..8bf16e7a36 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -3819,36 +3819,42 @@ static int mov_read_mfra(MOVContext *c, AVIOContext *f)
{
int64_t stream_size = avio_size(f);
int64_t original_pos = avio_tell(f);
+ int64_t seek_ret;
int32_t mfra_size;
int ret = -1;
- if ((ret = avio_seek(f, stream_size - 4, SEEK_SET)) < 0) goto fail;
+ if ((seek_ret = avio_seek(f, stream_size - 4, SEEK_SET)) < 0) {
+ ret = seek_ret;
+ goto fail;
+ }
mfra_size = avio_rb32(f);
if (mfra_size < 0 || mfra_size > stream_size) {
av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (unreasonable size)\n");
- ret = -1;
goto fail;
}
- if ((ret = avio_seek(f, -mfra_size, SEEK_CUR)) < 0) goto fail;
+ if ((seek_ret = avio_seek(f, -mfra_size, SEEK_CUR)) < 0) {
+ ret = seek_ret;
+ goto fail;
+ }
if (avio_rb32(f) != mfra_size) {
av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (size mismatch)\n");
- ret = -1;
goto fail;
}
if (avio_rb32(f) != MKBETAG('m', 'f', 'r', 'a')) {
av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (tag mismatch)\n");
goto fail;
}
+ ret = 0;
av_log(c->fc, AV_LOG_VERBOSE, "stream has mfra\n");
while (!read_tfra(c, f)) {
/* Empty */
}
fail:
- ret = avio_seek(f, original_pos, SEEK_SET);
- if (ret < 0)
+ seek_ret = avio_seek(f, original_pos, SEEK_SET);
+ if (seek_ret < 0) {
av_log(c->fc, AV_LOG_ERROR,
"failed to seek back after looking for mfra\n");
- else
- ret = 0;
+ ret = seek_ret;
+ }
return ret;
}