Commit 646799b4 authored by Andreas Rheinhardt's avatar Andreas Rheinhardt Committed by Paul B Mahol

avformat/movenc: Fix undefined shift

Fixes the movenc FATE-test.
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
parent 093b6894
......@@ -4512,7 +4512,8 @@ static int mov_write_sidx_tag(AVIOContext *pb,
{
int64_t pos = avio_tell(pb), offset_pos, end_pos;
int64_t presentation_time, duration, offset;
int starts_with_SAP, i, entries;
unsigned starts_with_SAP;
int i, entries;
if (track->entry) {
entries = 1;
......
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