Commit af547ce5 authored by Michael Niedermayer's avatar Michael Niedermayer

fix assertion failure when writing mov files

Originally committed as revision 2673 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d13431cd
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
*/ */
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <string.h>
#include <math.h> #include <math.h>
#ifndef M_PI #ifndef M_PI
...@@ -201,6 +202,10 @@ AVStream *add_video_stream(AVFormatContext *oc, int codec_id) ...@@ -201,6 +202,10 @@ AVStream *add_video_stream(AVFormatContext *oc, int codec_id)
/* just for testing, we also add B frames */ /* just for testing, we also add B frames */
c->max_b_frames = 2; c->max_b_frames = 2;
} }
// some formats want stream headers to be seperate
if(!strcmp(oc->oformat->name, "mp4") || !strcmp(oc->oformat->name, "mov") || !strcmp(oc->oformat->name, "3gp"))
c->flags |= CODEC_FLAG_GLOBAL_HEADER;
return st; return st;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment