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
7ccb847f
Commit
7ccb847f
authored
Aug 13, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
http: Reduce scope of a variable in parse_content_encoding()
Also fixes an unused variable warning with zlib disabled.
parent
552bc42d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
http.c
libavformat/http.c
+2
-2
No files found.
libavformat/http.c
View file @
7ccb847f
...
...
@@ -384,11 +384,11 @@ static void parse_content_range(URLContext *h, const char *p)
static
int
parse_content_encoding
(
URLContext
*
h
,
const
char
*
p
)
{
HTTPContext
*
s
=
h
->
priv_data
;
if
(
!
av_strncasecmp
(
p
,
"gzip"
,
4
)
||
!
av_strncasecmp
(
p
,
"deflate"
,
7
))
{
#if CONFIG_ZLIB
HTTPContext
*
s
=
h
->
priv_data
;
s
->
compressed
=
1
;
inflateEnd
(
&
s
->
inflate_stream
);
if
(
inflateInit2
(
&
s
->
inflate_stream
,
32
+
15
)
!=
Z_OK
)
{
...
...
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