summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLVideoEncoderDelegate.h
blob: db429410639f95ab88c6fe16c02d35fed048fd50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
//  SDLVideoEncoderDelegate.h
//  SmartDeviceLink-iOS
//
//  Created by Joel Fischer on 8/1/17.
//  Copyright © 2017 smartdevicelink. All rights reserved.
//

#import <Foundation/Foundation.h>

@class SDLVideoEncoder;

@protocol SDLVideoEncoderDelegate <NSObject>

- (void)videoEncoder:(SDLVideoEncoder *)encoder hasEncodedFrame:(NSData*)encodedVideo;

@end