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
10393768
Commit
10393768
authored
Jun 03, 2013
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tiff: refactor deflate support in a separate function
Report when zlib support is missing.
parent
f8a4d5e9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
25 deletions
+37
-25
tiff.c
libavcodec/tiff.c
+37
-25
No files found.
libavcodec/tiff.c
View file @
10393768
...
...
@@ -111,6 +111,35 @@ static int tiff_uncompress(uint8_t *dst, unsigned long *len, const uint8_t *src,
*
len
=
zstream
.
total_out
;
return
zret
==
Z_STREAM_END
?
Z_OK
:
zret
;
}
static
int
tiff_unpack_zlib
(
TiffContext
*
s
,
uint8_t
*
dst
,
int
stride
,
const
uint8_t
*
src
,
int
size
,
int
width
,
int
lines
)
{
uint8_t
*
zbuf
;
unsigned
long
outlen
;
int
ret
,
line
;
outlen
=
width
*
lines
;
zbuf
=
av_malloc
(
outlen
);
if
(
!
zbuf
)
return
AVERROR
(
ENOMEM
);
ret
=
tiff_uncompress
(
zbuf
,
&
outlen
,
src
,
size
);
if
(
ret
!=
Z_OK
)
{
av_log
(
s
->
avctx
,
AV_LOG_ERROR
,
"Uncompressing failed (%lu of %lu) with error %d
\n
"
,
outlen
,
(
unsigned
long
)
width
*
lines
,
ret
);
av_free
(
zbuf
);
return
AVERROR_UNKNOWN
;
}
src
=
zbuf
;
for
(
line
=
0
;
line
<
lines
;
line
++
)
{
memcpy
(
dst
,
src
,
width
);
dst
+=
stride
;
src
+=
width
;
}
av_free
(
zbuf
);
return
0
;
}
#endif
static
int
tiff_unpack_strip
(
TiffContext
*
s
,
uint8_t
*
dst
,
int
stride
,
...
...
@@ -123,33 +152,16 @@ static int tiff_unpack_strip(TiffContext *s, uint8_t *dst, int stride,
if
(
size
<=
0
)
return
AVERROR_INVALIDDATA
;
#if CONFIG_ZLIB
if
(
s
->
compr
==
TIFF_DEFLATE
||
s
->
compr
==
TIFF_ADOBE_DEFLATE
)
{
uint8_t
*
zbuf
;
unsigned
long
outlen
;
int
ret
;
outlen
=
width
*
lines
;
zbuf
=
av_malloc
(
outlen
);
if
(
!
zbuf
)
return
AVERROR
(
ENOMEM
);
ret
=
tiff_uncompress
(
zbuf
,
&
outlen
,
src
,
size
);
if
(
ret
!=
Z_OK
)
{
av_log
(
s
->
avctx
,
AV_LOG_ERROR
,
"Uncompressing failed (%lu of %lu) with error %d
\n
"
,
outlen
,
(
unsigned
long
)
width
*
lines
,
ret
);
av_free
(
zbuf
);
return
AVERROR_UNKNOWN
;
}
src
=
zbuf
;
for
(
line
=
0
;
line
<
lines
;
line
++
)
{
memcpy
(
dst
,
src
,
width
);
dst
+=
stride
;
src
+=
width
;
}
av_free
(
zbuf
);
return
0
;
}
#if CONFIG_ZLIB
return
tiff_unpack_zlib
(
s
,
dst
,
stride
,
src
,
size
,
width
,
lines
);
#else
av_log
(
s
->
avctx
,
AV_LOG_ERROR
,
"zlib support not enabled, "
"deflate compression not supported
\n
"
);
return
AVERROR
(
ENOSYS
);
#endif
}
if
(
s
->
compr
==
TIFF_LZW
)
{
if
((
ret
=
ff_lzw_decode_init
(
s
->
lzw
,
8
,
src
,
size
,
FF_LZW_TIFF
))
<
0
)
{
av_log
(
s
->
avctx
,
AV_LOG_ERROR
,
"Error initializing LZW decoder
\n
"
);
...
...
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