diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-31 05:53:06 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-07 21:26:22 +0200 |
commit | 01ef127bf8556c934262f96d6876e4479bba9d5f (patch) | |
tree | 5884463baae9e4b9f3bea1802ec35688a719f520 /doc | |
parent | 5affab960cd50c6cf83ba05e3c24b3e6c1a9e733 (diff) | |
download | ffmpeg-01ef127bf8556c934262f96d6876e4479bba9d5f.tar.gz |
ffmpeg: support setting AVStream.discard
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ffmpeg.texi | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index 0f6c093493..68fd12f158 100644 --- a/doc/ffmpeg.texi +++ b/doc/ffmpeg.texi @@ -1146,6 +1146,30 @@ requested by @command{ffserver}. The option is intended for cases where features are needed that cannot be specified to @command{ffserver} but can be to @command{ffmpeg}. +@item -discard (@emph{input}) +Allows discarding specific streams or frames of streams at the demuxer. +Not all demuxers support this. + +@table @option +@item none +Discard no frame. + +@item default +Default, which discards no frames. + +@item noref +Discard all non-reference frames. + +@item bidir +Discard all bidirectional frames. + +@item nokey +Discard all frames excepts keyframes. + +@item all +Discard all frames. +@end table + @end table As a special exception, you can use a bitmap subtitle stream as input: it |