mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-15 14:15:50 -06:00
Fixed crash bug with some types of input and x264 encoding (improper swscale arguments, and calculating CVImageBuffer size incorrectly)
23 lines
358 B
Objective-C
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
|