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
cf61aaac
Commit
cf61aaac
authored
May 19, 2012
by
Kostya Shishkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
indeo: check for invalid motion vectors
parent
96037382
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
ivi_common.c
libavcodec/ivi_common.c
+16
-0
ivi_common.h
libavcodec/ivi_common.h
+1
-0
No files found.
libavcodec/ivi_common.c
View file @
cf61aaac
...
...
@@ -212,6 +212,7 @@ av_cold int ff_ivi_init_planes(IVIPlaneDesc *planes, const IVIPicConfig *cfg)
band
->
width
=
b_width
;
band
->
height
=
b_height
;
band
->
pitch
=
width_aligned
;
band
->
aheight
=
height_aligned
;
band
->
bufs
[
0
]
=
av_mallocz
(
buf_size
);
band
->
bufs
[
1
]
=
av_mallocz
(
buf_size
);
if
(
!
band
->
bufs
[
0
]
||
!
band
->
bufs
[
1
])
...
...
@@ -381,6 +382,21 @@ int ff_ivi_decode_blocks(GetBitContext *gb, IVIBandDesc *band, IVITile *tile)
mv_x
>>=
1
;
mv_y
>>=
1
;
/* convert halfpel vectors into fullpel ones */
}
if
(
mb
->
type
)
{
int
dmv_x
,
dmv_y
,
cx
,
cy
;
dmv_x
=
mb
->
mv_x
>>
band
->
is_halfpel
;
dmv_y
=
mb
->
mv_y
>>
band
->
is_halfpel
;
cx
=
mb
->
mv_x
&
band
->
is_halfpel
;
cy
=
mb
->
mv_y
&
band
->
is_halfpel
;
if
(
mb
->
xpos
+
dmv_x
<
0
||
mb
->
xpos
+
dmv_x
+
band
->
mb_size
+
cx
>
band
->
pitch
||
mb
->
ypos
+
dmv_y
<
0
||
mb
->
ypos
+
dmv_y
+
band
->
mb_size
+
cy
>
band
->
aheight
)
{
return
AVERROR_INVALIDDATA
;
}
}
}
for
(
blk
=
0
;
blk
<
num_blocks
;
blk
++
)
{
...
...
libavcodec/ivi_common.h
View file @
cf61aaac
...
...
@@ -135,6 +135,7 @@ typedef struct {
int
band_num
;
///< band number
int
width
;
int
height
;
int
aheight
;
///< aligned band height
const
uint8_t
*
data_ptr
;
///< ptr to the first byte of the band data
int
data_size
;
///< size of the band data
int16_t
*
buf
;
///< pointer to the output buffer for this band
...
...
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