mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit 'b2b79eca6fae2466a53c5daa163a37e2474364fc'
* commit 'b2b79eca6fae2466a53c5daa163a37e2474364fc': movenc: Don't check the custom IO flag when using faststart Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
39cce77faf
|
@ -4357,10 +4357,9 @@ static int mov_write_header(AVFormatContext *s)
|
||||||
|
|
||||||
/* faststart: moov at the beginning of the file, if supported */
|
/* faststart: moov at the beginning of the file, if supported */
|
||||||
if (mov->flags & FF_MOV_FLAG_FASTSTART) {
|
if (mov->flags & FF_MOV_FLAG_FASTSTART) {
|
||||||
if ((mov->flags & FF_MOV_FLAG_FRAGMENT) ||
|
if (mov->flags & FF_MOV_FLAG_FRAGMENT) {
|
||||||
(s->flags & AVFMT_FLAG_CUSTOM_IO)) {
|
|
||||||
av_log(s, AV_LOG_WARNING, "The faststart flag is incompatible "
|
av_log(s, AV_LOG_WARNING, "The faststart flag is incompatible "
|
||||||
"with fragmentation and custom IO, disabling faststart\n");
|
"with fragmentation, disabling faststart\n");
|
||||||
mov->flags &= ~FF_MOV_FLAG_FASTSTART;
|
mov->flags &= ~FF_MOV_FLAG_FASTSTART;
|
||||||
} else
|
} else
|
||||||
mov->reserved_moov_size = -1;
|
mov->reserved_moov_size = -1;
|
||||||
|
|
Loading…
Reference in New Issue