mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/movenc: Fix undefined shift
Fixes the movenc FATE-test.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
(cherry picked from commit 646799b42f
)
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
2b9ddde1d0
commit
62df14c7fe
|
@ -4453,7 +4453,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;
|
||||
|
|
Loading…
Reference in New Issue