Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
75ee1b38
Commit
75ee1b38
authored
Apr 22, 2006
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* shout.c : change playlist layout (remove 1 node)
* shoutcast.c : remove "debug" printf
parent
acb5da73
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
29 deletions
+8
-29
modules/demux/playlist/shoutcast.c
modules/demux/playlist/shoutcast.c
+0
-1
modules/services_discovery/shout.c
modules/services_discovery/shout.c
+8
-28
No files found.
modules/demux/playlist/shoutcast.c
View file @
75ee1b38
...
@@ -333,7 +333,6 @@ static int DemuxStation( demux_t *p_demux )
...
@@ -333,7 +333,6 @@ static int DemuxStation( demux_t *p_demux )
while
(
xml_ReaderRead
(
p_sys
->
p_xml_reader
)
==
1
)
while
(
xml_ReaderRead
(
p_sys
->
p_xml_reader
)
==
1
)
{
{
int
i_type
;
int
i_type
;
printf
(
"AAA
\n
"
);
// Get the node type
// Get the node type
i_type
=
xml_ReaderNodeType
(
p_sys
->
p_xml_reader
);
i_type
=
xml_ReaderNodeType
(
p_sys
->
p_xml_reader
);
...
...
modules/services_discovery/shout.c
View file @
75ee1b38
...
@@ -79,10 +79,7 @@ vlc_module_end();
...
@@ -79,10 +79,7 @@ vlc_module_end();
struct
services_discovery_sys_t
struct
services_discovery_sys_t
{
{
/* playlist node */
playlist_item_t
*
p_node
;
playlist_item_t
*
p_item
;
playlist_item_t
*
p_item
;
int
i_limit
;
vlc_bool_t
b_dialog
;
vlc_bool_t
b_dialog
;
};
};
...
@@ -107,9 +104,6 @@ static int Open( vlc_object_t *p_this )
...
@@ -107,9 +104,6 @@ static int Open( vlc_object_t *p_this )
playlist_view_t
*
p_view
;
playlist_view_t
*
p_view
;
playlist_item_t
*
p_item
;
playlist_item_t
*
p_item
;
char
*
psz_shoutcast_url
;
char
*
psz_shoutcast_title
;
p_sd
->
pf_run
=
Run
;
p_sd
->
pf_run
=
Run
;
p_sd
->
p_sys
=
p_sys
;
p_sd
->
p_sys
=
p_sys
;
...
@@ -122,30 +116,16 @@ static int Open( vlc_object_t *p_this )
...
@@ -122,30 +116,16 @@ static int Open( vlc_object_t *p_this )
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
psz_shoutcast_url
=
(
char
*
)
malloc
(
strlen
(
SHOUTCAST_BASE_URL
)
+
20
);
psz_shoutcast_title
=
(
char
*
)
malloc
(
6
+
20
);
sprintf
(
psz_shoutcast_url
,
SHOUTCAST_BASE_URL
);
sprintf
(
psz_shoutcast_title
,
"Shoutcast"
,
p_sys
->
i_limit
);
p_view
=
playlist_ViewFind
(
p_playlist
,
VIEW_CATEGORY
);
p_view
=
playlist_ViewFind
(
p_playlist
,
VIEW_CATEGORY
);
p_sys
->
p_node
=
playlist_NodeCreate
(
p_playlist
,
VIEW_CATEGORY
,
_
(
"Shoutcast"
),
p_view
->
p_root
);
p_sys
->
p_item
=
p_item
=
playlist_ItemNew
(
p_playlist
,
psz_shoutcast_url
,
p_item
=
playlist_ItemNew
(
p_playlist
,
SHOUTCAST_BASE_URL
,
_
(
"Shoutcast"
)
);
psz_shoutcast_title
);
playlist_NodeAddItem
(
p_playlist
,
p_item
,
p_view
->
i_id
,
free
(
psz_shoutcast_url
);
p_view
->
p_root
,
PLAYLIST_APPEND
,
free
(
psz_shoutcast_title
);
playlist_NodeAddItem
(
p_playlist
,
p_item
,
p_sys
->
p_node
->
pp_parents
[
0
]
->
i_view
,
p_sys
->
p_node
,
PLAYLIST_APPEND
,
PLAYLIST_END
);
PLAYLIST_END
);
/* We need to declare the parents of the node as the same of the
p_sys
->
p_item
->
i_flags
|=
PLAYLIST_RO_FLAG
;
* parent's ones */
playlist_CopyParents
(
p_sys
->
p_node
,
p_item
);
p_sys
->
p_item
=
p_item
;
p_sys
->
p_node
->
i_flags
|=
PLAYLIST_RO_FLAG
;
val
.
b_bool
=
VLC_TRUE
;
val
.
b_bool
=
VLC_TRUE
;
var_Set
(
p_playlist
,
"intf-change"
,
val
);
var_Set
(
p_playlist
,
"intf-change"
,
val
);
...
@@ -165,7 +145,7 @@ static void Close( vlc_object_t *p_this )
...
@@ -165,7 +145,7 @@ static void Close( vlc_object_t *p_this )
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
if
(
p_playlist
)
if
(
p_playlist
)
{
{
playlist_NodeDelete
(
p_playlist
,
p_sys
->
p_
node
,
VLC_TRUE
,
VLC_TRUE
);
playlist_NodeDelete
(
p_playlist
,
p_sys
->
p_
item
,
VLC_TRUE
,
VLC_TRUE
);
vlc_object_release
(
p_playlist
);
vlc_object_release
(
p_playlist
);
}
}
free
(
p_sys
);
free
(
p_sys
);
...
@@ -197,7 +177,7 @@ static void Run( services_discovery_t *p_sd )
...
@@ -197,7 +177,7 @@ static void Run( services_discovery_t *p_sd )
if
(
i_state
==
PLAYING_S
)
if
(
i_state
==
PLAYING_S
)
{
{
float
f_pos
=
(
float
)(
p_sys
->
p_item
->
i_children
)
*
2
*
100
.
0
/
float
f_pos
=
(
float
)(
p_sys
->
p_item
->
i_children
)
*
2
*
100
.
0
/
(
float
)(
p_sys
->
i_limit
)
;
260
/* gruiiik FIXME */
;
intf_UserProgressUpdate
(
p_sd
,
i_dialog_id
,
"Downloading"
,
intf_UserProgressUpdate
(
p_sd
,
i_dialog_id
,
"Downloading"
,
f_pos
);
f_pos
);
}
}
...
...
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