Browse Source

nullenc: drop AVFMT_RAWPICTURE from the flags

This makes the two pass encoding with x264 working with -f null - as
first pass.
tags/n0.9
Luca Barbato 13 years ago
parent
commit
035af998ad
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/nullenc.c

+ 1
- 1
libavformat/nullenc.c View File

@@ -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,
};

Loading…
Cancel
Save