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
cf9050c7
Commit
cf9050c7
authored
Jun 13, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libavcodec/wmv2: remove dead code
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
1c5aa64a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
15 deletions
+7
-15
wmv2.c
libavcodec/wmv2.c
+7
-15
No files found.
libavcodec/wmv2.c
View file @
cf9050c7
...
...
@@ -136,21 +136,13 @@ void ff_mspel_motion(MpegEncContext *s,
if
(
s
->
flags
&
CODEC_FLAG_GRAY
)
return
;
if
(
s
->
out_format
==
FMT_H263
)
{
dxy
=
0
;
if
((
motion_x
&
3
)
!=
0
)
dxy
|=
1
;
if
((
motion_y
&
3
)
!=
0
)
dxy
|=
2
;
mx
=
motion_x
>>
2
;
my
=
motion_y
>>
2
;
}
else
{
mx
=
motion_x
/
2
;
my
=
motion_y
/
2
;
dxy
=
((
my
&
1
)
<<
1
)
|
(
mx
&
1
);
mx
>>=
1
;
my
>>=
1
;
}
dxy
=
0
;
if
((
motion_x
&
3
)
!=
0
)
dxy
|=
1
;
if
((
motion_y
&
3
)
!=
0
)
dxy
|=
2
;
mx
=
motion_x
>>
2
;
my
=
motion_y
>>
2
;
src_x
=
s
->
mb_x
*
8
+
mx
;
src_y
=
s
->
mb_y
*
8
+
my
;
...
...
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