mirror of https://git.ffmpeg.org/ffmpeg.git
nullenc: drop AVFMT_RAWPICTURE from the flags
This makes the two pass encoding with x264 working with -f null - as first pass.
This commit is contained in:
parent
117e2a30f2
commit
035af998ad
|
@ -32,5 +32,5 @@ AVOutputFormat ff_null_muxer = {
|
||||||
.audio_codec = AV_NE(CODEC_ID_PCM_S16BE, CODEC_ID_PCM_S16LE),
|
.audio_codec = AV_NE(CODEC_ID_PCM_S16BE, CODEC_ID_PCM_S16LE),
|
||||||
.video_codec = CODEC_ID_RAWVIDEO,
|
.video_codec = CODEC_ID_RAWVIDEO,
|
||||||
.write_packet = null_write_packet,
|
.write_packet = null_write_packet,
|
||||||
.flags = AVFMT_NOFILE | AVFMT_RAWPICTURE | AVFMT_NOTIMESTAMPS,
|
.flags = AVFMT_NOFILE | AVFMT_NOTIMESTAMPS,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue