[FFmpeg-cvslog] nullenc: drop AVFMT_RAWPICTURE from the flags

Luca Barbato git at videolan.org
Sat Nov 26 01:17:41 CET 2011


ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Thu Nov 24 23:03:25 2011 +0100| [035af998ad03020a3dda4e662dfb97c68bbabaaa] | committer: Luca Barbato

nullenc: drop AVFMT_RAWPICTURE from the flags

This makes the two pass encoding with x264 working with -f null - as
first pass.

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

 libavformat/nullenc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavformat/nullenc.c b/libavformat/nullenc.c
index 79fc02e..680b29c 100644
--- a/libavformat/nullenc.c
+++ b/libavformat/nullenc.c
@@ -32,5 +32,5 @@ AVOutputFormat ff_null_muxer = {
     .audio_codec       = AV_NE(CODEC_ID_PCM_S16BE, CODEC_ID_PCM_S16LE),
     .video_codec       = CODEC_ID_RAWVIDEO,
     .write_packet      = null_write_packet,
-    .flags = AVFMT_NOFILE | AVFMT_RAWPICTURE | AVFMT_NOTIMESTAMPS,
+    .flags = AVFMT_NOFILE | AVFMT_NOTIMESTAMPS,
 };



More information about the ffmpeg-cvslog mailing list