mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
lavf doxy: add demuxing stuff to lavf_decoding group
This commit is contained in:
parent
28b4c06b9d
commit
370f27dee3
@ -382,6 +382,10 @@ typedef struct AVOutputFormat {
|
|||||||
struct AVOutputFormat *next;
|
struct AVOutputFormat *next;
|
||||||
} AVOutputFormat;
|
} AVOutputFormat;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @addtogroup lavf_decoding
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
typedef struct AVInputFormat {
|
typedef struct AVInputFormat {
|
||||||
/**
|
/**
|
||||||
* A comma separated list of short names for the format. New names
|
* A comma separated list of short names for the format. New names
|
||||||
@ -503,6 +507,9 @@ typedef struct AVInputFormat {
|
|||||||
/* private fields */
|
/* private fields */
|
||||||
struct AVInputFormat *next;
|
struct AVInputFormat *next;
|
||||||
} AVInputFormat;
|
} AVInputFormat;
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
enum AVStreamParseType {
|
enum AVStreamParseType {
|
||||||
AVSTREAM_PARSE_NONE,
|
AVSTREAM_PARSE_NONE,
|
||||||
@ -1228,7 +1235,17 @@ enum CodecID av_codec_get_id(const struct AVCodecTag * const *tags, unsigned int
|
|||||||
*/
|
*/
|
||||||
unsigned int av_codec_get_tag(const struct AVCodecTag * const *tags, enum CodecID id);
|
unsigned int av_codec_get_tag(const struct AVCodecTag * const *tags, enum CodecID id);
|
||||||
|
|
||||||
/* media file input */
|
/**
|
||||||
|
* Allocate an AVFormatContext.
|
||||||
|
* avformat_free_context() can be used to free the context and everything
|
||||||
|
* allocated by the framework within it.
|
||||||
|
*/
|
||||||
|
AVFormatContext *avformat_alloc_context(void);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @addtogroup lavf_decoding
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Find AVInputFormat based on the short name of the input format.
|
* Find AVInputFormat based on the short name of the input format.
|
||||||
@ -1326,13 +1343,6 @@ attribute_deprecated int av_open_input_file(AVFormatContext **ic_ptr, const char
|
|||||||
*/
|
*/
|
||||||
int avformat_open_input(AVFormatContext **ps, const char *filename, AVInputFormat *fmt, AVDictionary **options);
|
int avformat_open_input(AVFormatContext **ps, const char *filename, AVInputFormat *fmt, AVDictionary **options);
|
||||||
|
|
||||||
/**
|
|
||||||
* Allocate an AVFormatContext.
|
|
||||||
* avformat_free_context() can be used to free the context and everything
|
|
||||||
* allocated by the framework within it.
|
|
||||||
*/
|
|
||||||
AVFormatContext *avformat_alloc_context(void);
|
|
||||||
|
|
||||||
#if FF_API_FORMAT_PARAMETERS
|
#if FF_API_FORMAT_PARAMETERS
|
||||||
/**
|
/**
|
||||||
* Read packets of a media file to get stream information. This
|
* Read packets of a media file to get stream information. This
|
||||||
@ -1512,6 +1522,9 @@ void av_close_input_stream(AVFormatContext *s);
|
|||||||
* @param s media file handle
|
* @param s media file handle
|
||||||
*/
|
*/
|
||||||
void av_close_input_file(AVFormatContext *s);
|
void av_close_input_file(AVFormatContext *s);
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Free an AVFormatContext and all its streams.
|
* Free an AVFormatContext and all its streams.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user