Commit 62e95757 authored by Rodger Combs's avatar Rodger Combs Committed by Michael Niedermayer

wtvdec: fix integer overflow resulting in errors with large files

This fixes a regression in 9fbc613fSigned-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f015d3d5
......@@ -965,7 +965,7 @@ static int read_header(AVFormatContext *s)
uint8_t root[WTV_SECTOR_SIZE];
AVIOContext *pb;
int64_t timeline_pos;
int ret;
int64_t ret;
wtv->epoch =
wtv->pts =
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment