Commit d1efdd54 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat: Document where the AVOption names can be found for the fields of AVFormatContext

Missing docs found by: nevcairiel

RFC: should we add support so that the C field names always work as av option names/keys ?
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent b8426b86
......@@ -1305,6 +1305,12 @@ typedef struct AVFormatInternal AVFormatInternal;
* version bump.
* sizeof(AVFormatContext) must not be used outside libav*, use
* avformat_alloc_context() to create an AVFormatContext.
*
* Fields can be accessed through AVOptions (av_opt*),
* the name string used matches the associated command line parameter name and
* can be found in libavformat/options_table.h.
* The AVOption/command line parameter names differ in some cases from the C
* structure field names for historic reasons or brevity.
*/
typedef struct AVFormatContext {
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment