1
mirror of https://code.videolan.org/videolan/vlc synced 2024-07-25 09:41:30 +02:00

Fix loading of upnp module.

Also, remove leftover _intel parts here and there.
This commit is contained in:
Konstantin Pavlov 2011-02-25 12:27:07 +03:00
parent c482dc5576
commit 815340f625
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/*****************************************************************************
* Upnp_intel.cpp : UPnP discovery module (libupnp)
* Upnp.cpp : UPnP discovery module (libupnp)
*****************************************************************************
* Copyright (C) 2004-2008 the VideoLAN team
* $Id$
@ -55,7 +55,7 @@ struct services_discovery_sys_t
// VLC callback prototypes
static int Open( 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

View File

@ -75,7 +75,7 @@ static void HandleMediaDiscovererEnded( const libvlc_event_t * event, void * use
{
availableMediaDiscoverer = [[NSArray arrayWithObjects:
[[[VLCMediaDiscoverer alloc] initWithName:@"sap"] autorelease],
[[[VLCMediaDiscoverer alloc] initWithName:@"upnp_intel"] autorelease],
[[[VLCMediaDiscoverer alloc] initWithName:@"upnp"] autorelease],
[[[VLCMediaDiscoverer alloc] initWithName:@"freebox"] autorelease],
[[[VLCMediaDiscoverer alloc] initWithName:@"video_dir"] autorelease], nil] retain];
}