Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
6bfe0d4c
Commit
6bfe0d4c
authored
13 years ago
by
Laurent Aimar
Committed by
Michael Niedermayer
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
eatgv: fix pointer arithmetic overflows.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
09302a89
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/eatgv.c
+15
-10
15 additions, 10 deletions
libavcodec/eatgv.c
with
15 additions
and
10 deletions
libavcodec/eatgv.c
+
15
−
10
View file @
6bfe0d4c
...
...
@@ -74,7 +74,7 @@ static int unpack(const uint8_t *src, const uint8_t *src_end, unsigned char *dst
else
src
+=
2
;
if
(
src
+
3
>
src_end
)
if
(
src
_end
-
src
<
3
)
return
-
1
;
size
=
AV_RB24
(
src
);
src
+=
3
;
...
...
@@ -138,7 +138,7 @@ static int unpack(const uint8_t *src, const uint8_t *src_end, unsigned char *dst
* @return 0 on success, -1 on critical buffer underflow
*/
static
int
tgv_decode_inter
(
TgvContext
*
s
,
const
uint8_t
*
buf
,
const
uint8_t
*
buf_end
){
unsigned
char
*
frame0_end
=
s
->
last_frame
.
data
[
0
]
+
s
->
avctx
->
height
*
s
->
last_frame
.
linesize
[
0
];
unsigned
last_frame_size
=
s
->
avctx
->
height
*
s
->
last_frame
.
linesize
[
0
];
int
num_mvs
;
int
num_blocks_raw
;
int
num_blocks_packed
;
...
...
@@ -148,7 +148,7 @@ static int tgv_decode_inter(TgvContext * s, const uint8_t *buf, const uint8_t *b
int
mvbits
;
const
unsigned
char
*
blocks_raw
;
if
(
buf
+
12
>
buf_end
)
if
(
buf
_end
-
buf
<
12
)
return
-
1
;
num_mvs
=
AV_RL16
(
&
buf
[
0
]);
...
...
@@ -171,7 +171,7 @@ static int tgv_decode_inter(TgvContext * s, const uint8_t *buf, const uint8_t *b
/* read motion vectors */
mvbits
=
(
num_mvs
*
2
*
10
+
31
)
&
~
31
;
if
(
buf
+
(
mvbits
>>
3
)
+
16
*
num_blocks_raw
+
8
*
num_blocks_packed
>
buf_end
)
if
(
buf
_end
-
buf
<
(
mvbits
>>
3
)
+
16
*
num_blocks_raw
+
8
*
num_blocks_packed
)
return
-
1
;
init_get_bits
(
&
gb
,
buf
,
mvbits
);
...
...
@@ -207,12 +207,14 @@ static int tgv_decode_inter(TgvContext * s, const uint8_t *buf, const uint8_t *b
int
src_stride
;
if
(
vector
<
num_mvs
)
{
src
=
s
->
last_frame
.
data
[
0
]
+
(
y
*
4
+
s
->
mv_codebook
[
vector
][
1
])
*
s
->
last_frame
.
linesize
[
0
]
+
x
*
4
+
s
->
mv_codebook
[
vector
][
0
];
unsigned
offset
=
(
y
*
4
+
s
->
mv_codebook
[
vector
][
1
])
*
s
->
last_frame
.
linesize
[
0
]
+
x
*
4
+
s
->
mv_codebook
[
vector
][
0
];
src_stride
=
s
->
last_frame
.
linesize
[
0
];
if
(
src
<
s
->
last_frame
.
data
[
0
]
||
src
+
3
*
src_stride
+
3
>=
frame0_end
)
if
(
offset
>=
last_frame_size
-
(
3
*
src_stride
+
3
)
)
continue
;
src
=
s
->
last_frame
.
data
[
0
]
+
offset
;
}
else
{
int
offset
=
vector
-
num_mvs
;
if
(
offset
<
num_blocks_raw
)
...
...
@@ -252,12 +254,15 @@ static int tgv_decode_frame(AVCodecContext *avctx,
const
uint8_t
*
buf_end
=
buf
+
buf_size
;
int
chunk_type
;
if
(
buf_end
-
buf
<
EA_PREAMBLE_SIZE
)
return
AVERROR_INVALIDDATA
;
chunk_type
=
AV_RL32
(
&
buf
[
0
]);
buf
+=
EA_PREAMBLE_SIZE
;
if
(
chunk_type
==
kVGT_TAG
)
{
int
pal_count
,
i
;
if
(
buf
+
12
>
buf_end
)
{
if
(
buf
_end
-
buf
<
12
)
{
av_log
(
avctx
,
AV_LOG_WARNING
,
"truncated header
\n
"
);
return
-
1
;
}
...
...
@@ -272,7 +277,7 @@ static int tgv_decode_frame(AVCodecContext *avctx,
pal_count
=
AV_RL16
(
&
buf
[
6
]);
buf
+=
12
;
for
(
i
=
0
;
i
<
pal_count
&&
i
<
AVPALETTE_COUNT
&&
buf
+
2
<
buf_end
;
i
++
)
{
for
(
i
=
0
;
i
<
pal_count
&&
i
<
AVPALETTE_COUNT
&&
buf
_end
-
buf
>=
3
;
i
++
)
{
s
->
palette
[
i
]
=
AV_RB24
(
buf
);
buf
+=
3
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment