Commit 815340f6 authored by Konstantin Pavlov's avatar Konstantin Pavlov

Fix loading of upnp module.

Also, remove leftover _intel parts here and there.
parent c482dc55
/***************************************************************************** /*****************************************************************************
* Upnp_intel.cpp : UPnP discovery module (libupnp) * Upnp.cpp : UPnP discovery module (libupnp)
***************************************************************************** *****************************************************************************
* Copyright (C) 2004-2008 the VideoLAN team * Copyright (C) 2004-2008 the VideoLAN team
* $Id$ * $Id$
...@@ -55,7 +55,7 @@ struct services_discovery_sys_t ...@@ -55,7 +55,7 @@ struct services_discovery_sys_t
// VLC callback prototypes // VLC callback prototypes
static int Open( vlc_object_t* ); static int Open( vlc_object_t* );
static void Close( vlc_object_t* ); static void Close( vlc_object_t* );
VLC_SD_PROBE_HELPER("upnp_intel", "Universal Plug'n'Play", SD_CAT_LAN) VLC_SD_PROBE_HELPER("upnp", "Universal Plug'n'Play", SD_CAT_LAN)
// Module descriptor // Module descriptor
......
...@@ -75,7 +75,7 @@ static void HandleMediaDiscovererEnded( const libvlc_event_t * event, void * use ...@@ -75,7 +75,7 @@ static void HandleMediaDiscovererEnded( const libvlc_event_t * event, void * use
{ {
availableMediaDiscoverer = [[NSArray arrayWithObjects: availableMediaDiscoverer = [[NSArray arrayWithObjects:
[[[VLCMediaDiscoverer alloc] initWithName:@"sap"] autorelease], [[[VLCMediaDiscoverer alloc] initWithName:@"sap"] autorelease],
[[[VLCMediaDiscoverer alloc] initWithName:@"upnp_intel"] autorelease], [[[VLCMediaDiscoverer alloc] initWithName:@"upnp"] autorelease],
[[[VLCMediaDiscoverer alloc] initWithName:@"freebox"] autorelease], [[[VLCMediaDiscoverer alloc] initWithName:@"freebox"] autorelease],
[[[VLCMediaDiscoverer alloc] initWithName:@"video_dir"] autorelease], nil] retain]; [[[VLCMediaDiscoverer alloc] initWithName:@"video_dir"] autorelease], nil] retain];
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment