Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
370f27de
Commit
370f27de
authored
Dec 10, 2011
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf doxy: add demuxing stuff to lavf_decoding group
parent
28b4c06b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
8 deletions
+21
-8
avformat.h
libavformat/avformat.h
+21
-8
No files found.
libavformat/avformat.h
View file @
370f27de
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment