Skip to content
Snippets Groups Projects
Commit 68a06a24 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

Merge commit '724cbea7'


* commit '724cbea7':
  movenc: Remove an unnecessary condition when flushing fragments

Merged-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parents 7ca10d10 724cbea7
No related branches found
No related tags found
No related merge requests found
...@@ -3836,7 +3836,7 @@ static int mov_flush_fragment(AVFormatContext *s) ...@@ -3836,7 +3836,7 @@ static int mov_flush_fragment(AVFormatContext *s)
if (!(mov->flags & FF_MOV_FLAG_FRAGMENT)) if (!(mov->flags & FF_MOV_FLAG_FRAGMENT))
return 0; return 0;
if (!(mov->flags & FF_MOV_FLAG_EMPTY_MOOV) && mov->fragments == 0) { if (mov->fragments == 0) {
int64_t pos = avio_tell(s->pb); int64_t pos = avio_tell(s->pb);
uint8_t *buf; uint8_t *buf;
int buf_size, moov_size; int buf_size, moov_size;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment