You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
lavf doxy: expand AVStream.codec doxy.
This commit is contained in:
@@ -610,7 +610,18 @@ typedef struct AVStream {
|
|||||||
* encoding: set by the user
|
* encoding: set by the user
|
||||||
*/
|
*/
|
||||||
int id;
|
int id;
|
||||||
AVCodecContext *codec; /**< codec context */
|
/**
|
||||||
|
* Codec context associated with this stream. Allocated and freed by
|
||||||
|
* libavformat.
|
||||||
|
*
|
||||||
|
* - decoding: The demuxer exports codec information stored in the headers
|
||||||
|
* here.
|
||||||
|
* - encoding: The user sets codec information, the muxer writes it to the
|
||||||
|
* output. Mandatory fields as specified in AVCodecContext
|
||||||
|
* documentation must be set even if this AVCodecContext is
|
||||||
|
* not actually used for encoding.
|
||||||
|
*/
|
||||||
|
AVCodecContext *codec;
|
||||||
/**
|
/**
|
||||||
* Real base framerate of the stream.
|
* Real base framerate of the stream.
|
||||||
* This is the lowest framerate with which all timestamps can be
|
* This is the lowest framerate with which all timestamps can be
|
||||||
|
Reference in New Issue
Block a user