Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
370f27de
Commit
370f27de
authored
13 years ago
by
Anton Khirnov
Browse files
Options
Downloads
Patches
Plain Diff
lavf doxy: add demuxing stuff to lavf_decoding group
parent
28b4c06b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavformat/avformat.h
+21
-8
21 additions, 8 deletions
libavformat/avformat.h
with
21 additions
and
8 deletions
libavformat/avformat.h
+
21
−
8
View file @
370f27de
...
@@ -382,6 +382,10 @@ typedef struct AVOutputFormat {
...
@@ -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 {
...
@@ -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
...
@@ -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
...
@@ -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);
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment