Commit ed3af867 by zhangyunjie

“2.8.4.0”

parent 503de756
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'OffcnLiveSDKiOS' s.name = 'OffcnLiveSDKiOS'
s.version = '2.8.3.5' s.version = '2.8.4.0'
s.summary = 'OffcnLiveSDKiOS.' s.summary = 'OffcnLiveSDKiOS.'
s.description = <<-DESC s.description = <<-DESC
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
static const NSString *OffcnLiveSDKVersion = @"2.8.3.5"; static const NSString *OffcnLiveSDKVersion = @"2.8.4.0";
//事件通知 //事件通知
......
...@@ -127,7 +127,7 @@ typedef NS_ENUM(NSInteger, PlayerMode) { ...@@ -127,7 +127,7 @@ typedef NS_ENUM(NSInteger, PlayerMode) {
- (void)reset; - (void)reset;
- (void)mute:(BOOL)mute; - (void)mute:(BOOL)mute;
- (void)resetVideoUrl:(NSString*)url; - (void)resetVideoUrl:(NSString*)url key:(NSString*)m3u8Key;
- (BOOL)startPictureinPicture; - (BOOL)startPictureinPicture;
- (void)stopPictureinPicture; - (void)stopPictureinPicture;
...@@ -236,6 +236,9 @@ IJK_EXTERN NSString *const ZGIJKMPMoviePlayerWhiteboardCameraStateUserInfoKey; ...@@ -236,6 +236,9 @@ IJK_EXTERN NSString *const ZGIJKMPMoviePlayerWhiteboardCameraStateUserInfoKey;
IJK_EXTERN NSString *const ZGIJKMPMoviePlayerWhiteboardFullScreenNotification; IJK_EXTERN NSString *const ZGIJKMPMoviePlayerWhiteboardFullScreenNotification;
IJK_EXTERN NSString *const ZGIJKMPMoviePlayerWhiteboardFullScreenUserInfoKey; IJK_EXTERN NSString *const ZGIJKMPMoviePlayerWhiteboardFullScreenUserInfoKey;
IJK_EXTERN NSString *const ZGIJKMPMoviePlayerWhiteboardBGModeNotification;
IJK_EXTERN NSString *const ZGIJKMPMoviePlayerWhiteboardBGModeUserInfoKey;
IJK_EXTERN NSString *const ZGIJKMPMoviePlayerDidKeyFrameNotification; IJK_EXTERN NSString *const ZGIJKMPMoviePlayerDidKeyFrameNotification;
IJK_EXTERN NSString *const ZGIJKMPMoviePlayerWarningNotification; IJK_EXTERN NSString *const ZGIJKMPMoviePlayerWarningNotification;
...@@ -300,7 +303,7 @@ typedef NS_ENUM(NSInteger, IJKMediaEvent) { ...@@ -300,7 +303,7 @@ typedef NS_ENUM(NSInteger, IJKMediaEvent) {
- (void)whiteboardDataCallback:(NSData*)data; - (void)whiteboardDataCallback:(NSData*)data;
- (void)whiteboardCommandInfo:(int)commandType param:(int)param; - (void)whiteboardCommandInfo:(int)commandType param:(int)param;
- (void)whiteboardBGImageUrl:(NSData*)data;
@end @end
@protocol IJKMediaNativeInvokeDelegate <NSObject> @protocol IJKMediaNativeInvokeDelegate <NSObject>
......
...@@ -61,6 +61,8 @@ typedef NS_ENUM(NSInteger,ZGPlayerAndWhiteboardCurOpenType) { ...@@ -61,6 +61,8 @@ typedef NS_ENUM(NSInteger,ZGPlayerAndWhiteboardCurOpenType) {
-(void) onCurrentScreenState:(int)screenState; -(void) onCurrentScreenState:(int)screenState;
-(void) onCommand:(ZGPlayerThirdPartyCommand)command param:(int)param; -(void) onCommand:(ZGPlayerThirdPartyCommand)command param:(int)param;
-(void) onWhiteboardBGMode:(int)bgMode;
-(void) onWhiteboardBgImageUrl:(NSData*)data;
@end @end
@interface ZGMoviePlayer : NSObject @interface ZGMoviePlayer : NSObject
...@@ -176,6 +178,6 @@ typedef enum ZGPlayerType { ...@@ -176,6 +178,6 @@ typedef enum ZGPlayerType {
- (void)setPlayRate:(float)fRate; - (void)setPlayRate:(float)fRate;
//播放地址更改 //播放地址更改
-(void)resetVideoUrl:(NSString *)url; -(void)resetVideoUrl:(NSString *)url key:(NSString*)key;
@end @end
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