//
//  VideoServiceConsts.h
//  LunaMobile
//
//  Created by michael on 28.07.2023.
//

#ifndef VideoServiceConsts_h
#define VideoServiceConsts_h

/// File name constant for recorded video file
static NSString *const LMRecordedVideoID = @"LMRecordedVideo";
/// Folder name constant for recorded video file
static const NSString *LMVisionLabsFolder = @"vision_labs";
/// Expected width of recorded video
static CGFloat const kVideoWidth = 720;
/// Expected height of recorded video
static CGFloat const kVideoHeight = 1280;
/// Expected fps of recorded video
static CGFloat const kVideoFps = 30;
/// Block with void argument
typedef void (^VoidBlock)(void);

#endif /* VideoServiceConsts_h */
