Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
107a73f2
Commit
107a73f2
authored
Nov 10, 2002
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
http: Accept ICY server reponse (Used for some web radio) and in that
case it forces mp3 demuxer (Should be ok...)
parent
b4f932ad
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
26 deletions
+57
-26
modules/access/http.c
modules/access/http.c
+57
-26
No files found.
modules/access/http.c
View file @
107a73f2
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* http.c: HTTP access plug-in
* http.c: HTTP access plug-in
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* Copyright (C) 2001, 2002 VideoLAN
* $Id: http.c,v 1.
7 2002/11/08 10:26:52 gbazin
Exp $
* $Id: http.c,v 1.
8 2002/11/10 15:37:39 fenrir
Exp $
*
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
*
...
@@ -99,6 +99,7 @@ static int HTTPConnect( input_thread_t * p_input, off_t i_tell )
...
@@ -99,6 +99,7 @@ static int HTTPConnect( input_thread_t * p_input, off_t i_tell )
int
i_returncode
,
i
,
i_size
;
int
i_returncode
,
i
,
i_size
;
char
*
psz_return_alpha
;
char
*
psz_return_alpha
;
char
*
psz_protocol
;
/* Find an appropriate network module */
/* Find an appropriate network module */
p_access_data
=
(
_input_socket_t
*
)
p_input
->
p_access_data
;
p_access_data
=
(
_input_socket_t
*
)
p_input
->
p_access_data
;
p_input
->
p_private
=
(
void
*
)
&
p_access_data
->
socket_desc
;
p_input
->
p_private
=
(
void
*
)
&
p_access_data
->
socket_desc
;
...
@@ -166,15 +167,43 @@ static int HTTPConnect( input_thread_t * p_input, off_t i_tell )
...
@@ -166,15 +167,43 @@ static int HTTPConnect( input_thread_t * p_input, off_t i_tell )
input_FDNetworkClose
(
p_input
);
input_FDNetworkClose
(
p_input
);
return
(
-
1
);
return
(
-
1
);
}
}
if
(
(
(
i_size
>=
sizeof
(
"HTTP/1."
)
+
1
)
&&
if
(
(
i_size
>=
sizeof
(
"HTTP/1."
)
+
1
)
&&
!
strncmp
(
psz_parser
,
"HTTP/1."
,
sizeof
(
"HTTP/1."
)
-
1
)
)
)
!
strncmp
(
psz_parser
,
"HTTP/1."
,
sizeof
(
"HTTP/1."
)
-
1
)
)
{
psz_protocol
=
"HTTP"
;
}
else
if
(
(
i_size
>=
sizeof
(
"ICY"
)
&&
!
strncmp
(
psz_parser
,
"ICY"
,
strlen
(
"ICY"
)
)
)
)
{
{
psz_protocol
=
"ICY"
;
if
(
!
p_input
->
psz_demux
||
!*
p_input
->
psz_demux
)
{
msg_Info
(
p_input
,
"ICY server --> mp3 demuxer selected"
);
p_input
->
psz_demux
=
"mp3"
;
// FIXME strdup ?
}
}
else
{
msg_Err
(
p_input
,
"invalid http reply"
);
return
-
1
;
}
msg_Dbg
(
p_input
,
"detected %s server"
,
psz_protocol
);
if
(
!
strncmp
(
psz_protocol
,
"ICY"
,
sizeof
(
"ICY"
)
)
)
{
// ICY server
psz_parser
+=
sizeof
(
"ICY"
);
i_size
-=
sizeof
(
"ICY"
);
}
else
{
// HTTP/1.0 or HTTP/1.1
psz_parser
+=
sizeof
(
"HTTP/1."
)
+
1
;
psz_parser
+=
sizeof
(
"HTTP/1."
)
+
1
;
i_size
-=
sizeof
(
"HTTP/1."
)
+
1
;
}
i_returncode
=
atoi
(
(
char
*
)
psz_parser
);
i_returncode
=
atoi
(
(
char
*
)
psz_parser
);
msg_Dbg
(
p_input
,
"HTTP server replied: %i"
,
i_returncode
);
msg_Dbg
(
p_input
,
"%s server replied: %i"
,
psz_protocol
,
i_returncode
);
psz_parser
+=
4
;
psz_parser
+=
4
;
i_size
-=
(
sizeof
(
"HTTP/1."
)
+
5
)
;
i_size
-=
4
;
for
(
i
=
0
;
(
i
<
i_size
-
1
)
&&
((
psz_parser
[
i
]
!=
'\r'
)
||
for
(
i
=
0
;
(
i
<
i_size
-
1
)
&&
((
psz_parser
[
i
]
!=
'\r'
)
||
(
psz_parser
[
i
+
1
]
!=
'\n'
));
i
++
)
(
psz_parser
[
i
+
1
]
!=
'\n'
));
i
++
)
{
{
...
@@ -190,12 +219,6 @@ static int HTTPConnect( input_thread_t * p_input, off_t i_tell )
...
@@ -190,12 +219,6 @@ static int HTTPConnect( input_thread_t * p_input, off_t i_tell )
psz_return_alpha
=
malloc
(
i
+
1
);
psz_return_alpha
=
malloc
(
i
+
1
);
memcpy
(
psz_return_alpha
,
psz_parser
,
i
);
memcpy
(
psz_return_alpha
,
psz_parser
,
i
);
psz_return_alpha
[
i
]
=
'\0'
;
psz_return_alpha
[
i
]
=
'\0'
;
}
else
{
msg_Err
(
p_input
,
"invalid http reply"
);
return
-
1
;
}
if
(
i_returncode
>=
400
)
/* something is wrong */
if
(
i_returncode
>=
400
)
/* something is wrong */
{
{
...
@@ -243,15 +266,23 @@ static int HTTPConnect( input_thread_t * p_input, off_t i_tell )
...
@@ -243,15 +266,23 @@ static int HTTPConnect( input_thread_t * p_input, off_t i_tell )
p_input
->
p_current_data
=
psz_parser
+
2
;
p_input
->
p_current_data
=
psz_parser
+
2
;
}
}
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
if
(
!
strcmp
(
psz_protocol
,
"ICY"
)
)
{
p_input
->
stream
.
b_seekable
=
0
;
}
else
{
p_input
->
stream
.
b_seekable
=
1
;
}
if
(
p_input
->
stream
.
p_selected_area
->
i_size
)
if
(
p_input
->
stream
.
p_selected_area
->
i_size
)
{
{
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
p_input
->
stream
.
p_selected_area
->
i_tell
=
i_tell
p_input
->
stream
.
p_selected_area
->
i_tell
=
i_tell
+
(
p_input
->
p_last_data
-
p_input
->
p_current_data
);
+
(
p_input
->
p_last_data
-
p_input
->
p_current_data
);
p_input
->
stream
.
b_seekable
=
1
;
}
p_input
->
stream
.
b_changed
=
1
;
p_input
->
stream
.
b_changed
=
1
;
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
}
return
(
0
);
return
(
0
);
}
}
...
...
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