Browse Source

movenc: Simplify code by using an existing local pointer

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n2.5
Martin Storsjö 10 years ago
parent
commit
e44ee1eb8d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/movenc.c

+ 1
- 1
libavformat/movenc.c View File

@@ -2979,7 +2979,7 @@ static int mov_flush_fragment(AVFormatContext *s)
}
info = &track->frag_info[track->nb_frag_info - 1];
info->offset = avio_tell(s->pb);
info->time = mov->tracks[i].frag_start;
info->time = track->frag_start;
info->duration = duration;
mov_write_tfrf_tags(s->pb, mov, track);



Loading…
Cancel
Save