1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

cmdutils: clarify documentation for setup_find_stream_info_opts()

Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
Stefano Sabatini 2011-07-17 01:30:43 +02:00 committed by Anton Khirnov
parent 3c7fa664af
commit 7cea06d135

View File

@ -153,8 +153,16 @@ void parse_options(int argc, char **argv, const OptionDef *options,
*/ */
AVDictionary *filter_codec_opts(AVDictionary *opts, enum CodecID codec_id, int encoder); AVDictionary *filter_codec_opts(AVDictionary *opts, enum CodecID codec_id, int encoder);
/* /**
* Setup AVCodecContext options for avformat_find_stream_info. * Setup AVCodecContext options for avformat_find_stream_info().
*
* Create an array of dictionaries, one dictionary for each stream
* contained in s.
* Each dictionary will contain the options from codec_opts which can
* be applied to the corresponding stream codec context.
*
* @return pointer to the created array of dictionaries, NULL if it
* cannot be created
*/ */
AVDictionary **setup_find_stream_info_opts(AVFormatContext *s); AVDictionary **setup_find_stream_info_opts(AVFormatContext *s);