You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
4.1 KiB
97 lines
4.1 KiB
/*****************************************************************************
|
|
* VLCMediaSourceProvider.m: MacOS X interface module
|
|
*****************************************************************************
|
|
* Copyright (C) 2019 VLC authors and VideoLAN
|
|
*
|
|
* Authors: Felix Paul Kühne <fkuehne # videolan -dot- org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
|
|
#import "VLCMediaSourceProvider.h"
|
|
|
|
#import "VLCMediaSource.h"
|
|
|
|
#import "main/VLCMain.h"
|
|
|
|
#import <vlc_media_source.h>
|
|
|
|
static inline void getMediaSourcesForCategory(NSMutableArray <VLCMediaSource *> *const restrict __unsafe_unretained outputArray,
|
|
libvlc_int_t *const restrict p_libvlcInstance,
|
|
vlc_media_source_provider_t *const restrict p_sourceProvider,
|
|
enum services_discovery_category_e const category)
|
|
{
|
|
vlc_media_source_meta_list_t *const p_sourceMetaList = vlc_media_source_provider_List(p_sourceProvider,
|
|
category);
|
|
const size_t count = vlc_media_source_meta_list_Count(p_sourceMetaList);
|
|
|
|
for (size_t i = 0; i < count; ++i) {
|
|
struct vlc_media_source_meta *const p_sourceMetaItem = vlc_media_source_meta_list_Get(p_sourceMetaList, i);
|
|
|
|
vlc_media_source_t *const p_mediaSource = vlc_media_source_provider_GetMediaSource(p_sourceProvider, p_sourceMetaItem->name);
|
|
if (p_mediaSource == NULL) {
|
|
continue;
|
|
}
|
|
|
|
VLCMediaSource *const mediaSource = [[VLCMediaSource alloc] initWithMediaSource:p_mediaSource andLibVLCInstance:p_libvlcInstance forCategory:category];
|
|
[outputArray addObject:mediaSource];
|
|
}
|
|
|
|
vlc_media_source_meta_list_Delete(p_sourceMetaList);
|
|
}
|
|
|
|
@implementation VLCMediaSourceProvider
|
|
|
|
+ (NSArray <VLCMediaSource *> *)listOfMediaSourcesForCategory:(enum services_discovery_category_e)category
|
|
{
|
|
libvlc_int_t *p_libvlcInstance = vlc_object_instance(getIntf());
|
|
vlc_media_source_provider_t *p_sourceProvider = vlc_media_source_provider_Get(p_libvlcInstance);
|
|
|
|
if (p_sourceProvider == NULL) {
|
|
return @[];
|
|
}
|
|
|
|
NSMutableArray *mutableArray = [[NSMutableArray alloc] initWithCapacity:32]; // A sane default
|
|
|
|
getMediaSourcesForCategory(mutableArray, p_libvlcInstance, p_sourceProvider, category);
|
|
|
|
return [mutableArray copy];
|
|
}
|
|
|
|
+ (NSArray<VLCMediaSource *> *)listOfLocalMediaSources;
|
|
{
|
|
libvlc_int_t *p_libvlcInstance = vlc_object_instance(getIntf());
|
|
vlc_media_source_provider_t *p_sourceProvider = vlc_media_source_provider_Get(p_libvlcInstance);
|
|
|
|
NSMutableArray<VLCMediaSource *> *mutableArray = [[NSMutableArray alloc] initWithCapacity:32]; // A sane default
|
|
[mutableArray addObject:[[VLCMediaSource alloc] initForLocalDevices:p_libvlcInstance]];
|
|
|
|
if (p_sourceProvider != NULL) {
|
|
// Currently, SD_CAT_MYCOMPUTER and SD_CAT_DEVICES return empty list.
|
|
// They are left for future implementation.
|
|
getMediaSourcesForCategory(mutableArray, p_libvlcInstance, p_sourceProvider, SD_CAT_MYCOMPUTER);
|
|
getMediaSourcesForCategory(mutableArray, p_libvlcInstance, p_sourceProvider, SD_CAT_DEVICES);
|
|
getMediaSourcesForCategory(mutableArray, p_libvlcInstance, p_sourceProvider, SD_CAT_LAN);
|
|
}
|
|
|
|
return [mutableArray copy];
|
|
}
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|