mirror of https://git.ffmpeg.org/ffmpeg.git
movenc: Add a missed const
This was missed in e1eb0fc960
, when ff_interleaved_peek was
changed to include const during the evolution of the patch.
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
a79aafd0b4
commit
72d621069f
|
@ -3196,7 +3196,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)
|
||||
|
|
Loading…
Reference in New Issue