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
5efadcb8
Commit
5efadcb8
authored
Jul 01, 2013
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jpeg2000: Clean up return paths and error messages
Signed-off-by:
Luca Barbato
<
lu_zero@gentoo.org
>
parent
be327100
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
39 deletions
+38
-39
jpeg2000dec.c
libavcodec/jpeg2000dec.c
+38
-39
No files found.
libavcodec/jpeg2000dec.c
View file @
5efadcb8
...
...
@@ -99,7 +99,7 @@ static int get_bits(Jpeg2000DecoderContext *s, int n)
{
int
res
=
0
;
if
(
s
->
buf_end
-
s
->
buf
<
((
n
-
s
->
bit_index
)
>>
8
))
return
AVERROR
(
EINVAL
)
;
return
AVERROR
_INVALIDDATA
;
while
(
--
n
>=
0
)
{
res
<<=
1
;
if
(
s
->
bit_index
==
0
)
{
...
...
@@ -163,7 +163,7 @@ static int get_siz(Jpeg2000DecoderContext *s)
int
i
;
if
(
s
->
buf_end
-
s
->
buf
<
36
)
return
AVERROR
(
EINVAL
)
;
return
AVERROR
_INVALIDDATA
;
s
->
avctx
->
profile
=
bytestream_get_be16
(
&
s
->
buf
);
// Rsiz
s
->
width
=
bytestream_get_be32
(
&
s
->
buf
);
// Width
...
...
@@ -177,7 +177,7 @@ static int get_siz(Jpeg2000DecoderContext *s)
s
->
ncomponents
=
bytestream_get_be16
(
&
s
->
buf
);
// CSiz
if
(
s
->
buf_end
-
s
->
buf
<
2
*
s
->
ncomponents
)
return
AVERROR
(
EINVAL
)
;
return
AVERROR
_INVALIDDATA
;
for
(
i
=
0
;
i
<
s
->
ncomponents
;
i
++
)
{
// Ssiz_i XRsiz_i, YRsiz_i
uint8_t
x
=
bytestream_get_byte
(
&
s
->
buf
);
...
...
@@ -275,8 +275,8 @@ static int get_cox(Jpeg2000DecoderContext *s, Jpeg2000CodingStyle *c)
c
->
cblk_style
=
bytestream_get_byte
(
&
s
->
buf
);
if
(
c
->
cblk_style
!=
0
)
{
// cblk style
av
_log
(
s
->
avctx
,
AV_LOG_ERROR
,
"no extra cblk styles supported
\n
"
);
return
-
1
;
av
priv_request_sample
(
s
->
avctx
,
"Support for extra cblk styles
"
);
return
AVERROR_PATCHWELCOME
;
}
c
->
transform
=
bytestream_get_byte
(
&
s
->
buf
);
// DWT transformation type
/* set integer 9/7 DWT in case of BITEXACT flag */
...
...
@@ -302,7 +302,7 @@ static int get_cod(Jpeg2000DecoderContext *s, Jpeg2000CodingStyle *c,
int
compno
;
if
(
s
->
buf_end
-
s
->
buf
<
5
)
return
AVERROR
(
EINVAL
)
;
return
AVERROR
_INVALIDDATA
;
tmp
.
log2_prec_width
=
tmp
.
log2_prec_height
=
15
;
...
...
@@ -330,7 +330,7 @@ static int get_coc(Jpeg2000DecoderContext *s, Jpeg2000CodingStyle *c,
int
compno
;
if
(
s
->
buf_end
-
s
->
buf
<
2
)
return
AVERROR
(
EINVAL
)
;
return
AVERROR
_INVALIDDATA
;
compno
=
bytestream_get_byte
(
&
s
->
buf
);
...
...
@@ -348,7 +348,7 @@ static int get_qcx(Jpeg2000DecoderContext *s, int n, Jpeg2000QuantStyle *q)
int
i
,
x
;
if
(
s
->
buf_end
-
s
->
buf
<
1
)
return
AVERROR
(
EINVAL
)
;
return
AVERROR
_INVALIDDATA
;
x
=
bytestream_get_byte
(
&
s
->
buf
);
// Sqcd
...
...
@@ -358,12 +358,12 @@ static int get_qcx(Jpeg2000DecoderContext *s, int n, Jpeg2000QuantStyle *q)
if
(
q
->
quantsty
==
JPEG2000_QSTY_NONE
)
{
n
-=
3
;
if
(
s
->
buf_end
-
s
->
buf
<
n
)
return
AVERROR
(
EINVAL
)
;
return
AVERROR
_INVALIDDATA
;
for
(
i
=
0
;
i
<
n
;
i
++
)
q
->
expn
[
i
]
=
bytestream_get_byte
(
&
s
->
buf
)
>>
3
;
}
else
if
(
q
->
quantsty
==
JPEG2000_QSTY_SI
)
{
if
(
s
->
buf_end
-
s
->
buf
<
2
)
return
AVERROR
(
EINVAL
)
;
return
AVERROR
_INVALIDDATA
;
x
=
bytestream_get_be16
(
&
s
->
buf
);
q
->
expn
[
0
]
=
x
>>
11
;
q
->
mant
[
0
]
=
x
&
0x7ff
;
...
...
@@ -375,7 +375,7 @@ static int get_qcx(Jpeg2000DecoderContext *s, int n, Jpeg2000QuantStyle *q)
}
else
{
n
=
(
n
-
3
)
>>
1
;
if
(
s
->
buf_end
-
s
->
buf
<
n
)
return
AVERROR
(
EINVAL
)
;
return
AVERROR
_INVALIDDATA
;
for
(
i
=
0
;
i
<
n
;
i
++
)
{
x
=
bytestream_get_be16
(
&
s
->
buf
);
q
->
expn
[
i
]
=
x
>>
11
;
...
...
@@ -390,10 +390,10 @@ static int get_qcd(Jpeg2000DecoderContext *s, int n, Jpeg2000QuantStyle *q,
uint8_t
*
properties
)
{
Jpeg2000QuantStyle
tmp
;
int
compno
;
int
compno
,
ret
;
if
(
get_qcx
(
s
,
n
,
&
tmp
)
)
return
-
1
;
if
(
(
ret
=
get_qcx
(
s
,
n
,
&
tmp
))
<
0
)
return
ret
;
for
(
compno
=
0
;
compno
<
s
->
ncomponents
;
compno
++
)
if
(
!
(
properties
[
compno
]
&
HAD_QCC
))
memcpy
(
q
+
compno
,
&
tmp
,
sizeof
(
tmp
));
...
...
@@ -408,7 +408,7 @@ static int get_qcc(Jpeg2000DecoderContext *s, int n, Jpeg2000QuantStyle *q,
int
compno
;
if
(
s
->
buf_end
-
s
->
buf
<
1
)
return
AVERROR
(
EINVAL
)
;
return
AVERROR
_INVALIDDATA
;
compno
=
bytestream_get_byte
(
&
s
->
buf
);
properties
[
compno
]
|=
HAD_QCC
;
...
...
@@ -416,7 +416,7 @@ static int get_qcc(Jpeg2000DecoderContext *s, int n, Jpeg2000QuantStyle *q,
}
/* Get start of tile segment. */
static
uint8_
t
get_sot
(
Jpeg2000DecoderContext
*
s
,
int
n
)
static
in
t
get_sot
(
Jpeg2000DecoderContext
*
s
,
int
n
)
{
Jpeg2000TilePart
*
tp
;
uint16_t
Isot
;
...
...
@@ -424,13 +424,12 @@ static uint8_t get_sot(Jpeg2000DecoderContext *s, int n)
uint8_t
TPsot
;
if
(
s
->
buf_end
-
s
->
buf
<
4
)
return
AVERROR
(
EINVAL
)
;
return
AVERROR
_INVALIDDATA
;
Isot
=
bytestream_get_be16
(
&
s
->
buf
);
// Isot
if
(
Isot
)
{
av_log
(
s
->
avctx
,
AV_LOG_ERROR
,
"Not a DCINEMA JP2K file: more than one tile
\n
"
);
return
-
1
;
avpriv_request_sample
(
s
->
avctx
,
"Support for more than one tile"
);
return
AVERROR_PATCHWELCOME
;
}
Psot
=
bytestream_get_be32
(
&
s
->
buf
);
// Psot
TPsot
=
bytestream_get_byte
(
&
s
->
buf
);
// TPsot
...
...
@@ -449,7 +448,7 @@ static uint8_t get_sot(Jpeg2000DecoderContext *s, int n)
tp
->
tp_start_bstrm
=
s
->
buf
;
else
{
av_log
(
s
->
avctx
,
AV_LOG_ERROR
,
"SOD marker not found
\n
"
);
return
-
1
;
return
AVERROR_INVALIDDATA
;
}
/* End address of bit stream =
...
...
@@ -645,7 +644,7 @@ static int jpeg2000_decode_packet(Jpeg2000DecoderContext *s,
for
(
cblkno
=
0
;
cblkno
<
nb_code_blocks
;
cblkno
++
)
{
Jpeg2000Cblk
*
cblk
=
prec
->
cblk
+
cblkno
;
if
(
s
->
buf_end
-
s
->
buf
<
cblk
->
lengthinc
)
return
AVERROR
(
EINVAL
)
;
return
AVERROR
_INVALIDDATA
;
/* Code-block data can be empty. In that case initialize data
* with 0xFFFF. */
if
(
cblk
->
lengthinc
>
0
)
{
...
...
@@ -663,7 +662,7 @@ static int jpeg2000_decode_packet(Jpeg2000DecoderContext *s,
static
int
jpeg2000_decode_packets
(
Jpeg2000DecoderContext
*
s
,
Jpeg2000Tile
*
tile
)
{
int
layno
,
reslevelno
,
compno
,
precno
,
ok_reslevel
;
int
layno
,
reslevelno
,
compno
,
precno
,
ok_reslevel
,
ret
;
uint8_t
prog_order
=
tile
->
codsty
[
0
].
prog_order
;
uint16_t
x
;
uint16_t
y
;
...
...
@@ -683,12 +682,12 @@ static int jpeg2000_decode_packets(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile
reslevelno
;
ok_reslevel
=
1
;
for
(
precno
=
0
;
precno
<
rlevel
->
num_precincts_x
*
rlevel
->
num_precincts_y
;
precno
++
)
if
(
jpeg2000_decode_packet
(
s
,
if
(
(
ret
=
jpeg2000_decode_packet
(
s
,
codsty
,
rlevel
,
precno
,
layno
,
qntsty
->
expn
+
(
reslevelno
?
3
*
(
reslevelno
-
1
)
+
1
:
0
),
qntsty
->
nguardbits
)
)
return
-
1
;
qntsty
->
nguardbits
))
<
0
)
return
ret
;
}
}
}
...
...
@@ -731,11 +730,11 @@ static int jpeg2000_decode_packets(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile
prcy
=
ff_jpeg2000_ceildivpow2
(
y
,
reducedresno
)
>>
rlevel
->
log2_prec_height
;
precno
=
prcx
+
rlevel
->
num_precincts_x
*
prcy
;
for
(
layno
=
0
;
layno
<
tile
->
codsty
[
0
].
nlayers
;
layno
++
)
{
if
(
jpeg2000_decode_packet
(
s
,
codsty
,
rlevel
,
if
(
(
ret
=
jpeg2000_decode_packet
(
s
,
codsty
,
rlevel
,
precno
,
layno
,
qntsty
->
expn
+
(
reslevelno
?
3
*
(
reslevelno
-
1
)
+
1
:
0
),
qntsty
->
nguardbits
)
)
return
-
1
;
qntsty
->
nguardbits
))
<
0
)
return
ret
;
}
}
}
...
...
@@ -1176,7 +1175,7 @@ static int jpeg2000_read_main_headers(Jpeg2000DecoderContext *s)
break
;
if
(
s
->
buf_end
-
s
->
buf
<
2
)
return
AVERROR
(
EINVAL
)
;
return
AVERROR
_INVALIDDATA
;
len
=
bytestream_get_be16
(
&
s
->
buf
);
switch
(
marker
)
{
case
JPEG2000_SIZ
:
...
...
@@ -1276,7 +1275,7 @@ static int jpeg2000_decode_frame(AVCodecContext *avctx, void *data,
s
->
reduction_factor
=
s
->
lowres
;
if
(
s
->
buf_end
-
s
->
buf
<
2
)
return
AVERROR
(
EINVAL
)
;
return
AVERROR
_INVALIDDATA
;
// check if the image is in jp2 format
if
((
AV_RB32
(
s
->
buf
)
==
12
)
&&
...
...
@@ -1284,14 +1283,14 @@ static int jpeg2000_decode_frame(AVCodecContext *avctx, void *data,
(
AV_RB32
(
s
->
buf
+
8
)
==
JP2_SIG_VALUE
))
{
if
(
!
jp2_find_codestream
(
s
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"
couldn't find jpeg2k codestream atom
\n
"
);
return
-
1
;
"
Could not find Jpeg2000 codestream atom.
\n
"
);
return
AVERROR_INVALIDDATA
;
}
}
if
(
bytestream_get_be16
(
&
s
->
buf
)
!=
JPEG2000_SOC
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"SOC marker not present
\n
"
);
return
-
1
;
return
AVERROR_INVALIDDATA
;
}
if
(
ret
=
jpeg2000_read_main_headers
(
s
))
goto
end
;
...
...
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