mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
movenc: Place the sidx index after the initial moov/mdat pair
For fragmented files with non-empty moov, with a fragment index (sidx), place the index after the initial moov/mdat pair. Previously, for this pathological case, the index was written at the start of the file. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
83f254e65f
commit
5f200bbf98
@ -3242,6 +3242,9 @@ static int mov_flush_fragment(AVFormatContext *s)
|
|||||||
avio_write(s->pb, buf, buf_size);
|
avio_write(s->pb, buf, buf_size);
|
||||||
av_free(buf);
|
av_free(buf);
|
||||||
|
|
||||||
|
if (mov->flags & FF_MOV_FLAG_FASTSTART)
|
||||||
|
mov->reserved_header_pos = avio_tell(s->pb);
|
||||||
|
|
||||||
mov->moov_written = 1;
|
mov->moov_written = 1;
|
||||||
mov->mdat_size = 0;
|
mov->mdat_size = 0;
|
||||||
for (i = 0; i < mov->nb_streams; i++) {
|
for (i = 0; i < mov->nb_streams; i++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user