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
1dcf91f2
Commit
1dcf91f2
authored
Feb 27, 2017
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/qdrw: fix decoding of odd sized images for 8bpp
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
dc78696e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
8 deletions
+6
-8
qdrw.c
libavcodec/qdrw.c
+6
-8
No files found.
libavcodec/qdrw.c
View file @
1dcf91f2
...
...
@@ -231,26 +231,24 @@ static int decode_rle(AVCodecContext *avctx, AVFrame *p, GetByteContext *gbc,
if
(
code
&
0x80
)
{
/* run */
pix
=
bytestream2_get_byte
(
gbc
);
for
(
j
=
0
;
j
<
257
-
code
;
j
++
)
{
out
[
pos
]
=
pix
;
if
(
pos
<
offset
)
out
[
pos
]
=
pix
;
pos
+=
step
;
if
(
pos
>=
offset
)
{
if
(
pos
>=
offset
&&
step
>
1
)
{
pos
-=
offset
;
pos
++
;
}
if
(
pos
>=
offset
)
return
AVERROR_INVALIDDATA
;
}
left
-=
2
;
}
else
{
/* copy */
for
(
j
=
0
;
j
<
code
+
1
;
j
++
)
{
out
[
pos
]
=
bytestream2_get_byte
(
gbc
);
if
(
pos
<
offset
)
out
[
pos
]
=
bytestream2_get_byte
(
gbc
);
pos
+=
step
;
if
(
pos
>=
offset
)
{
if
(
pos
>=
offset
&&
step
>
1
)
{
pos
-=
offset
;
pos
++
;
}
if
(
pos
>=
offset
)
return
AVERROR_INVALIDDATA
;
}
left
-=
2
+
code
;
}
...
...
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