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
da357973
Commit
da357973
authored
Oct 08, 2011
by
Laurent Aimar
Committed by
Michael Niedermayer
Oct 09, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eamad: check for out of bound reads when doing MC
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
6e20554a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
eamad.c
libavcodec/eamad.c
+8
-2
No files found.
libavcodec/eamad.c
View file @
da357973
...
...
@@ -85,15 +85,21 @@ static inline void comp_block(MadContext *t, int mb_x, int mb_y,
{
MpegEncContext
*
s
=
&
t
->
s
;
if
(
j
<
4
)
{
unsigned
offset
=
(
mb_y
*
16
+
((
j
&
2
)
<<
2
)
+
mv_y
)
*
t
->
last_frame
.
linesize
[
0
]
+
mb_x
*
16
+
((
j
&
1
)
<<
3
)
+
mv_x
;
if
(
offset
>=
(
s
->
height
-
7
)
*
t
->
last_frame
.
linesize
[
0
]
-
7
)
return
;
comp
(
t
->
frame
.
data
[
0
]
+
(
mb_y
*
16
+
((
j
&
2
)
<<
2
))
*
t
->
frame
.
linesize
[
0
]
+
mb_x
*
16
+
((
j
&
1
)
<<
3
),
t
->
frame
.
linesize
[
0
],
t
->
last_frame
.
data
[
0
]
+
(
mb_y
*
16
+
((
j
&
2
)
<<
2
)
+
mv_y
)
*
t
->
last_frame
.
linesize
[
0
]
+
mb_x
*
16
+
((
j
&
1
)
<<
3
)
+
mv_x
,
t
->
last_frame
.
data
[
0
]
+
offset
,
t
->
last_frame
.
linesize
[
0
],
add
);
}
else
if
(
!
(
s
->
avctx
->
flags
&
CODEC_FLAG_GRAY
))
{
int
index
=
j
-
3
;
unsigned
offset
=
(
mb_y
*
8
+
(
mv_y
/
2
))
*
t
->
last_frame
.
linesize
[
index
]
+
mb_x
*
8
+
(
mv_x
/
2
);
if
(
offset
>=
(
s
->
height
/
2
-
7
)
*
t
->
last_frame
.
linesize
[
index
]
-
7
)
return
;
comp
(
t
->
frame
.
data
[
index
]
+
(
mb_y
*
8
)
*
t
->
frame
.
linesize
[
index
]
+
mb_x
*
8
,
t
->
frame
.
linesize
[
index
],
t
->
last_frame
.
data
[
index
]
+
(
mb_y
*
8
+
(
mv_y
/
2
))
*
t
->
last_frame
.
linesize
[
index
]
+
mb_x
*
8
+
(
mv_x
/
2
)
,
t
->
last_frame
.
data
[
index
]
+
offset
,
t
->
last_frame
.
linesize
[
index
],
add
);
}
}
...
...
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