Commit 587e3c34 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/electronicarts: use 64bit variable for avio_tell() result

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 03acb035
......@@ -351,7 +351,7 @@ static int process_ea_header(AVFormatContext *s)
int i;
for (i = 0; i < 5 && (!ea->audio_codec || !ea->video_codec); i++) {
unsigned int startpos = avio_tell(pb);
uint64_t startpos = avio_tell(pb);
int err = 0;
blockid = avio_rl32(pb);
......
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