this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add the last symbols Xcode 10 needs

Fixes #445.

+107 -3
+1
src/AVFoundation/CMakeLists.txt
··· 511 511 src/AVCameraCalibrationDataInternal.m 512 512 src/AVCameraCalibrationData.m 513 513 src/AVCaptionOutputSettings.m 514 + constants.m 514 515 515 516 DEPENDENCIES 516 517 system
+32
src/AVFoundation/constants.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <Foundation/NSString.h> 21 + 22 + NSString *const AVErrorDeviceKey = @"AVErrorDeviceKey"; 23 + NSString *const AVErrorFileSizeKey = @"AVErrorFileSizeKey"; 24 + NSString *const AVErrorMediaSubTypeKey = @"AVErrorMediaSubTypeKey"; 25 + NSString *const AVErrorMediaTypeKey = @"AVErrorMediaTypeKey"; 26 + NSString *const AVErrorTimeKey = @"AVErrorTimeKey"; 27 + NSString *const AVErrorPIDKey = @"AVErrorPIDKey"; 28 + NSString *const AVErrorRecordingSuccessfullyFinishedKey = @"AVErrorRecordingSuccessfullyFinishedKey"; 29 + NSString *const AVErrorPresentationTimeStampKey = @"AVErrorPresentationTimeStampKey"; 30 + NSString *const AVErrorPersistentTrackIDKey = @"AVErrorPersistentTrackIDKey"; 31 + NSString *const AVErrorFileTypeKey = @"AVErrorFileTypeKey"; 32 + NSString *const AVFoundationErrorDomain = @"AVFoundationErrorDomain";
+2 -2
src/CoreMedia/CMakeLists.txt
··· 9 9 VERSION "A" 10 10 11 11 SOURCES 12 - src/CoreMedia.m 12 + src/CoreMedia.c 13 + src/CMTime.c 13 14 14 15 DEPENDENCIES 15 16 system 16 - objc 17 17 Foundation 18 18 )
+45
src/CoreMedia/include/CoreMedia/CMTime.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #ifndef _CMTIME_H_ 21 + #define _CMTIME_H_ 22 + 23 + #include <stdint.h> 24 + 25 + typedef int64_t CMTimeValue; 26 + typedef int32_t CMTimeScale; 27 + typedef int64_t CMTimeEpoch; 28 + typedef uint32_t CMTimeFlags; 29 + 30 + typedef struct 31 + { 32 + CMTimeValue value; 33 + CMTimeScale timescale; 34 + CMTimeFlags flags; 35 + CMTimeEpoch epoch; 36 + } 37 + CMTime; 38 + 39 + extern const CMTime kCMTimeInvalid; 40 + extern const CMTime kCMTimeIndefinite; 41 + extern const CMTime kCMTimePositiveInfinity; 42 + extern const CMTime kCMTimeNegativeInfinity; 43 + extern const CMTime kCMTimeZero; 44 + 45 + #endif
+1 -1
src/CoreMedia/include/CoreMedia/CoreMedia.h
··· 21 21 #ifndef _CoreMedia_H_ 22 22 #define _CoreMedia_H_ 23 23 24 - #import <Foundation/Foundation.h> 25 24 25 + #include <CoreMedia/CMTime.h> 26 26 27 27 void* AudioToolbox_AudioConverterDispose(void); 28 28 void* AudioToolbox_AudioConverterGetProperty(void);
+26
src/CoreMedia/src/CMTime.c
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <CoreMedia/CMTime.h> 21 + 22 + const CMTime kCMTimeInvalid; 23 + const CMTime kCMTimeIndefinite; 24 + const CMTime kCMTimePositiveInfinity; 25 + const CMTime kCMTimeNegativeInfinity; 26 + const CMTime kCMTimeZero;
src/CoreMedia/src/CoreMedia.m src/CoreMedia/src/CoreMedia.c