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
4efbeada
Commit
4efbeada
authored
Jun 17, 2016
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/snow: Document BlockNode
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
737f0657
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
snow.h
libavcodec/snow.h
+7
-7
No files found.
libavcodec/snow.h
View file @
4efbeada
...
...
@@ -48,14 +48,14 @@
#define LOG2_OBMC_MAX 8
#define OBMC_MAX (1<<(LOG2_OBMC_MAX))
typedef
struct
BlockNode
{
int16_t
mx
;
int16_t
my
;
uint8_t
ref
;
uint8_t
color
[
3
];
uint8_t
type
;
int16_t
mx
;
///< Motion vector component X, see mv_scale
int16_t
my
;
///< Motion vector component Y, see mv_scale
uint8_t
ref
;
///< Reference frame index
uint8_t
color
[
3
];
///< Color for intra
uint8_t
type
;
///< Bitfield of BLOCK_*
//#define TYPE_SPLIT 1
#define BLOCK_INTRA 1
#define BLOCK_OPT 2
#define BLOCK_INTRA 1
///< Intra block, inter otherwise
#define BLOCK_OPT 2
///< Block needs no checks in this round of iterative motion estiation
//#define TYPE_NOCOLOR 4
uint8_t
level
;
//FIXME merge into type?
}
BlockNode
;
...
...
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