summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-12-10 21:04:30 +0100
committerAnton Khirnov <anton@khirnov.net>2011-12-10 22:02:28 +0100
commit370f27dee34e9d26c2da1749d2ad31e690cdd61a (patch)
treefa2425f880d5ad80d7992ee3f934aa655ec6ca18 /libavformat
parent28b4c06b9dde290ac5a5743edd0eb8f7b4296d1a (diff)
lavf doxy: add demuxing stuff to lavf_decoding group
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/avformat.h29
1 files changed, 21 insertions, 8 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index a0d8740566..aeea779e9b 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -382,6 +382,10 @@ typedef struct AVOutputFormat {
struct AVOutputFormat *next;
} AVOutputFormat;
+/**
+ * @addtogroup lavf_decoding
+ * @{
+ */
typedef struct AVInputFormat {
/**
* A comma separated list of short names for the format. New names
@@ -503,6 +507,9 @@ typedef struct AVInputFormat {
/* private fields */
struct AVInputFormat *next;
} AVInputFormat;
+/**
+ * @}
+ */
enum AVStreamParseType {
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);
-/* 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.
@@ -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);
-/**
- * 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
/**
* 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
*/
void av_close_input_file(AVFormatContext *s);
+/**
+ * @}
+ */
/**
* Free an AVFormatContext and all its streams.