[原]关于在 iOS 中支持 DLNA

目前国内的视频播放器中,支持 DLNA 播放比较好的是:腾讯视频。

刚才反编了一下他们的代码,发现使用了一个开源库,

地址:https://github.com/FuruyamaTakeshi/DLNA

并且在这个库的基础了做了一层封装,包含如下几个类:

DLNAController:

 1 @class CGUpnpAvController, CGUpnpAvRenderer, QLUpnpAVVolumeInfo, NSMutableArray, QLUpnpAVPositionInfo, NSString, NSTimer;
 2 @protocol DLNAControllerDelegate;
 3 
 4 @interface DLNAController : XXUnknownSuperclass <CGUpnpControlPointDelegate> {
 5 @private
 6     dispatch_queue_s* _playQueue;    // 4 = 0x4
 7     dispatch_queue_s* _searchQueue;    // 8 = 0x8
 8     CGUpnpAvRenderer* _dlnaPlayingRender;    // 12 = 0xc
 9     CGUpnpAvRenderer* _dlnaSelectedRender;    // 16 = 0x10
10     CGUpnpAvController* _upnpAvController;    // 20 = 0x14
11     NSMutableArray* _dlnaRenders;    // 24 = 0x18
12     NSTimer* _timerLoadInfos;    // 28 = 0x1c
13     BOOL _isSettingVolume;    // 32 = 0x20
14     BOOL _isSettingSeek;    // 33 = 0x21
15     id<DLNAControllerDelegate> delegate;    // 36 = 0x24
16     float _trackDuration;    // 40 = 0x28
17     float _curPlayTime;    // 44 = 0x2c
18     float _volumePercentage;    // 48 = 0x30
19     NSString* _curRenderName;    // 52 = 0x34
20     unsigned _fileSize;    // 56 = 0x38
21     QLUpnpAVPositionInfo* _positionInfo;    // 60 = 0x3c
22     QLUpnpAVVolumeInfo* _volumeInfo;    // 64 = 0x40
23     NSString* _curTitle;    // 68 = 0x44
24 }
25 @property(retain) QLUpnpAVPositionInfo* positionInfo;    // G=0x1ecead; S=0x1ecec5; 
26 @property(retain) QLUpnpAVVolumeInfo* volumeInfo;    // G=0x1ecee9; S=0x1ecf01; 
27 @property(readonly, assign) int dlnaRendersCount;    // G=0x1eabf5; 
28 @property(readonly, assign) float volumePercentage;    // G=0x1eae41; 
29 @property(readonly, assign) float curPlayTime;    // G=0x1ead59; 
30 @property(readonly, assign) float trackDuration;    // G=0x1eadcd; 
31 @property(readonly, assign) NSString* curRenderName;    // G=0x1eacc1; 
32 @property(copy) NSString* curTitle;    // G=0x1ecf25; S=0x1ecf3d; 
33 @property(assign) unsigned fileSize;    // G=0x1ece81; S=0x1ece95; 
34 @property(assign) id<DLNAControllerDelegate> delegate;    // G=0x1ece55; S=0x1ece69; 
35 +(id)sharedDLNAController;    // 0x1ea329
36 -(void)didFindRendersMain:(id)main;    // 0x1ecdfd
37 -(void)maitainConnectionMain:(id)main;    // 0x1ecdb5
38 -(void)loseConnectionMain:(id)main;    // 0x1eccc1
39 -(void)mainPlayStop:(id)stop;    // 0x1ecc65
40 -(void)mainPlayFailed:(id)failed;    // 0x1ecc1d
41 -(void)mainPlayDown:(id)down;    // 0x1ecbc1
42 -(BOOL)setVolume:(float)volume skipIfBusy:(BOOL)busy;    // 0x1eca55
43 -(BOOL)seek:(double)seek;    // 0x1ec8f9
44 -(BOOL)quit;    // 0x1ec719
45 -(BOOL)stop;    // 0x1ec5ed
46 -(BOOL)pause;    // 0x1ec4d1
47 -(BOOL)play;    // 0x1ec341
48 -(BOOL)isPlaying;    // 0x1ec305
49 -(void)controlPoint:(id)point deviceInvalid:(id)invalid;    // 0x1ec301
50 -(void)controlPoint:(id)point deviceUpdated:(id)updated;    // 0x1ec2fd
51 -(void)controlPoint:(id)point deviceRemoved:(id)removed;    // 0x1ebfa1
52 -(void)controlPoint:(id)point deviceAdded:(id)added;    // 0x1ebc61
53 -(void)searchReaders:(BOOL)readers;    // 0x1eb8a9
54 -(void)connection:(id)connection didReceiveResponse:(id)response;    // 0x1eb785
55 -(void)connectionDidFinishLoading:(id)connection;    // 0x1eb76d
56 -(void)connection:(id)connection didFailWithError:(id)error;    // 0x1eb719
57 -(void)playOnThreadWithInfo:(id)info;    // 0x1eb4e5
58 -(void)beginPlayDLNAWithUrl:(id)url;    // 0x1eb225
59 -(void)playURL:(id)url;    // 0x1eafc5
60 -(void)setRenderAtIndex:(int)index;    // 0x1eaea5
61 -(id)getRenderAtIndex:(int)index;    // 0x1eaafd
62 -(void)loadInfoOfDLNA;    // 0x1ea83d
63 -(void)stopTimers;    // 0x1ea80d
64 -(void)startTimers;    // 0x1ea7ad
65 -(void)clearAllInfos;    // 0x1ea76d
66 -(void)clearTimerInfo;    // 0x1ea71d
67 -(void)clearPlayInfo;    // 0x1ea5e5
68 -(id)init;    // 0x1ea539
69 -(void)dealloc;    // 0x1ea411
70 @end

 

DLNAControllerDelegate

1 @protocol DLNAControllerDelegate <NSObject>
2 -(void)dlnaControllerdidStoped:(id)stoped;
3 -(void)dlnaControllerdidMaitainConnection:(id)connection;
4 -(void)dlnaControllerdidLoseConnection:(id)connection;
5 -(void)dlnaControllerdidFailedToPlay:(id)play;
6 -(void)dlnaControllerdidStartToPlay:(id)play;
7 -(void)dlnaController:(id)controller didFindRenders:(id)renders;
8 @end

 

DLNAModel

 1 @protocol DLNAModelDelegate;
 2 
 3 @interface DLNAModel : XXUnknownSuperclass {
 4 @private
 5     id<DLNAModelDelegate> _delegate;    // 4 = 0x4
 6 }
 7 @property(assign, nonatomic) id<DLNAModelDelegate> delegate;    // G=0x1d2409; S=0x1d2419; 
 8 -(void)request:(id)request didFailLoadWithError:(id)error;    // 0x1d23c9
 9 -(void)requestDidFinishLoad:(id)request;    // 0x1d2045
10 -(void)sendRequestWithVideoID:(id)videoID isPay:(BOOL)pay;    // 0x1d1ef5
11 @end

 

DLNAModelDelegate

@protocol DLNAModelDelegate <NSObject>
-(void)DLNAModelDelegateRequestDidFail:(id)dlnamodelDelegateRequest;
-(void)DLNAModelDelegateRequestDidSuccess:(id)dlnamodelDelegateRequest urlString:(id)string;
@end

 

DLNAPlayBkgView

@class UIActivityIndicatorView, UILabel;@interface DLNAPlayBkgView : XXUnknownSuperclass {
@privateUILabel* _tmpLabel;    // 48 = 0x30UIActivityIndicatorView* _tIndicator;    // 52 = 0x34
}
@property(retain, nonatomic) UILabel* tmpLabel;    // G=0x1d0c25; S=0x1d0c35; 
@property(retain, nonatomic) UIActivityIndicatorView* tIndicator;    // G=0x1d0c59; S=0x1d0c69; 
-(void)setLableTip:(id)tip showActivity:(BOOL)activity;    // 0x1d0a5d
-(id)initWithFrame:(CGRect)frame;    // 0x1d06c1
-(void)dealloc;    // 0x1d0669
@end

 

DLNASelectorView

@class UITableView, UIView;
@protocol DLNASelectorViewDelegate;@interface DLNASelectorView : XXUnknownSuperclass <UITableViewDataSource, UITableViewDelegate> {
@privateUIView* _dlnaSearchingView;    // 48 = 0x30UITableView* _dlnaTableView;    // 52 = 0x34id<DLNASelectorViewDelegate> _delegate;    // 56 = 0x38UIView* _tContentView;    // 60 = 0x3cUIView* _noneDLNATipView;    // 64 = 0x40
}
@property(retain, nonatomic) UIView* dlnaSearchingView;    // G=0x1d16c9; S=0x1d1e35; 
@property(retain, nonatomic) UITableView* dlnaTableView;    // G=0x1d15dd; S=0x1d1e59; 
@property(retain, nonatomic) UIView* noneDLNATipView;    // G=0x1d12cd; S=0x1d1ed1; 
@property(retain, nonatomic) UIView* tContentView;    // G=0x1d1e9d; S=0x1d1ead; 
@property(assign, nonatomic) id<DLNASelectorViewDelegate> delegate;    // G=0x1d1e7d; S=0x1d1e8d; 
-(void)tableView:(id)view didSelectRowAtIndexPath:(id)indexPath;    // 0x1d1dc1
-(int)tableView:(id)view numberOfRowsInSection:(int)section;    // 0x1d1d8d
-(id)tableView:(id)view cellForRowAtIndexPath:(id)indexPath;    // 0x1d1bf1
-(void)dlnaCloseDown:(id)down;    // 0x1d1bc5
-(void)dlnaRefreshDown:(id)down;    // 0x1d1b15
-(void)showSearchView;    // 0x1d1ab9
-(void)refreshSelectorTable;    // 0x1d18dd
-(id)initWithFrame:(CGRect)frame;    // 0x1d0d11
-(void)dealloc;    // 0x1d0c91
@end

 

@protocol DLNASelectorViewDelegate <NSObject>
-(void)DLNASelectorViewSelectedRender:(id)render;
-(void)DLNASelectorViewWillClose:(id)dlnaselectorView;
@end

 QLUpnpAVPositionInfo:

@class CGUpnpAction;@interface QLUpnpAVPositionInfo : XXUnknownSuperclass {
@privatefloat _trackDuration;    // 4 = 0x4float _absTime;    // 8 = 0x8float _relTime;    // 12 = 0xcCGUpnpAction* _upnpAction;    // 16 = 0x10
}
@property(retain, nonatomic) CGUpnpAction* upnpAction;    // G=0x1f1eb5; S=0x1f1ec5; 
@property(readonly, assign, nonatomic) float relTime;    // G=0x1f1ea5; 
@property(readonly, assign, nonatomic) float absTime;    // G=0x1f1e95; 
@property(readonly, assign, nonatomic) float trackDuration;    // G=0x1f1e85; 
-(void)dealloc;    // 0x1f1e41
-(id)initWithAction:(id)action;    // 0x1f1d65
@end

 

QLUpnpAVVolumeInfo

 

@class CGUpnpAction;@interface QLUpnpAVVolumeInfo : XXUnknownSuperclass {
@privatefloat _currentVolumePercentage;    // 4 = 0x4CGUpnpAction* _upnpAction;    // 8 = 0x8
}
@property(retain, nonatomic) CGUpnpAction* upnpAction;    // G=0x1ed05d; S=0x1ed06d; 
@property(readonly, assign, nonatomic) float currentVolumePercentage;    // G=0x1ed04d; 
-(void)dealloc;    // 0x1ed009
-(id)initWithAction:(id)action;    // 0x1ecf61
@end

 找时间阅读下汇编代码,写出一个开源版本。^_^

转载于:https://www.cnblogs.com/Proteas/p/3388734.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/400043.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Swing-BoxLayout用法-入门

注&#xff1a;本文内容源于http://www.java3z.com/cwbwebhome/article/article20/200016.html?id4797&#xff1b;细节内容根据笔者理解有修改。 BoxLayout 可以把控件依次进行水平或者垂直排列布局&#xff0c;这是通过参数 X_AXIS、Y_AXIS 来决定的。X_AXIS 表示水平排列&a…

Python开发利器之UliPad

一、安装Ulipad 因为ulipad编辑器使用的是wxpython编写的gui&#xff0c;所以我们需要第三方库wxpython的支持&#xff0c;先讲一下Ulipad在Windows系统环境下的安装&#xff1a; 1. 确实自己的windows版本&#xff0c;32位还是64位的。2. 查看自己安装的 Python版本&#xff0…

网页中如何使用一些特殊字体

虽然我们可以通过图片&#xff0c;flash、SIFR等技术来实现网页使用特殊字体&#xff0c;有利于SEO网页中嵌入特殊字体方法&#xff0c;font-face属性。 通常网页上不能使用一些特殊字体&#xff0c;否则浏览者可能无法正确浏览到&#xff0c;虽然我们可以通过图片&#xff0c…

Google浏览器中的开发工具.

惯例 我是温浩然: google浏览器&#xff0c;按下F12后&#xff0c;出现开发控制台。 下面有这么几栏&#xff0c;elements,network,sources,timeline ,profiles,resources,audits ,console. elements&#xff0c;是页面源码&#xff0c;network&#xff0c;是看请求的&#xff…

【思考】一次交付项目小结

【背景】 公司销售谈了一个重要的项目&#xff0c;与我们正在研发的一个产品关系比较大&#xff0c;可惜前期由于种种原因&#xff0c;耽搁了很长时间&#xff0c;等到我们研发部门知道消息的时候&#xff0c;已经很晚了。9月中旬启动&#xff0c;11月下旬要求上线&#xff0c;…

flask接收前台的form数据

html 记得访问从服务里打开 表单html 不能直接打开表单html https://www.cnblogs.com/wanghaonull/p/6340096.html

【bzoj4399】魔法少女LJJ 并查集+权值线段树合并

题目描述 在森林中见过会动的树&#xff0c;在沙漠中见过会动的仙人掌过后&#xff0c;魔法少女LJJ已经觉得自己见过世界上的所有稀奇古怪的事情了LJJ感叹道“这里真是个迷人的绿色世界,空气清新、淡雅,到处散发着醉人的奶浆味&#xff1b;小猴在枝头悠来荡去,好不自在&#xf…

树莓派Raspbian Buster/Debian 10 安装ROS

目录一些补充安装ROS初始化rosdep测试平台&#xff1a;树莓派4B 系统版本&#xff1a; 2020-05-27-raspios-buster-arm64.img 一些补充 系统安装参考 【树莓派学习笔记】一、烧录系统、(无屏幕)配置Wifi和SSH服务 【树莓派学习笔记】二、(无屏幕)SSH远程登录、图形界面及系统…

pjsip视频通信开发(上层应用)之EditText重写

我们经常使用手机的打电话功能&#xff0c;当我们按键盘的时候&#xff0c;有一个地方显示我们按键的内容&#xff0c;当我们的手点击那个地方的时候&#xff0c;并没有弹出软件盘&#xff0c;所以我们再有数字键盘的时候&#xff0c;要屏蔽系统的软件盘。 我们分析一下&#x…

JavaWeb重要知识点总结

JavaWeb学习篇之----容器Response详解http://blog.csdn.net/jiangwei0910410003/article/details/22886847获得所有请求头名称和头信息java.util.Enumeration names request.getHeaderNames();System.out.println("");while(names.hasMoreElements()){String name …

pycharm 中HTML代码的对齐

以前用sublime &#xff0c;现在django要在pycharm编辑html&#xff0c;要实现html的格式化&#xff0c; 用快捷键 CtrlAltL 非常实用

树莓派安装Ubuntu MATE及ROS系统

目录解锁SSH换源安装VNC服务安装ROS初始化rosdep和环境测试平台&#xff1a;树莓派4B 系统版本&#xff1a; ubuntu-mate-20.04.1-desktop-armhfraspi.img 在Raspberry Pi Download Options下载系统镜像 在树莓派资源下载 | 树莓派实验室下载工具 使用SDForm…

mysql 清空表的两种方法

一、Delete DELETE FROM table; 二、Truncate TRUNCATE table; 第一种方法其实就是去掉where条件&#xff0c;没有了条件&#xff0c;也就是删除掉表里面的所有记录了&#xff1b; 第二种方法像是重置表&#xff0c;把表中内容全部清除&#xff0c;回到刚建好表的状态&#xff…

jQuery学习笔记(四)

jQuery对表单、表格的操作及更多应用 表单应用 一个表单组成部分&#xff1a; 表单标签、表单域及表单按钮 单行文本框应用获取和失去焦点事件 $(function(){ $(":input").focus(function(){ //获取焦点触发事件 $(this).addClass("focus"); //增加样…

Flask最强攻略 - 跟DragonFire学Flask - 第四篇 Flask 中的模板语言 Jinja2 及 render_template 的深度用法

https://www.cnblogs.com/DragonFire/p/9259999.html 是时候开始写个前端了,Flask中默认的模板语言是Jinja2 现在我们来一步一步的学习一下 Jinja2 捎带手把 render_template 中留下的疑问解决一下 首先我们要在后端定义几个字符串,用于传递到前端 STUDENT {name: Old, age:…

【Jetson Nano学习笔记】1. 系统镜像和ROS的安装

目录安装系统换源安装VNC服务安装ROS初始化rosdep和环境测试平台&#xff1a;Jetson Nano 系统版本&#xff1a;4.6.1 安装系统 在Jetson Download Center下载镜像&#xff1a; 在树莓派资源下载 | 树莓派实验室下载工具 使用SDFormatter格式化内存卡 使用balenaEtcher烧录镜…

我的Android进阶之旅------Android利用Sensor(传感器)实现水平仪功能的小例

这里介绍的水平仪&#xff0c;指的是比较传统的气泡水平仪&#xff0c;在一个透明圆盘内充满液体&#xff0c;液体中留有一个气泡&#xff0c;当一端翘起时&#xff0c;该气泡就会浮向翘起的一端。 利用方向传感器返回的第一个参数&#xff0c;实现了一个指南针小应用。我的And…

【linux命令总结】——后续用到的内容持续补充和更新

比如说&#xff1a;某个文件是go文件&#xff0c;名字叫做 Hello.go 1、通过后台运行某个程序&#xff0c;将结果输出到某个文件&#xff0c; 如果是直接运行go程序&#xff1a;go run Hello.go 后台运行&#xff1a;nohup go run Hello.go & &#xff0c;然后就会将结果输…

【Jetson Nano学习笔记】2. ORB-SLAM3及ZED 2i驱动安装

目录ZED 2i驱动安装安装驱动自测ROS测试zed2i.launchrostopic listrosnode listdisplay_zed2i.launchzed_rtabmap.launchORB-SLAM3安装OpenCV 3安装Glew安装Pangolin安装boost安装Eigen 3安装OpenGL安装openssl安装ORB-SLAM3建立swap准备编译编译关闭swap平台&#xff1a;Jetso…

给超链接(a标签)加onclick事件

<a onclick"alert(1)">超链接1</a><br> <a href"#" onclick"alert(2)">超链接2</a> <br> <a href"javascript:alert(3)">超链接3</a>