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
1cfe393a
Commit
1cfe393a
authored
Mar 31, 2007
by
Loren Merritt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doxy comment tweaks
Originally committed as revision 8580 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
bb21f176
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
motion_est.c
libavcodec/motion_est.c
+2
-2
motion_est_template.c
libavcodec/motion_est_template.c
+1
-1
No files found.
libavcodec/motion_est.c
View file @
1cfe393a
...
...
@@ -103,8 +103,8 @@ static int get_flags(MotionEstContext *c, int direct, int chroma){
+
(
chroma
?
FLAG_CHROMA
:
0
);
}
/*! \brief compares
two blocks, which may be full macroblocks or may be
partitions thereof.
/*! \brief compares
a block (either a full macroblock or a partition thereof)
against a proposed motion-compensated prediction of that block
*/
static
av_always_inline
int
cmp
(
MpegEncContext
*
s
,
const
int
x
,
const
int
y
,
const
int
subx
,
const
int
suby
,
const
int
size
,
const
int
h
,
int
ref_index
,
int
src_index
,
...
...
libavcodec/motion_est_template.c
View file @
1cfe393a
...
...
@@ -1004,7 +1004,7 @@ static av_always_inline int epzs_motion_search_internal(MpegEncContext * s, int
MotionEstContext
*
const
c
=
&
s
->
me
;
int
best
[
2
]
=
{
0
,
0
};
/*!< x and y coordinates of the best motion vector.
i.e. the difference between the position of the
block current being encoded and the position of
block current
ly
being encoded and the position of
the block chosen to predict it from. */
int
d
;
///< the score (cmp + penalty) of any given mv
int
dmin
;
/*!< the best value of d, i.e. the score
...
...
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