Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
045654f4
Commit
045654f4
authored
Jan 16, 2014
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doxy: Document better the available AVFrame flags
parent
ff23c4e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
frame.h
libavutil/frame.h
+11
-1
No files found.
libavutil/frame.h
View file @
045654f4
...
@@ -380,13 +380,23 @@ typedef struct AVFrame {
...
@@ -380,13 +380,23 @@ typedef struct AVFrame {
AVFrameSideData
**
side_data
;
AVFrameSideData
**
side_data
;
int
nb_side_data
;
int
nb_side_data
;
/**
* @defgroup lavu_frame_flags AV_FRAME_FLAGS
* Flags describing additional frame properties.
*
* @{
*/
/**
/**
* The frame data may be corrupted, e.g. due to decoding errors.
* The frame data may be corrupted, e.g. due to decoding errors.
*/
*/
#define AV_FRAME_FLAG_CORRUPT (1 << 0)
#define AV_FRAME_FLAG_CORRUPT (1 << 0)
/**
* @}
*/
/**
/**
* Frame flags, a combination of
AV_FRAME_FLAG_*
* Frame flags, a combination of
@ref lavu_frame_flags
*/
*/
int
flags
;
int
flags
;
}
AVFrame
;
}
AVFrame
;
...
...
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