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
87f20c2f
Commit
87f20c2f
authored
Mar 11, 2006
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix %8 != 0 w/h
Originally committed as revision 5144 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
8437ff75
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
snow.c
libavcodec/snow.c
+3
-3
No files found.
libavcodec/snow.c
View file @
87f20c2f
...
...
@@ -2520,11 +2520,11 @@ static void pred_block(SnowContext *s, uint8_t *dst, uint8_t *src, uint8_t *tmp,
ff_emulated_edge_mc
(
tmp
+
MB_SIZE
,
src
,
stride
,
b_w
+
5
,
b_h
+
5
,
sx
,
sy
,
w
,
h
);
src
=
tmp
+
MB_SIZE
;
}
assert
(
b_w
==
b_h
||
2
*
b_w
==
b_h
||
b_w
==
2
*
b_h
);
assert
(
!
(
b_w
&
(
b_w
-
1
)));
//
assert(b_w == b_h || 2*b_w == b_h || b_w == 2*b_h);
//
assert(!(b_w&(b_w-1)));
assert
(
b_w
>
1
&&
b_h
>
1
);
assert
(
tab_index
>=
0
&&
tab_index
<
4
||
b_w
==
32
);
if
((
dx
&
3
)
||
(
dy
&
3
))
if
((
dx
&
3
)
||
(
dy
&
3
)
||
!
(
b_w
==
b_h
||
2
*
b_w
==
b_h
||
b_w
==
2
*
b_h
)
||
(
b_w
&
(
b_w
-
1
))
)
mc_block
(
dst
,
src
,
tmp
,
stride
,
b_w
,
b_h
,
dx
,
dy
);
else
if
(
b_w
==
32
){
int
y
;
...
...
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