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
5c8e4bf7
Commit
5c8e4bf7
authored
May 14, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/qdrw: another try at skipping the first 512 bytes
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
5c219e28
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
3 deletions
+27
-3
qdrw.c
libavcodec/qdrw.c
+27
-3
No files found.
libavcodec/qdrw.c
View file @
5c8e4bf7
...
...
@@ -114,6 +114,29 @@ static int decode_rle(AVCodecContext *avctx, AVFrame *p, GetByteContext *gbc,
return
0
;
}
static
int
check_header
(
const
char
*
buf
,
int
buf_size
)
{
unsigned
w
,
h
,
v0
,
v1
;
if
(
buf_size
<
40
)
return
0
;
w
=
AV_RB16
(
buf
+
6
);
h
=
AV_RB16
(
buf
+
8
);
v0
=
AV_RB16
(
buf
+
10
);
v1
=
AV_RB16
(
buf
+
12
);
if
(
!
w
||
!
h
)
return
0
;
if
(
v0
==
0x1101
)
return
1
;
if
(
v0
==
0x0011
&&
v1
==
0x02FF
)
return
2
;
return
0
;
}
static
int
decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
got_frame
,
AVPacket
*
avpkt
)
...
...
@@ -124,9 +147,10 @@ static int decode_frame(AVCodecContext *avctx,
int
w
,
h
,
ret
;
bytestream2_init
(
&
gbc
,
avpkt
->
data
,
avpkt
->
size
);
while
(
bytestream2_get_bytes_left
(
&
gbc
)
>=
552
&&
(
!
AV_RB16
(
&
avpkt
->
data
[
bytestream2_tell
(
&
gbc
)
+
6
])
||
!
AV_RB16
(
&
avpkt
->
data
[
bytestream2_tell
(
&
gbc
)
+
8
])))
if
(
bytestream2_get_bytes_left
(
&
gbc
)
>=
552
&&
!
check_header
(
gbc
.
buffer
,
bytestream2_get_bytes_left
(
&
gbc
))
&&
check_header
(
gbc
.
buffer
+
512
,
bytestream2_get_bytes_left
(
&
gbc
)
-
512
)
)
bytestream2_skip
(
&
gbc
,
512
);
/* smallest PICT header */
...
...
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