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.

17 lines
434 B

#import "PlayerBase.h"
#import <PlayerFFmpeg/PlayerFFmpeg.h>
@interface PlayerFFmpeg : NSObject<PlayerBase>
@property (atomic, retain) id<MediaPlayback> player;
@property FFOptions* ffOptions;
@property bool playInBackground;
@property NSString* videoPath;
@property bool hasVideoTrack;
@property bool isBuffering;
@property NSInteger cachedBuffering;
@property float cachedPlaybackTime;
@property unsigned char* frameBuffer;
@end