diff options
author | Marton Balint <cus@passwd.hu> | 2019-05-19 00:43:29 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2019-05-24 21:39:07 +0200 |
commit | f9271d0158122c9e043b7d83f691884b65ec1ba5 (patch) | |
tree | 37ae29059c502700204bc2b92bfafe284b1ff8f2 /doc | |
parent | 50789e356d65270698d0d8495323ebe76a46091a (diff) | |
download | ffmpeg-f9271d0158122c9e043b7d83f691884b65ec1ba5.tar.gz |
avformat/utils: fix stream ordering for program ID stream specifiers
Fixes a regression introduced in dbfd042983eed8586d4048795c00af820f5b6b1f.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/fftools-common-opts.texi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/fftools-common-opts.texi b/doc/fftools-common-opts.texi index e75bec4354..4c821bad07 100644 --- a/doc/fftools-common-opts.texi +++ b/doc/fftools-common-opts.texi @@ -36,7 +36,10 @@ Possible forms of stream specifiers are: Matches the stream with this index. E.g. @code{-threads:1 4} would set the thread count for the second stream to 4. If @var{stream_index} is used as an additional stream specifier (see below), then it selects stream number -@var{stream_index} from the matching streams. +@var{stream_index} from the matching streams. Stream numbering is based on the +order of the streams as detected by libavformat except when a program ID is +also specified. In this case it is based on the ordering of the streams in the +program. @item @var{stream_type}[:@var{additional_stream_specifier}] @var{stream_type} is one of following: 'v' or 'V' for video, 'a' for audio, 's' for subtitle, 'd' for data, and 't' for attachments. 'v' matches all video |