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
ccc27e21
Commit
ccc27e21
authored
Jan 08, 2012
by
Aneesh Dogra
Committed by
Ronald S. Bultje
Jan 08, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bfi: Use bytestream2 functions to prevent buffer overreads.
Signed-off-by:
Ronald S. Bultje
<
rsbultje@gmail.com
>
parent
529a25d6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
12 deletions
+14
-12
bfi.c
libavcodec/bfi.c
+14
-12
No files found.
libavcodec/bfi.c
View file @
ccc27e21
...
...
@@ -47,7 +47,7 @@ static av_cold int bfi_decode_init(AVCodecContext *avctx)
static
int
bfi_decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
data_size
,
AVPacket
*
avpkt
)
{
const
uint8_t
*
buf
=
avpkt
->
data
,
*
buf_end
=
avpkt
->
data
+
avpkt
->
size
;
GetByteContext
g
;
int
buf_size
=
avpkt
->
size
;
BFIContext
*
bfi
=
avctx
->
priv_data
;
uint8_t
*
dst
=
bfi
->
dst
;
...
...
@@ -66,6 +66,8 @@ static int bfi_decode_frame(AVCodecContext *avctx, void *data,
return
-
1
;
}
bytestream2_init
(
&
g
,
avpkt
->
data
,
buf_size
);
/* Set frame parameters and palette, if necessary */
if
(
!
avctx
->
frame_number
)
{
bfi
->
frame
.
pict_type
=
AV_PICTURE_TYPE_I
;
...
...
@@ -91,15 +93,15 @@ static int bfi_decode_frame(AVCodecContext *avctx, void *data,
bfi
->
frame
.
key_frame
=
0
;
}
b
uf
+=
4
;
// Unpacked size, not required.
b
ytestream2_skip
(
&
g
,
4
)
;
// Unpacked size, not required.
while
(
dst
!=
frame_end
)
{
static
const
uint8_t
lentab
[
4
]
=
{
0
,
2
,
0
,
1
};
unsigned
int
byte
=
*
buf
++
,
av_uninit
(
offset
);
unsigned
int
byte
=
bytestream2_get_byte
(
&
g
)
,
av_uninit
(
offset
);
unsigned
int
code
=
byte
>>
6
;
unsigned
int
length
=
byte
&
~
0xC0
;
if
(
buf
>=
buf_end
)
{
if
(
!
bytestream2_get_bytes_left
(
&
g
)
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Input resolution larger than actual frame.
\n
"
);
return
-
1
;
...
...
@@ -108,16 +110,16 @@ static int bfi_decode_frame(AVCodecContext *avctx, void *data,
/* Get length and offset(if required) */
if
(
length
==
0
)
{
if
(
code
==
1
)
{
length
=
bytestream
_get_byte
(
&
buf
);
offset
=
bytestream
_get_le16
(
&
buf
);
length
=
bytestream
2_get_byte
(
&
g
);
offset
=
bytestream
2_get_le16
(
&
g
);
}
else
{
length
=
bytestream
_get_le16
(
&
buf
);
length
=
bytestream
2_get_le16
(
&
g
);
if
(
code
==
2
&&
length
==
0
)
break
;
}
}
else
{
if
(
code
==
1
)
offset
=
bytestream
_get_byte
(
&
buf
);
offset
=
bytestream
2_get_byte
(
&
g
);
}
/* Do boundary check */
...
...
@@ -127,11 +129,11 @@ static int bfi_decode_frame(AVCodecContext *avctx, void *data,
switch
(
code
)
{
case
0
:
//Normal Chain
if
(
length
>=
b
uf_end
-
buf
)
{
if
(
length
>=
b
ytestream2_get_bytes_left
(
&
g
)
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Frame larger than buffer.
\n
"
);
return
-
1
;
}
bytestream
_get_buffer
(
&
buf
,
dst
,
length
);
bytestream
2_get_buffer
(
&
g
,
dst
,
length
);
dst
+=
length
;
break
;
...
...
@@ -149,8 +151,8 @@ static int bfi_decode_frame(AVCodecContext *avctx, void *data,
break
;
case
3
:
//Fill Chain
colour1
=
bytestream
_get_byte
(
&
buf
);
colour2
=
bytestream
_get_byte
(
&
buf
);
colour1
=
bytestream
2_get_byte
(
&
g
);
colour2
=
bytestream
2_get_byte
(
&
g
);
while
(
length
--
)
{
*
dst
++
=
colour1
;
*
dst
++
=
colour2
;
...
...
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