Commit 7e4e8fdd authored by Matthieu Bouron's avatar Matthieu Bouron

Merge commit '72d62106'

* commit '72d62106':
  movenc: Add a missed const
Merged-by: 's avatarMatthieu Bouron <matthieu.bouron@stupeflix.com>
parents c60d328e 72d62106
......@@ -4249,7 +4249,7 @@ static int mov_flush_fragment(AVFormatContext *s, int force)
for (i = 0; i < s->nb_streams; i++) {
MOVTrack *track = &mov->tracks[i];
if (!track->end_reliable) {
AVPacket *next = ff_interleaved_peek(s, i);
const AVPacket *next = ff_interleaved_peek(s, i);
if (next) {
track->track_duration = next->dts - track->start_dts;
if (next->pts != AV_NOPTS_VALUE)
......
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