You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
lavf: properly document the distinction between flags and ctx_flags
This commit is contained in:
@@ -927,7 +927,11 @@ typedef struct AVFormatContext {
|
|||||||
AVIOContext *pb;
|
AVIOContext *pb;
|
||||||
|
|
||||||
/* stream info */
|
/* stream info */
|
||||||
int ctx_flags; /**< Format-specific flags, see AVFMTCTX_xx */
|
/**
|
||||||
|
* Flags signalling stream properties. A combination of AVFMTCTX_*.
|
||||||
|
* Set by libavformat.
|
||||||
|
*/
|
||||||
|
int ctx_flags;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Number of elements in AVFormatContext.streams.
|
* Number of elements in AVFormatContext.streams.
|
||||||
@@ -985,6 +989,10 @@ typedef struct AVFormatContext {
|
|||||||
unsigned int packet_size;
|
unsigned int packet_size;
|
||||||
int max_delay;
|
int max_delay;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Flags modifying the (de)muxer behaviour. A combination of AVFMT_FLAG_*.
|
||||||
|
* Set by the user before avformat_open_input() / avformat_write_header().
|
||||||
|
*/
|
||||||
int flags;
|
int flags;
|
||||||
#define AVFMT_FLAG_GENPTS 0x0001 ///< Generate missing pts even if it requires parsing future frames.
|
#define AVFMT_FLAG_GENPTS 0x0001 ///< Generate missing pts even if it requires parsing future frames.
|
||||||
#define AVFMT_FLAG_IGNIDX 0x0002 ///< Ignore index.
|
#define AVFMT_FLAG_IGNIDX 0x0002 ///< Ignore index.
|
||||||
|
Reference in New Issue
Block a user