Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
b1f5c760
Commit
b1f5c760
authored
May 15, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bonjour compilation. Completely untested
parent
4c07fa0c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
16 deletions
+22
-16
modules/services_discovery/bonjour.c
modules/services_discovery/bonjour.c
+22
-16
No files found.
modules/services_discovery/bonjour.c
View file @
b1f5c760
...
...
@@ -137,7 +137,7 @@ static void resolve_callback(
char
*
psz_uri
=
NULL
;
char
*
psz_addr
=
NULL
;
AvahiStringList
*
asl
=
NULL
;
playlist_item_t
*
p_item
=
NULL
;
input_item_t
*
p_input
=
NULL
;
msg_Dbg
(
p_sd
,
"service '%s' of type '%s' in domain '%s'"
,
name
,
type
,
domain
);
...
...
@@ -175,16 +175,22 @@ static void resolve_callback(
if
(
psz_uri
!=
NULL
)
{
p_i
tem
=
playlist_ItemNew
(
p_sd
,
psz_uri
,
name
);
p_i
nput
=
input_ItemNewExt
(
p_sd
,
psz_uri
,
name
,
0
,
NULL
,
-
1
);
free
(
(
void
*
)
psz_uri
);
}
if
(
p_i
tem
!=
NULL
)
if
(
p_i
nput
!=
NULL
)
{
playlist_item_t
*
p_item
;
p_item
=
playlist_NodeAddInput
(
p_sys
->
p_playlist
,
p_input
,
p_sys
->
p_node_cat
,
PLAYLIST_APPEND
,
PLAYLIST_END
);
p_item
->
i_flags
&=
~
PLAYLIST_SKIP_FLAG
;
p
laylist_NodeAddItem
(
p_sys
->
p_playlist
,
p_item
,
VIEW_CATEGORY
,
p_sys
->
p_nod
e
,
p_item
->
i_flags
&=
~
PLAYLIST_SAVE_FLAG
;
p
_item
=
playlist_NodeAddInput
(
p_sys
->
p_playlist
,
p_input
,
p_sys
->
p_node_on
e
,
PLAYLIST_APPEND
,
PLAYLIST_END
);
p_item
->
i_flags
&=
~
PLAYLIST_SKIP_FLAG
;
p_item
->
i_flags
&=
~
PLAYLIST_SAVE_FLAG
;
}
}
...
...
@@ -225,16 +231,15 @@ static void browse_callback(
}
else
{
/** \todo Store the input id and search it, rather than searching the items */
playlist_item_t
*
p_item
;
p_item
=
playlist_ChildSearchName
(
p_sys
->
p_node
,
name
);
p_item
=
playlist_ChildSearchName
(
p_sys
->
p_node_cat
,
name
);
if
(
p_item
==
NULL
)
{
msg_Err
(
p_sd
,
"failed to find service '%s' in playlist"
,
name
);
}
else
{
playlist_Delete
(
p_sys
->
p_playlist
,
p_item
->
input
.
i_id
);
playlist_LockDeleteAllFromInput
(
p_sys
->
p_playlist
,
p_item
->
p_input
->
i_id
);
}
}
}
...
...
@@ -302,8 +307,8 @@ static int Open( vlc_object_t *p_this )
goto
error
;
}
playlist_NodesCreateForSD
(
p_
playlist
,
_
(
"Bonjour"
),
&
p_sys
->
p_node_cat
,
&
p_sys
->
p_node_one
);
playlist_NodesCreateForSD
(
p_
sys
->
p_playlist
,
_
(
"Bonjour"
)
,
&
p_sys
->
p_node_cat
,
&
p_sys
->
p_node_one
);
p_sd
->
pf_run
=
Run
;
return
VLC_SUCCESS
;
...
...
@@ -335,7 +340,8 @@ static void Close( vlc_object_t *p_this )
avahi_client_free
(
p_sys
->
client
);
avahi_simple_poll_free
(
p_sys
->
simple_poll
);
playlist_NodeDelete
(
p_sys
->
p_playlist
,
p_sys
->
p_node
,
VLC_TRUE
,
VLC_TRUE
);
playlist_NodeDelete
(
p_sys
->
p_playlist
,
p_sys
->
p_node_one
,
VLC_TRUE
,
VLC_TRUE
);
playlist_NodeDelete
(
p_sys
->
p_playlist
,
p_sys
->
p_node_cat
,
VLC_TRUE
,
VLC_TRUE
);
vlc_object_release
(
p_sys
->
p_playlist
);
free
(
p_sys
);
...
...
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