[FFmpeg-cvslog] movenc-test: stop setting the GLOBAL_HEADER codec flag

Anton Khirnov git at videolan.org
Wed Jan 27 17:57:59 CET 2016


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Thu Jan  7 08:26:26 2016 +0100| [9cce011b1d2f66366f5d75a024c2a2f93dc2b589] | committer: Anton Khirnov

movenc-test: stop setting the GLOBAL_HEADER codec flag

This test does no encoding, setting the flag was done just to silence
the warning removed in the previous commit.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9cce011b1d2f66366f5d75a024c2a2f93dc2b589
---

 libavformat/movenc-test.c |    2 --
 1 file changed, 2 deletions(-)

diff --git a/libavformat/movenc-test.c b/libavformat/movenc-test.c
index 6520aea..cfd07aa 100644
--- a/libavformat/movenc-test.c
+++ b/libavformat/movenc-test.c
@@ -170,7 +170,6 @@ static void init_fps(int bf, int audio_preroll, int fps)
     if (!st->codec->extradata)
         exit(1);
     memcpy(st->codec->extradata, h264_extradata, sizeof(h264_extradata));
-    st->codec->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
     video_st = st;
 
     st = avformat_new_stream(ctx, NULL);
@@ -187,7 +186,6 @@ static void init_fps(int bf, int audio_preroll, int fps)
     if (!st->codec->extradata)
         exit(1);
     memcpy(st->codec->extradata, aac_extradata, sizeof(aac_extradata));
-    st->codec->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
     audio_st = st;
 
     if (avformat_write_header(ctx, &opts) < 0)



More information about the ffmpeg-cvslog mailing list