summaryrefslogtreecommitdiff
path: root/libavformat/nullenc.c
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2011-11-24 23:03:25 +0100
committerLuca Barbato <lu_zero@gentoo.org>2011-11-25 13:16:01 +0100
commit035af998ad03020a3dda4e662dfb97c68bbabaaa (patch)
tree794fe1b1aaaf322ee372b29e47588554a1ee0d39 /libavformat/nullenc.c
parent117e2a30f254820e0fd4e4d5d9fbab757f17590f (diff)
nullenc: drop AVFMT_RAWPICTURE from the flags
This makes the two pass encoding with x264 working with -f null - as first pass.
Diffstat (limited to 'libavformat/nullenc.c')
-rw-r--r--libavformat/nullenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/nullenc.c b/libavformat/nullenc.c
index 79fc02e528..680b29c828 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,
};