mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-25 22:00:30 -06:00
Stream Services now have a dedicated base class, no longer combined with an output writer
Stream Services now have a method that returns a new instance of a CSOutputWriterProtocol compliant class, the base class creates a CSOutputBase for you.
This commit is contained in:
parent
29637a3c01
commit
4e58ecb47a
12 changed files with 131 additions and 21 deletions
|
|
@ -7,9 +7,9 @@
|
|||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "CSStreamServiceProtocol.h"
|
||||
#import "CSOutputBase.h"
|
||||
#import "CSStreamServiceBase.h"
|
||||
|
||||
@interface CSFileStreamRTMPService : CSOutputBase <CSStreamServiceProtocol>
|
||||
@interface CSFileStreamRTMPService : CSStreamServiceBase <CSStreamServiceProtocol>
|
||||
|
||||
|
||||
@property bool isReady;
|
||||
|
|
|
|||
|
|
@ -7,9 +7,9 @@
|
|||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "CSStreamServiceProtocol.h"
|
||||
#import "CSOutputBase.h"
|
||||
#import "CSStreamServiceBase.h"
|
||||
|
||||
@interface FileStreamService : CSOutputBase <CSStreamServiceProtocol>
|
||||
@interface FileStreamService : CSStreamServiceBase <CSStreamServiceProtocol>
|
||||
|
||||
|
||||
@property bool isReady;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue