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
13609323
Commit
13609323
authored
Oct 04, 2011
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
deshake: fix doxygen comments.
parent
5241e014
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
17 deletions
+17
-17
vf_deshake.c
libavfilter/vf_deshake.c
+17
-17
No files found.
libavfilter/vf_deshake.c
View file @
13609323
...
...
@@ -61,34 +61,34 @@
#define CHROMA_HEIGHT(link) -((-link->h) >> av_pix_fmt_descriptors[link->format].log2_chroma_h)
enum
SearchMethod
{
EXHAUSTIVE
,
//< Search all possible positions
SMART_EXHAUSTIVE
,
//< Search most possible positions (faster)
EXHAUSTIVE
,
/
//< Search all possible positions
SMART_EXHAUSTIVE
,
/
//< Search most possible positions (faster)
SEARCH_COUNT
};
typedef
struct
{
double
x
;
//< Horizontal shift
double
y
;
//< Vertical shift
double
x
;
/
//< Horizontal shift
double
y
;
/
//< Vertical shift
}
MotionVector
;
typedef
struct
{
MotionVector
vector
;
//< Motion vector
double
angle
;
//< Angle of rotation
double
zoom
;
//< Zoom percentage
MotionVector
vector
;
/
//< Motion vector
double
angle
;
/
//< Angle of rotation
double
zoom
;
/
//< Zoom percentage
}
Transform
;
typedef
struct
{
AVFilterBufferRef
*
ref
;
//< Previous frame
int
rx
;
//< Maximum horizontal shift
int
ry
;
//< Maximum vertical shift
enum
FillMethod
edge
;
//< Edge fill method
int
blocksize
;
//< Size of blocks to compare
int
contrast
;
//< Contrast threshold
enum
SearchMethod
search
;
//< Motion search method
AVFilterBufferRef
*
ref
;
/
//< Previous frame
int
rx
;
/
//< Maximum horizontal shift
int
ry
;
/
//< Maximum vertical shift
enum
FillMethod
edge
;
/
//< Edge fill method
int
blocksize
;
/
//< Size of blocks to compare
int
contrast
;
/
//< Contrast threshold
enum
SearchMethod
search
;
/
//< Motion search method
AVCodecContext
*
avctx
;
DSPContext
c
;
//< Context providing optimized SAD methods
Transform
last
;
//< Transform from last frame
int
refcount
;
//< Number of reference frames (defines averaging window)
DSPContext
c
;
/
//< Context providing optimized SAD methods
Transform
last
;
/
//< Transform from last frame
int
refcount
;
/
//< Number of reference frames (defines averaging window)
FILE
*
fp
;
}
DeshakeContext
;
...
...
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