mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
movenc: Add a missed const
This was missed in e1eb0fc9601, 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…
x
Reference in New Issue
Block a user