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
eff22cc9
Commit
eff22cc9
authored
Feb 12, 2006
by
Mike Melanson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add another set of zlib guards
Originally committed as revision 5008 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
1927cd41
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
zmbv.c
libavcodec/zmbv.c
+5
-0
No files found.
libavcodec/zmbv.c
View file @
eff22cc9
...
...
@@ -298,11 +298,16 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8
av_log
(
avctx
,
AV_LOG_ERROR
,
"Unsupported (for now) format %i
\n
"
,
c
->
fmt
);
return
-
1
;
}
#ifdef CONFIG_ZLIB
zret
=
inflateReset
(
&
c
->
zstream
);
if
(
zret
!=
Z_OK
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Inflate reset error: %d
\n
"
,
zret
);
return
-
1
;
}
#else
av_log
(
avctx
,
AV_LOG_ERROR
,
"BUG! Zlib support not compiled in frame decoder.
\n
"
);
return
-
1
;
#endif
/* CONFIG_ZLIB */
if
(
c
->
fmt
==
ZMBV_FMT_8BPP
)
{
c
->
bpp
=
8
;
c
->
decode_intra
=
zmbv_decode_intra
;
...
...
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