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
80944df7
Commit
80944df7
authored
Jan 24, 2011
by
Mans Rullgard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86: fix overflow in h264 8x8 planar prediction
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
e63dd5fb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
h264_intrapred.asm
libavcodec/x86/h264_intrapred.asm
+4
-4
No files found.
libavcodec/x86/h264_intrapred.asm
View file @
80944df7
...
...
@@ -637,10 +637,6 @@ cglobal pred8x8_plane_%1, 2, 7, %2
%endif
paddw
m0
,
m1
; sum of H coefficients
pmullw
m0
,
[
pw_17
]
paddw
m0
,
[
pw_16
]
psraw
m0
,
5
lea
r4
,
[
r0
+
r2
*
4
-
1
]
lea
r3
,
[
r0
-
1
]
add
r4
,
r2
...
...
@@ -694,6 +690,10 @@ cglobal pred8x8_plane_%1, 2, 7, %2
shl
r3
,
4
movd
r1d
,
m0
movsx
r1d
,
r1w
imul
r1d
,
17
add
r1d
,
16
sar
r1d
,
5
movd
m0
,
r1d
add
r1d
,
r5d
sub
r3d
,
r1d
add
r1d
,
r1d
...
...
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