CocoaSplit/CocoaSplitCmd/CmdLineDelegate.h
Zakk 57c3ac25e4 Added command line version.
Fixed crash bug with some types of input and x264 encoding (improper swscale arguments, and calculating CVImageBuffer size incorrectly)
2013-05-03 02:02:49 -04:00

23 lines
358 B
Objective-C

//
// CmdLineDelegate.h
// CocoaSplit
//
// Created by Zakk on 4/8/13.
// Copyright (c) 2013 Zakk. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <Cocoa/Cocoa.h>
#import "CaptureController.h"
@interface CmdLineDelegate: NSObject <NSApplicationDelegate>
{
}
@property (strong) CaptureController *captureController;
@end