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
b71dc297
Commit
b71dc297
authored
May 24, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/h263: Remove unused argument of h263_get_motion_length()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
39de31cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
h263.h
libavcodec/h263.h
+3
-3
No files found.
libavcodec/h263.h
View file @
b71dc297
...
...
@@ -126,7 +126,7 @@ int ff_h263_resync(MpegEncContext *s);
void
ff_h263_encode_motion
(
MpegEncContext
*
s
,
int
val
,
int
f_code
);
static
inline
int
h263_get_motion_length
(
MpegEncContext
*
s
,
int
val
,
int
f_code
){
static
inline
int
h263_get_motion_length
(
int
val
,
int
f_code
){
int
l
,
bit_size
,
code
;
if
(
val
==
0
)
{
...
...
@@ -146,8 +146,8 @@ static inline int h263_get_motion_length(MpegEncContext * s, int val, int f_code
static
inline
void
ff_h263_encode_motion_vector
(
MpegEncContext
*
s
,
int
x
,
int
y
,
int
f_code
){
if
(
s
->
avctx
->
flags2
&
CODEC_FLAG2_NO_OUTPUT
)
{
skip_put_bits
(
&
s
->
pb
,
h263_get_motion_length
(
s
,
x
,
f_code
)
+
h263_get_motion_length
(
s
,
y
,
f_code
));
h263_get_motion_length
(
x
,
f_code
)
+
h263_get_motion_length
(
y
,
f_code
));
}
else
{
ff_h263_encode_motion
(
s
,
x
,
f_code
);
ff_h263_encode_motion
(
s
,
y
,
f_code
);
...
...
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