this repo has no description
1
fork

Configure Feed

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

Some framework stubs

* VideoToolbox
* QTKit
* AudioUnit
* CoreMediaIO

+15933 -117
src/AudioUnit/AUComponent.cpp src/AudioUnitOld/AUComponent.cpp
src/AudioUnit/AUComponent.h src/AudioUnitOld/AUComponent.h
src/AudioUnit/AUGraph.cpp src/AudioUnitOld/AUGraph.cpp
src/AudioUnit/AUGraph.h src/AudioUnitOld/AUGraph.h
src/AudioUnit/AudioOutputUnitComponent.cpp src/AudioUnitOld/AudioOutputUnitComponent.cpp
src/AudioUnit/AudioOutputUnitComponent.h src/AudioUnitOld/AudioOutputUnitComponent.h
src/AudioUnit/AudioQueue.cpp src/AudioUnitOld/AudioQueue.cpp
src/AudioUnit/AudioQueue.h src/AudioUnitOld/AudioQueue.h
src/AudioUnit/AudioQueueBase.cpp src/AudioUnitOld/AudioQueueBase.cpp
src/AudioUnit/AudioQueueBase.h src/AudioUnitOld/AudioQueueBase.h
src/AudioUnit/AudioQueueOutput.cpp src/AudioUnitOld/AudioQueueOutput.cpp
src/AudioUnit/AudioQueueOutput.h src/AudioUnitOld/AudioQueueOutput.h
src/AudioUnit/AudioUnit.cpp src/AudioUnitOld/AudioUnit.cpp
src/AudioUnit/AudioUnit.h src/AudioUnitOld/AudioUnit.h
src/AudioUnit/AudioUnitALSA.cpp src/AudioUnitOld/AudioUnitALSA.cpp
src/AudioUnit/AudioUnitALSA.h src/AudioUnitOld/AudioUnitALSA.h
src/AudioUnit/AudioUnitBase.cpp src/AudioUnitOld/AudioUnitBase.cpp
src/AudioUnit/AudioUnitBase.h src/AudioUnitOld/AudioUnitBase.h
src/AudioUnit/AudioUnitPA.cpp src/AudioUnitOld/AudioUnitPA.cpp
src/AudioUnit/AudioUnitPA.h src/AudioUnitOld/AudioUnitPA.h
src/AudioUnit/AudioUnitProperties.h src/AudioUnitOld/AudioUnitProperties.h
src/AudioUnit/AudioUnitRenderer.cpp src/AudioUnitOld/AudioUnitRenderer.cpp
src/AudioUnit/AudioUnitRenderer.h src/AudioUnitOld/AudioUnitRenderer.h
+10 -79
src/AudioUnit/CMakeLists.txt
··· 1 1 project(AudioUnit) 2 2 3 - cmake_minimum_required(VERSION 2.4.0) 4 - if(COMMAND cmake_policy) 5 - cmake_policy(SET CMP0003 NEW) 6 - endif(COMMAND cmake_policy) 3 + set(DYLIB_COMPAT_VERSION "1.0.0") 4 + set(DYLIB_CURRENT_VERSION "1.0.0") 7 5 8 - option(ENABLE_ALSA "Enable ALSA audio" ON) 9 - option(ENABLE_PULSEAUDIO "Enable PulseAudio" ON) 6 + add_framework(AudioUnit 7 + FAT 8 + CURRENT_VERSION 9 + VERSION "A" 10 10 11 - if (ENABLE_ALSA) 12 - find_path(ALSA_INCLUDE_DIR asoundlib.h PATH_SUFFIXES alsa) 13 - message(STATUS "ALSA include dir: ${ALSA_INCLUDE_DIR}") 11 + SOURCES 12 + src/AudioUnit.c 14 13 15 - if (NOT ALSA_INCLUDE_DIR) 16 - message(FATAL_ERROR "Cannot find ALSA header files") 17 - endif (NOT ALSA_INCLUDE_DIR) 18 - endif (ENABLE_ALSA) 19 - 20 - if (ENABLE_PULSEAUDIO) 21 - find_path(PA_INCLUDE_DIR pulse/pulseaudio.h) 22 - message(STATUS "PA include dir: ${PA_INCLUDE_DIR}") 23 - 24 - if (NOT PA_INCLUDE_DIR) 25 - message(FATAL_ERROR "Cannot find PulseAudio header files") 26 - endif (NOT PA_INCLUDE_DIR) 27 - endif (ENABLE_PULSEAUDIO) 28 - 29 - #configure_file(config.h.in config.h) 30 - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -fblocks -ggdb -O0") 31 - set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--version-script=${DARLING_TOP_DIRECTORY}/darwin.map") 32 - 33 - add_definitions(-DOBJC2RUNTIME -U__APPLE__ -DDISPATCH_NO_INCLUDE_MACH_HEADERS=1) 34 - 35 - include_directories(${CMAKE_CURRENT_SOURCE_DIR}) 36 - include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..) 37 - include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../util) 38 - include_directories(${DARLING_TOP_DIRECTORY}/src/external/libdispatch) 39 - #include_directories(${DARLING_TOP_DIRECTORY}/src/external/libcxx/include) 40 - include_directories(${DARLING_TOP_DIRECTORY}/src/external/corefoundation/Headers) 41 - include_directories(${DARLING_TOP_DIRECTORY}/src/external/libobjc2) 42 - include_directories(${CMAKE_BINARY_DIR}/src/external/corefoundation/Headers) 43 - include_directories(${DARLING_TOP_DIRECTORY}/src/external/foundation/Headers) 44 - include_directories(${DARLING_TOP_DIRECTORY}/src/libc) 45 - include_directories(${ALSA_INCLUDE_DIR} ${PA_INCLUDE_DIR}) 46 - include_directories(${DARLING_TOP_DIRECTORY}/basic-headers) 47 - #include_directories(${DARLING_TOP_DIRECTORY}/platform-include) 48 - 49 - set(AudioUnit_SRCS 50 - AUComponent.cpp 51 - AUGraph.cpp 52 - AudioUnit.cpp 53 - AudioOutputUnitComponent.cpp 54 - AudioUnitBase.cpp 55 - AudioUnitRenderer.cpp 56 - 57 - AudioQueue.cpp 58 - AudioQueueBase.cpp 59 - AudioQueueOutput.cpp 60 - ../util/debug.cpp 61 - ../util/stlutils.cpp 14 + DEPENDENCIES 15 + system 62 16 ) 63 - 64 - if (ENABLE_ALSA) 65 - add_definitions(-DENABLE_ALSA) 66 - list(APPEND AudioUnit_SRCS AudioUnitALSA.cpp) 67 - list(APPEND SoundLibs "-lasound") 68 - endif (ENABLE_ALSA) 69 - 70 - if (ENABLE_PULSEAUDIO) 71 - add_definitions(-DENABLE_PULSEAUDIO) 72 - list(APPEND AudioUnit_SRCS AudioUnitPA.cpp) 73 - list(APPEND SoundLibs "-lpulse") 74 - endif (ENABLE_PULSEAUDIO) 75 - 76 - SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/darling") 77 - #SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--enable-new-dtags") 78 - SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) 79 - SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) 80 - 81 - add_library(AudioUnit SHARED ${AudioUnit_SRCS}) 82 - target_link_libraries(AudioUnit -lstdc++ -lpthread ${SoundLibs} libdispatch_shared CFF) 83 - 84 - install(TARGETS AudioUnit DESTINATION "${CMAKE_INSTALL_LIBDIR}/darling") 85 -
src/AudioUnit/include/AudioUnit/AUComponent.h src/AudioUnitOld/include/AudioUnit/AUComponent.h
src/AudioUnit/include/AudioUnit/AUGraph.h src/AudioUnitOld/include/AudioUnit/AUGraph.h
src/AudioUnit/include/AudioUnit/AudioOutputUnitComponent.h src/AudioUnitOld/include/AudioUnit/AudioOutputUnitComponent.h
src/AudioUnit/include/AudioUnit/AudioQueue.h src/AudioUnitOld/include/AudioUnit/AudioQueue.h
src/AudioUnit/include/AudioUnit/AudioQueueBase.h src/AudioUnitOld/include/AudioUnit/AudioQueueBase.h
src/AudioUnit/include/AudioUnit/AudioQueueOutput.h src/AudioUnitOld/include/AudioUnit/AudioQueueOutput.h
+17 -38
src/AudioUnit/include/AudioUnit/AudioUnit.h
··· 1 - #ifndef AUDIOUNIT_H 2 - #define AUDIOUNIT_H 3 - #include <MacTypes.h> 4 - #include <CoreAudio/CoreAudioTypes.h> 5 - #include "AUComponent.h" 1 + /* 2 + This file is part of Darling. 6 3 7 - typedef AudioComponentInstance AudioUnit; 8 - typedef UInt32 AudioUnitRenderActionFlags; 9 - typedef UInt32 AudioUnitElement; 10 - typedef UInt32 AudioUnitScope; 11 - typedef UInt32 AudioUnitPropertyID; 4 + Copyright (C) 2019 Lubos Dolezel 12 5 13 - typedef OSStatus (*AURenderCallback) (void *inRefCon, AudioUnitRenderActionFlags *ioActionFlags, const AudioTimeStamp *inTimeStamp, UInt32 inBusNumber, UInt32 inNumberFrames, AudioBufferList *ioData); 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. 14 10 15 - enum { 16 - kAudioUnitRenderAction_PreRender = (1 << 2), 17 - kAudioUnitRenderAction_PostRender = (1 << 3), 18 - kAudioUnitRenderAction_OutputIsSilence = (1 << 4), 19 - kAudioOfflineUnitRenderAction_Preflight = (1 << 5), 20 - kAudioOfflineUnitRenderAction_Render = (1 << 6), 21 - kAudioOfflineUnitRenderAction_Complete = (1 << 7), 22 - kAudioUnitRenderAction_PostRenderError = (1 << 8), 23 - kAudioUnitRenderAction_DoNotCheckRenderArgs = (1 << 9) 24 - }; 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. 25 15 26 - extern "C" { 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 + */ 27 19 28 - OSStatus AudioUnitInitialize(AudioUnit inUnit); 29 - OSStatus AudioUnitUninitialize(AudioUnit inUnit); 30 20 31 - OSStatus AudioUnitAddRenderNotify(AudioUnit inUnit, AURenderCallback inProc, void* opaque); 32 - OSStatus AudioUnitRemoveRenderNotify(AudioUnit inUnit, AURenderCallback inProc, void* opaque); 21 + #ifndef _AudioUnit_H_ 22 + #define _AudioUnit_H_ 33 23 34 - OSStatus AudioUnitRender(AudioUnit inUnit, AudioUnitRenderActionFlags *ioActionFlags, const AudioTimeStamp *inTimeStamp, UInt32 inOutputBusNumber, UInt32 inNumberFrames, AudioBufferList *ioData); 35 - OSStatus AudioUnitReset(AudioUnit inUnit, AudioUnitScope inScope, AudioUnitElement inElement); 36 - 37 - OSStatus AudioUnitGetProperty(AudioUnit inUnit, AudioUnitPropertyID inID, AudioUnitScope inScope, AudioUnitElement inElement, void* outData, UInt32 *ioDataSize); 38 - OSStatus AudioUnitGetPropertyInfo(AudioUnit inUnit, AudioUnitPropertyID inID, AudioUnitScope inScope, AudioUnitElement inElement, UInt32 *outDataSize, Boolean *outWritable); 39 - OSStatus AudioUnitSetProperty(AudioUnit inUnit, AudioUnitPropertyID inID, AudioUnitScope inScope, AudioUnitElement inElement, const void *inData, UInt32 inDataSize); 40 - 41 - OSStatus AudioOutputUnitStart(AudioUnit inUnit); 42 - OSStatus AudioOutputUnitStop(AudioUnit inUnit); 43 - 44 - } 24 + void* _Z5dummyv(void); 45 25 46 26 #endif 47 -
src/AudioUnit/include/AudioUnit/AudioUnitALSA.h src/AudioUnitOld/include/AudioUnit/AudioUnitALSA.h
src/AudioUnit/include/AudioUnit/AudioUnitBase.h src/AudioUnitOld/include/AudioUnit/AudioUnitBase.h
src/AudioUnit/include/AudioUnit/AudioUnitPA.h src/AudioUnitOld/include/AudioUnit/AudioUnitPA.h
src/AudioUnit/include/AudioUnit/AudioUnitProperties.h src/AudioUnitOld/include/AudioUnit/AudioUnitProperties.h
src/AudioUnit/include/AudioUnit/AudioUnitRenderer.h src/AudioUnitOld/include/AudioUnit/AudioUnitRenderer.h
+36
src/AudioUnit/src/AudioUnit.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 + 21 + #include <AudioUnit/AudioUnit.h> 22 + #include <stdlib.h> 23 + #include <stdio.h> 24 + 25 + static int verbose = 0; 26 + 27 + __attribute__((constructor)) 28 + static void initme(void) { 29 + verbose = getenv("STUB_VERBOSE") != NULL; 30 + } 31 + 32 + void* _Z5dummyv(void) 33 + { 34 + if (verbose) puts("STUB: _Z5dummyv called"); 35 + return NULL; 36 + }
+85
src/AudioUnitOld/CMakeLists.txt
··· 1 + project(AudioUnit) 2 + 3 + cmake_minimum_required(VERSION 2.4.0) 4 + if(COMMAND cmake_policy) 5 + cmake_policy(SET CMP0003 NEW) 6 + endif(COMMAND cmake_policy) 7 + 8 + option(ENABLE_ALSA "Enable ALSA audio" ON) 9 + option(ENABLE_PULSEAUDIO "Enable PulseAudio" ON) 10 + 11 + if (ENABLE_ALSA) 12 + find_path(ALSA_INCLUDE_DIR asoundlib.h PATH_SUFFIXES alsa) 13 + message(STATUS "ALSA include dir: ${ALSA_INCLUDE_DIR}") 14 + 15 + if (NOT ALSA_INCLUDE_DIR) 16 + message(FATAL_ERROR "Cannot find ALSA header files") 17 + endif (NOT ALSA_INCLUDE_DIR) 18 + endif (ENABLE_ALSA) 19 + 20 + if (ENABLE_PULSEAUDIO) 21 + find_path(PA_INCLUDE_DIR pulse/pulseaudio.h) 22 + message(STATUS "PA include dir: ${PA_INCLUDE_DIR}") 23 + 24 + if (NOT PA_INCLUDE_DIR) 25 + message(FATAL_ERROR "Cannot find PulseAudio header files") 26 + endif (NOT PA_INCLUDE_DIR) 27 + endif (ENABLE_PULSEAUDIO) 28 + 29 + #configure_file(config.h.in config.h) 30 + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -fblocks -ggdb -O0") 31 + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--version-script=${DARLING_TOP_DIRECTORY}/darwin.map") 32 + 33 + add_definitions(-DOBJC2RUNTIME -U__APPLE__ -DDISPATCH_NO_INCLUDE_MACH_HEADERS=1) 34 + 35 + include_directories(${CMAKE_CURRENT_SOURCE_DIR}) 36 + include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..) 37 + include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../util) 38 + include_directories(${DARLING_TOP_DIRECTORY}/src/external/libdispatch) 39 + #include_directories(${DARLING_TOP_DIRECTORY}/src/external/libcxx/include) 40 + include_directories(${DARLING_TOP_DIRECTORY}/src/external/corefoundation/Headers) 41 + include_directories(${DARLING_TOP_DIRECTORY}/src/external/libobjc2) 42 + include_directories(${CMAKE_BINARY_DIR}/src/external/corefoundation/Headers) 43 + include_directories(${DARLING_TOP_DIRECTORY}/src/external/foundation/Headers) 44 + include_directories(${DARLING_TOP_DIRECTORY}/src/libc) 45 + include_directories(${ALSA_INCLUDE_DIR} ${PA_INCLUDE_DIR}) 46 + include_directories(${DARLING_TOP_DIRECTORY}/basic-headers) 47 + #include_directories(${DARLING_TOP_DIRECTORY}/platform-include) 48 + 49 + set(AudioUnit_SRCS 50 + AUComponent.cpp 51 + AUGraph.cpp 52 + AudioUnit.cpp 53 + AudioOutputUnitComponent.cpp 54 + AudioUnitBase.cpp 55 + AudioUnitRenderer.cpp 56 + 57 + AudioQueue.cpp 58 + AudioQueueBase.cpp 59 + AudioQueueOutput.cpp 60 + ../util/debug.cpp 61 + ../util/stlutils.cpp 62 + ) 63 + 64 + if (ENABLE_ALSA) 65 + add_definitions(-DENABLE_ALSA) 66 + list(APPEND AudioUnit_SRCS AudioUnitALSA.cpp) 67 + list(APPEND SoundLibs "-lasound") 68 + endif (ENABLE_ALSA) 69 + 70 + if (ENABLE_PULSEAUDIO) 71 + add_definitions(-DENABLE_PULSEAUDIO) 72 + list(APPEND AudioUnit_SRCS AudioUnitPA.cpp) 73 + list(APPEND SoundLibs "-lpulse") 74 + endif (ENABLE_PULSEAUDIO) 75 + 76 + SET(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/darling") 77 + #SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--enable-new-dtags") 78 + SET(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) 79 + SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) 80 + 81 + add_library(AudioUnit SHARED ${AudioUnit_SRCS}) 82 + target_link_libraries(AudioUnit -lstdc++ -lpthread ${SoundLibs} libdispatch_shared CFF) 83 + 84 + install(TARGETS AudioUnit DESTINATION "${CMAKE_INSTALL_LIBDIR}/darling") 85 +
+47
src/AudioUnitOld/include/AudioUnit/AudioUnit.h
··· 1 + #ifndef AUDIOUNIT_H 2 + #define AUDIOUNIT_H 3 + #include <MacTypes.h> 4 + #include <CoreAudio/CoreAudioTypes.h> 5 + #include "AUComponent.h" 6 + 7 + typedef AudioComponentInstance AudioUnit; 8 + typedef UInt32 AudioUnitRenderActionFlags; 9 + typedef UInt32 AudioUnitElement; 10 + typedef UInt32 AudioUnitScope; 11 + typedef UInt32 AudioUnitPropertyID; 12 + 13 + typedef OSStatus (*AURenderCallback) (void *inRefCon, AudioUnitRenderActionFlags *ioActionFlags, const AudioTimeStamp *inTimeStamp, UInt32 inBusNumber, UInt32 inNumberFrames, AudioBufferList *ioData); 14 + 15 + enum { 16 + kAudioUnitRenderAction_PreRender = (1 << 2), 17 + kAudioUnitRenderAction_PostRender = (1 << 3), 18 + kAudioUnitRenderAction_OutputIsSilence = (1 << 4), 19 + kAudioOfflineUnitRenderAction_Preflight = (1 << 5), 20 + kAudioOfflineUnitRenderAction_Render = (1 << 6), 21 + kAudioOfflineUnitRenderAction_Complete = (1 << 7), 22 + kAudioUnitRenderAction_PostRenderError = (1 << 8), 23 + kAudioUnitRenderAction_DoNotCheckRenderArgs = (1 << 9) 24 + }; 25 + 26 + extern "C" { 27 + 28 + OSStatus AudioUnitInitialize(AudioUnit inUnit); 29 + OSStatus AudioUnitUninitialize(AudioUnit inUnit); 30 + 31 + OSStatus AudioUnitAddRenderNotify(AudioUnit inUnit, AURenderCallback inProc, void* opaque); 32 + OSStatus AudioUnitRemoveRenderNotify(AudioUnit inUnit, AURenderCallback inProc, void* opaque); 33 + 34 + OSStatus AudioUnitRender(AudioUnit inUnit, AudioUnitRenderActionFlags *ioActionFlags, const AudioTimeStamp *inTimeStamp, UInt32 inOutputBusNumber, UInt32 inNumberFrames, AudioBufferList *ioData); 35 + OSStatus AudioUnitReset(AudioUnit inUnit, AudioUnitScope inScope, AudioUnitElement inElement); 36 + 37 + OSStatus AudioUnitGetProperty(AudioUnit inUnit, AudioUnitPropertyID inID, AudioUnitScope inScope, AudioUnitElement inElement, void* outData, UInt32 *ioDataSize); 38 + OSStatus AudioUnitGetPropertyInfo(AudioUnit inUnit, AudioUnitPropertyID inID, AudioUnitScope inScope, AudioUnitElement inElement, UInt32 *outDataSize, Boolean *outWritable); 39 + OSStatus AudioUnitSetProperty(AudioUnit inUnit, AudioUnitPropertyID inID, AudioUnitScope inScope, AudioUnitElement inElement, const void *inData, UInt32 inDataSize); 40 + 41 + OSStatus AudioOutputUnitStart(AudioUnit inUnit); 42 + OSStatus AudioOutputUnitStop(AudioUnit inUnit); 43 + 44 + } 45 + 46 + #endif 47 +
+8
src/CMakeLists.txt
··· 232 232 ${CMAKE_CURRENT_SOURCE_DIR}/ApplicationServices/SpeechSynthesis/include 233 233 ${CMAKE_CURRENT_SOURCE_DIR}/ColorSync/include 234 234 ${CMAKE_CURRENT_SOURCE_DIR}/external/lzfse/include 235 + ${CMAKE_CURRENT_SOURCE_DIR}/VideoToolbox/include 236 + ${CMAKE_CURRENT_SOURCE_DIR}/QTKit/include 237 + ${CMAKE_CURRENT_SOURCE_DIR}/AudioUnit/include 238 + ${CMAKE_CURRENT_SOURCE_DIR}/CoreMediaIO/include 235 239 ) 236 240 237 241 add_subdirectory(external/libkqueue) ··· 413 417 add_subdirectory(LDAP) 414 418 add_subdirectory(ExceptionHandling) 415 419 add_subdirectory(external/lzfse) 420 + add_subdirectory(VideoToolbox) 421 + add_subdirectory(QTKit) 422 + add_subdirectory(AudioUnit) 423 + add_subdirectory(CoreMediaIO) 416 424 417 425 # Just a stub 418 426 add_subdirectory(WebKit)
+18
src/CoreMediaIO/CMakeLists.txt
··· 1 + project(CoreMediaIO) 2 + 3 + set(DYLIB_COMPAT_VERSION "1.0.0") 4 + set(DYLIB_CURRENT_VERSION "1.0.0") 5 + 6 + add_framework(CoreMediaIO 7 + FAT 8 + CURRENT_VERSION 9 + VERSION "A" 10 + 11 + SOURCES 12 + src/CoreMediaIO.m 13 + 14 + DEPENDENCIES 15 + system 16 + objc 17 + Foundation 18 + )
+164
src/CoreMediaIO/include/CoreMediaIO/CoreMediaIO.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 + 21 + #ifndef _CoreMediaIO_H_ 22 + #define _CoreMediaIO_H_ 23 + 24 + #import <Foundation/Foundation.h> 25 + 26 + 27 + void* CMIOAddAtExitListener(void); 28 + void* CMIODeviceProcessAVCCommand(void); 29 + void* CMIODeviceProcessRS422Command(void); 30 + void* CMIODeviceStartStream(void); 31 + void* CMIODeviceStopStream(void); 32 + void* CMIOFileWritingControlTokenAllVolumesAreOutOfDiskSpace(void); 33 + void* CMIOFileWritingControlTokenBufferIsIncompatibleWithCurrentFile(void); 34 + void* CMIOFileWritingControlTokenCreate(void); 35 + void* CMIOFileWritingControlTokenCreateOutputPathToCapturePathDictionary(void); 36 + void* CMIOFileWritingControlTokenCurrentVolumeIsOutOfDiskSpace(void); 37 + void* CMIOFileWritingControlTokenGetCompletedFileSizeEstimate(void); 38 + void* CMIOFileWritingControlTokenGetDiscontinuityFlags(void); 39 + void* CMIOFileWritingControlTokenGetFileDuration(void); 40 + void* CMIOFileWritingControlTokenGetFileSize(void); 41 + void* CMIOFileWritingControlTokenGetFileWriterOptionsDictionary(void); 42 + void* CMIOFileWritingControlTokenGetSMPTETime(void); 43 + void* CMIOFileWritingControlTokenGetSampleBuffer(void); 44 + void* CMIOFileWritingControlTokenMaximumFileSizeHasBeenReached(void); 45 + void* CMIOFileWritingControlTokenMaximumRecordDurationHasBeenReached(void); 46 + void* CMIOFileWritingControlTokenPauseWriting(void); 47 + void* CMIOFileWritingControlTokenRelease(void); 48 + void* CMIOFileWritingControlTokenResumeWriting(void); 49 + void* CMIOFileWritingControlTokenStartWriting(void); 50 + void* CMIOFileWritingControlTokenStopWriting(void); 51 + void* CMIOFileWritingControlTokenTriggerFileWritingControlCallback(void); 52 + void* CMIOFileWritingControlTokenUnitCanPauseAndResumeWriting(void); 53 + void* CMIOFileWritingControlTokenUnitCanStartWriting(void); 54 + void* CMIOFileWritingControlTokenUnitIsPaused(void); 55 + void* CMIOFileWritingControlTokenUnitIsWriting(void); 56 + void* CMIOFormatDescriptionGetManufacturerCode(void); 57 + void* CMIOFormatDescriptionGetOnlyHasIFrames(void); 58 + void* CMIOFormatDescriptionSignifiesDiscontinuity(void); 59 + void* CMIOGetUnitRegistry(void); 60 + void* CMIOGlobalDTraceFireProbe(void); 61 + void* CMIOGlobalDTraceProbeIsEnabled(void); 62 + void* CMIOGraphAddPropertyListener(void); 63 + void* CMIOGraphAddRenderNotify(void); 64 + void* CMIOGraphClearConnections(void); 65 + void* CMIOGraphConnectNodeInput(void); 66 + void* CMIOGraphCountNodeConnections(void); 67 + void* CMIOGraphCreate(void); 68 + void* CMIOGraphCreateAndConfigureForUnits(void); 69 + void* CMIOGraphCreateNode(void); 70 + void* CMIOGraphDictionaryRepresentation(void); 71 + void* CMIOGraphDisconnectNodeInput(void); 72 + void* CMIOGraphGetConnectionInfo(void); 73 + void* CMIOGraphGetIndNode(void); 74 + void* CMIOGraphGetNodeByFunctionalDesignationAndIndex(void); 75 + void* CMIOGraphGetNodeConnections(void); 76 + void* CMIOGraphGetNodeCount(void); 77 + void* CMIOGraphGetNodeInfo(void); 78 + void* CMIOGraphGetNotificationCenter(void); 79 + void* CMIOGraphGetNumberOfConnections(void); 80 + void* CMIOGraphGetPropertiesDictionary(void); 81 + void* CMIOGraphGetProperty(void); 82 + void* CMIOGraphGetPropertyInfo(void); 83 + void* CMIOGraphGetTypeID(void); 84 + void* CMIOGraphInitialize(void); 85 + void* CMIOGraphPause(void); 86 + void* CMIOGraphRelease(void); 87 + void* CMIOGraphRemoveNode(void); 88 + void* CMIOGraphRemovePropertyListener(void); 89 + void* CMIOGraphRemoveRenderNotify(void); 90 + void* CMIOGraphResume(void); 91 + void* CMIOGraphResyncPreview(void); 92 + void* CMIOGraphRetain(void); 93 + void* CMIOGraphSetProperties(void); 94 + void* CMIOGraphSetProperty(void); 95 + void* CMIOGraphStart(void); 96 + void* CMIOGraphStop(void); 97 + void* CMIOGraphUninitialize(void); 98 + void* CMIOGraphUpdate(void); 99 + void* CMIOHardwareBeMaster(void); 100 + void* CMIOHardwareUnload(void); 101 + void* CMIOMetadataCopyAsDictionary(void); 102 + void* CMIOMetadataCopyCommonAsDictionary(void); 103 + void* CMIOObjectAddPropertyListener(void); 104 + void* CMIOObjectAddPropertyListenerBlock(void); 105 + void* CMIOObjectCreate(void); 106 + void* CMIOObjectGetPropertyData(void); 107 + void* CMIOObjectGetPropertyDataSize(void); 108 + void* CMIOObjectHasProperty(void); 109 + void* CMIOObjectIsPropertySettable(void); 110 + void* CMIOObjectPropertiesChanged(void); 111 + void* CMIOObjectRemovePropertyListener(void); 112 + void* CMIOObjectRemovePropertyListenerBlock(void); 113 + void* CMIOObjectSetPropertyData(void); 114 + void* CMIOObjectShow(void); 115 + void* CMIOObjectsPublishedAndDied(void); 116 + void* CMIOOutputCoordinatorCheckOutputTimebaseRate(void); 117 + void* CMIOOutputCoordinatorCreate(void); 118 + void* CMIOOutputCoordinatorDetach(void); 119 + void* CMIOOutputCoordinatorGetCoordinatedOutputTimebase(void); 120 + void* CMIOOutputCoordinatorGetEarliestVideoPresentationTime(void); 121 + void* CMIOOutputCoordinatorGetMasterOutputDeviceLatency(void); 122 + void* CMIOOutputCoordinatorGetNumberOfAudioOutputUnitsBeingCoordinated(void); 123 + void* CMIOOutputCoordinatorGetNumberOfVideoOutputUnitsBeingCoordinated(void); 124 + void* CMIOOutputCoordinatorGetOutputUnitForSynchronizerUnit(void); 125 + void* CMIOOutputCoordinatorGetState(void); 126 + void* CMIOOutputCoordinatorGetTypeID(void); 127 + void* CMIOOutputCoordinatorIdle(void); 128 + void* CMIOOutputCoordinatorNoteAudioOutputPrimed(void); 129 + void* CMIOOutputCoordinatorNoteMasterOutputDeviceLatency(void); 130 + void* CMIOOutputCoordinatorNoteVideoOutputPrimed(void); 131 + void* CMIOOutputCoordinatorNoteVideoOutputSynchronizerPrimed(void); 132 + void* CMIOOutputCoordinatorRelease(void); 133 + void* CMIOOutputCoordinatorReset(void); 134 + void* CMIOOutputCoordinatorRetain(void); 135 + void* CMIORemoveAtExitListener(void); 136 + void* CMIOSampleBufferCopyNonRequiredAttachments(void); 137 + void* CMIOSampleBufferCopySampleAttachments(void); 138 + void* CMIOSampleBufferCreate(void); 139 + void* CMIOSampleBufferCreateForImageBuffer(void); 140 + void* CMIOSampleBufferCreateNoDataMarker(void); 141 + void* CMIOSampleBufferGetDiscontinuityFlags(void); 142 + void* CMIOSampleBufferGetSequenceNumber(void); 143 + void* CMIOSampleBufferSetDiscontinuityFlags(void); 144 + void* CMIOSampleBufferSetSequenceNumber(void); 145 + void* CMIOStreamClockConvertHostTimeToDeviceTime(void); 146 + void* CMIOStreamClockCreate(void); 147 + void* CMIOStreamClockInvalidate(void); 148 + void* CMIOStreamClockPostTimingEvent(void); 149 + void* CMIOStreamCopyBufferQueue(void); 150 + void* CMIOStreamDeckCueTo(void); 151 + void* CMIOStreamDeckJog(void); 152 + void* CMIOStreamDeckPlay(void); 153 + void* CMIOStreamDeckStop(void); 154 + void* CMIOUnitCreateFromDescription(void); 155 + void* CMIOUnitGetClassID(void); 156 + void* CMIOUnitGetTypeID(void); 157 + void* CMIOUnitRelease(void); 158 + void* CMIOUnitRetain(void); 159 + void* CMIOUnitUtilityCreateAudioCompressionOptionsDictionary(void); 160 + void* CMIOUnitUtilityCreateAudioCompressionOptionsDictionary2(void); 161 + void* CMIOUnitUtilityGetAudioCompressionOptionsDictionaryFields(void); 162 + void* CMIOUnitUtilityGetAudioCompressionOptionsDictionaryFields2(void); 163 + 164 + #endif
+846
src/CoreMediaIO/src/CoreMediaIO.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 + 21 + #include <CoreMediaIO/CoreMediaIO.h> 22 + #include <stdlib.h> 23 + #include <stdio.h> 24 + 25 + static int verbose = 0; 26 + 27 + __attribute__((constructor)) 28 + static void initme(void) { 29 + verbose = getenv("STUB_VERBOSE") != NULL; 30 + } 31 + 32 + void* CMIOAddAtExitListener(void) 33 + { 34 + if (verbose) puts("STUB: CMIOAddAtExitListener called"); 35 + return NULL; 36 + } 37 + 38 + void* CMIODeviceProcessAVCCommand(void) 39 + { 40 + if (verbose) puts("STUB: CMIODeviceProcessAVCCommand called"); 41 + return NULL; 42 + } 43 + 44 + void* CMIODeviceProcessRS422Command(void) 45 + { 46 + if (verbose) puts("STUB: CMIODeviceProcessRS422Command called"); 47 + return NULL; 48 + } 49 + 50 + void* CMIODeviceStartStream(void) 51 + { 52 + if (verbose) puts("STUB: CMIODeviceStartStream called"); 53 + return NULL; 54 + } 55 + 56 + void* CMIODeviceStopStream(void) 57 + { 58 + if (verbose) puts("STUB: CMIODeviceStopStream called"); 59 + return NULL; 60 + } 61 + 62 + void* CMIOFileWritingControlTokenAllVolumesAreOutOfDiskSpace(void) 63 + { 64 + if (verbose) puts("STUB: CMIOFileWritingControlTokenAllVolumesAreOutOfDiskSpace called"); 65 + return NULL; 66 + } 67 + 68 + void* CMIOFileWritingControlTokenBufferIsIncompatibleWithCurrentFile(void) 69 + { 70 + if (verbose) puts("STUB: CMIOFileWritingControlTokenBufferIsIncompatibleWithCurrentFile called"); 71 + return NULL; 72 + } 73 + 74 + void* CMIOFileWritingControlTokenCreate(void) 75 + { 76 + if (verbose) puts("STUB: CMIOFileWritingControlTokenCreate called"); 77 + return NULL; 78 + } 79 + 80 + void* CMIOFileWritingControlTokenCreateOutputPathToCapturePathDictionary(void) 81 + { 82 + if (verbose) puts("STUB: CMIOFileWritingControlTokenCreateOutputPathToCapturePathDictionary called"); 83 + return NULL; 84 + } 85 + 86 + void* CMIOFileWritingControlTokenCurrentVolumeIsOutOfDiskSpace(void) 87 + { 88 + if (verbose) puts("STUB: CMIOFileWritingControlTokenCurrentVolumeIsOutOfDiskSpace called"); 89 + return NULL; 90 + } 91 + 92 + void* CMIOFileWritingControlTokenGetCompletedFileSizeEstimate(void) 93 + { 94 + if (verbose) puts("STUB: CMIOFileWritingControlTokenGetCompletedFileSizeEstimate called"); 95 + return NULL; 96 + } 97 + 98 + void* CMIOFileWritingControlTokenGetDiscontinuityFlags(void) 99 + { 100 + if (verbose) puts("STUB: CMIOFileWritingControlTokenGetDiscontinuityFlags called"); 101 + return NULL; 102 + } 103 + 104 + void* CMIOFileWritingControlTokenGetFileDuration(void) 105 + { 106 + if (verbose) puts("STUB: CMIOFileWritingControlTokenGetFileDuration called"); 107 + return NULL; 108 + } 109 + 110 + void* CMIOFileWritingControlTokenGetFileSize(void) 111 + { 112 + if (verbose) puts("STUB: CMIOFileWritingControlTokenGetFileSize called"); 113 + return NULL; 114 + } 115 + 116 + void* CMIOFileWritingControlTokenGetFileWriterOptionsDictionary(void) 117 + { 118 + if (verbose) puts("STUB: CMIOFileWritingControlTokenGetFileWriterOptionsDictionary called"); 119 + return NULL; 120 + } 121 + 122 + void* CMIOFileWritingControlTokenGetSMPTETime(void) 123 + { 124 + if (verbose) puts("STUB: CMIOFileWritingControlTokenGetSMPTETime called"); 125 + return NULL; 126 + } 127 + 128 + void* CMIOFileWritingControlTokenGetSampleBuffer(void) 129 + { 130 + if (verbose) puts("STUB: CMIOFileWritingControlTokenGetSampleBuffer called"); 131 + return NULL; 132 + } 133 + 134 + void* CMIOFileWritingControlTokenMaximumFileSizeHasBeenReached(void) 135 + { 136 + if (verbose) puts("STUB: CMIOFileWritingControlTokenMaximumFileSizeHasBeenReached called"); 137 + return NULL; 138 + } 139 + 140 + void* CMIOFileWritingControlTokenMaximumRecordDurationHasBeenReached(void) 141 + { 142 + if (verbose) puts("STUB: CMIOFileWritingControlTokenMaximumRecordDurationHasBeenReached called"); 143 + return NULL; 144 + } 145 + 146 + void* CMIOFileWritingControlTokenPauseWriting(void) 147 + { 148 + if (verbose) puts("STUB: CMIOFileWritingControlTokenPauseWriting called"); 149 + return NULL; 150 + } 151 + 152 + void* CMIOFileWritingControlTokenRelease(void) 153 + { 154 + if (verbose) puts("STUB: CMIOFileWritingControlTokenRelease called"); 155 + return NULL; 156 + } 157 + 158 + void* CMIOFileWritingControlTokenResumeWriting(void) 159 + { 160 + if (verbose) puts("STUB: CMIOFileWritingControlTokenResumeWriting called"); 161 + return NULL; 162 + } 163 + 164 + void* CMIOFileWritingControlTokenStartWriting(void) 165 + { 166 + if (verbose) puts("STUB: CMIOFileWritingControlTokenStartWriting called"); 167 + return NULL; 168 + } 169 + 170 + void* CMIOFileWritingControlTokenStopWriting(void) 171 + { 172 + if (verbose) puts("STUB: CMIOFileWritingControlTokenStopWriting called"); 173 + return NULL; 174 + } 175 + 176 + void* CMIOFileWritingControlTokenTriggerFileWritingControlCallback(void) 177 + { 178 + if (verbose) puts("STUB: CMIOFileWritingControlTokenTriggerFileWritingControlCallback called"); 179 + return NULL; 180 + } 181 + 182 + void* CMIOFileWritingControlTokenUnitCanPauseAndResumeWriting(void) 183 + { 184 + if (verbose) puts("STUB: CMIOFileWritingControlTokenUnitCanPauseAndResumeWriting called"); 185 + return NULL; 186 + } 187 + 188 + void* CMIOFileWritingControlTokenUnitCanStartWriting(void) 189 + { 190 + if (verbose) puts("STUB: CMIOFileWritingControlTokenUnitCanStartWriting called"); 191 + return NULL; 192 + } 193 + 194 + void* CMIOFileWritingControlTokenUnitIsPaused(void) 195 + { 196 + if (verbose) puts("STUB: CMIOFileWritingControlTokenUnitIsPaused called"); 197 + return NULL; 198 + } 199 + 200 + void* CMIOFileWritingControlTokenUnitIsWriting(void) 201 + { 202 + if (verbose) puts("STUB: CMIOFileWritingControlTokenUnitIsWriting called"); 203 + return NULL; 204 + } 205 + 206 + void* CMIOFormatDescriptionGetManufacturerCode(void) 207 + { 208 + if (verbose) puts("STUB: CMIOFormatDescriptionGetManufacturerCode called"); 209 + return NULL; 210 + } 211 + 212 + void* CMIOFormatDescriptionGetOnlyHasIFrames(void) 213 + { 214 + if (verbose) puts("STUB: CMIOFormatDescriptionGetOnlyHasIFrames called"); 215 + return NULL; 216 + } 217 + 218 + void* CMIOFormatDescriptionSignifiesDiscontinuity(void) 219 + { 220 + if (verbose) puts("STUB: CMIOFormatDescriptionSignifiesDiscontinuity called"); 221 + return NULL; 222 + } 223 + 224 + void* CMIOGetUnitRegistry(void) 225 + { 226 + if (verbose) puts("STUB: CMIOGetUnitRegistry called"); 227 + return NULL; 228 + } 229 + 230 + void* CMIOGlobalDTraceFireProbe(void) 231 + { 232 + if (verbose) puts("STUB: CMIOGlobalDTraceFireProbe called"); 233 + return NULL; 234 + } 235 + 236 + void* CMIOGlobalDTraceProbeIsEnabled(void) 237 + { 238 + if (verbose) puts("STUB: CMIOGlobalDTraceProbeIsEnabled called"); 239 + return NULL; 240 + } 241 + 242 + void* CMIOGraphAddPropertyListener(void) 243 + { 244 + if (verbose) puts("STUB: CMIOGraphAddPropertyListener called"); 245 + return NULL; 246 + } 247 + 248 + void* CMIOGraphAddRenderNotify(void) 249 + { 250 + if (verbose) puts("STUB: CMIOGraphAddRenderNotify called"); 251 + return NULL; 252 + } 253 + 254 + void* CMIOGraphClearConnections(void) 255 + { 256 + if (verbose) puts("STUB: CMIOGraphClearConnections called"); 257 + return NULL; 258 + } 259 + 260 + void* CMIOGraphConnectNodeInput(void) 261 + { 262 + if (verbose) puts("STUB: CMIOGraphConnectNodeInput called"); 263 + return NULL; 264 + } 265 + 266 + void* CMIOGraphCountNodeConnections(void) 267 + { 268 + if (verbose) puts("STUB: CMIOGraphCountNodeConnections called"); 269 + return NULL; 270 + } 271 + 272 + void* CMIOGraphCreate(void) 273 + { 274 + if (verbose) puts("STUB: CMIOGraphCreate called"); 275 + return NULL; 276 + } 277 + 278 + void* CMIOGraphCreateAndConfigureForUnits(void) 279 + { 280 + if (verbose) puts("STUB: CMIOGraphCreateAndConfigureForUnits called"); 281 + return NULL; 282 + } 283 + 284 + void* CMIOGraphCreateNode(void) 285 + { 286 + if (verbose) puts("STUB: CMIOGraphCreateNode called"); 287 + return NULL; 288 + } 289 + 290 + void* CMIOGraphDictionaryRepresentation(void) 291 + { 292 + if (verbose) puts("STUB: CMIOGraphDictionaryRepresentation called"); 293 + return NULL; 294 + } 295 + 296 + void* CMIOGraphDisconnectNodeInput(void) 297 + { 298 + if (verbose) puts("STUB: CMIOGraphDisconnectNodeInput called"); 299 + return NULL; 300 + } 301 + 302 + void* CMIOGraphGetConnectionInfo(void) 303 + { 304 + if (verbose) puts("STUB: CMIOGraphGetConnectionInfo called"); 305 + return NULL; 306 + } 307 + 308 + void* CMIOGraphGetIndNode(void) 309 + { 310 + if (verbose) puts("STUB: CMIOGraphGetIndNode called"); 311 + return NULL; 312 + } 313 + 314 + void* CMIOGraphGetNodeByFunctionalDesignationAndIndex(void) 315 + { 316 + if (verbose) puts("STUB: CMIOGraphGetNodeByFunctionalDesignationAndIndex called"); 317 + return NULL; 318 + } 319 + 320 + void* CMIOGraphGetNodeConnections(void) 321 + { 322 + if (verbose) puts("STUB: CMIOGraphGetNodeConnections called"); 323 + return NULL; 324 + } 325 + 326 + void* CMIOGraphGetNodeCount(void) 327 + { 328 + if (verbose) puts("STUB: CMIOGraphGetNodeCount called"); 329 + return NULL; 330 + } 331 + 332 + void* CMIOGraphGetNodeInfo(void) 333 + { 334 + if (verbose) puts("STUB: CMIOGraphGetNodeInfo called"); 335 + return NULL; 336 + } 337 + 338 + void* CMIOGraphGetNotificationCenter(void) 339 + { 340 + if (verbose) puts("STUB: CMIOGraphGetNotificationCenter called"); 341 + return NULL; 342 + } 343 + 344 + void* CMIOGraphGetNumberOfConnections(void) 345 + { 346 + if (verbose) puts("STUB: CMIOGraphGetNumberOfConnections called"); 347 + return NULL; 348 + } 349 + 350 + void* CMIOGraphGetPropertiesDictionary(void) 351 + { 352 + if (verbose) puts("STUB: CMIOGraphGetPropertiesDictionary called"); 353 + return NULL; 354 + } 355 + 356 + void* CMIOGraphGetProperty(void) 357 + { 358 + if (verbose) puts("STUB: CMIOGraphGetProperty called"); 359 + return NULL; 360 + } 361 + 362 + void* CMIOGraphGetPropertyInfo(void) 363 + { 364 + if (verbose) puts("STUB: CMIOGraphGetPropertyInfo called"); 365 + return NULL; 366 + } 367 + 368 + void* CMIOGraphGetTypeID(void) 369 + { 370 + if (verbose) puts("STUB: CMIOGraphGetTypeID called"); 371 + return NULL; 372 + } 373 + 374 + void* CMIOGraphInitialize(void) 375 + { 376 + if (verbose) puts("STUB: CMIOGraphInitialize called"); 377 + return NULL; 378 + } 379 + 380 + void* CMIOGraphPause(void) 381 + { 382 + if (verbose) puts("STUB: CMIOGraphPause called"); 383 + return NULL; 384 + } 385 + 386 + void* CMIOGraphRelease(void) 387 + { 388 + if (verbose) puts("STUB: CMIOGraphRelease called"); 389 + return NULL; 390 + } 391 + 392 + void* CMIOGraphRemoveNode(void) 393 + { 394 + if (verbose) puts("STUB: CMIOGraphRemoveNode called"); 395 + return NULL; 396 + } 397 + 398 + void* CMIOGraphRemovePropertyListener(void) 399 + { 400 + if (verbose) puts("STUB: CMIOGraphRemovePropertyListener called"); 401 + return NULL; 402 + } 403 + 404 + void* CMIOGraphRemoveRenderNotify(void) 405 + { 406 + if (verbose) puts("STUB: CMIOGraphRemoveRenderNotify called"); 407 + return NULL; 408 + } 409 + 410 + void* CMIOGraphResume(void) 411 + { 412 + if (verbose) puts("STUB: CMIOGraphResume called"); 413 + return NULL; 414 + } 415 + 416 + void* CMIOGraphResyncPreview(void) 417 + { 418 + if (verbose) puts("STUB: CMIOGraphResyncPreview called"); 419 + return NULL; 420 + } 421 + 422 + void* CMIOGraphRetain(void) 423 + { 424 + if (verbose) puts("STUB: CMIOGraphRetain called"); 425 + return NULL; 426 + } 427 + 428 + void* CMIOGraphSetProperties(void) 429 + { 430 + if (verbose) puts("STUB: CMIOGraphSetProperties called"); 431 + return NULL; 432 + } 433 + 434 + void* CMIOGraphSetProperty(void) 435 + { 436 + if (verbose) puts("STUB: CMIOGraphSetProperty called"); 437 + return NULL; 438 + } 439 + 440 + void* CMIOGraphStart(void) 441 + { 442 + if (verbose) puts("STUB: CMIOGraphStart called"); 443 + return NULL; 444 + } 445 + 446 + void* CMIOGraphStop(void) 447 + { 448 + if (verbose) puts("STUB: CMIOGraphStop called"); 449 + return NULL; 450 + } 451 + 452 + void* CMIOGraphUninitialize(void) 453 + { 454 + if (verbose) puts("STUB: CMIOGraphUninitialize called"); 455 + return NULL; 456 + } 457 + 458 + void* CMIOGraphUpdate(void) 459 + { 460 + if (verbose) puts("STUB: CMIOGraphUpdate called"); 461 + return NULL; 462 + } 463 + 464 + void* CMIOHardwareBeMaster(void) 465 + { 466 + if (verbose) puts("STUB: CMIOHardwareBeMaster called"); 467 + return NULL; 468 + } 469 + 470 + void* CMIOHardwareUnload(void) 471 + { 472 + if (verbose) puts("STUB: CMIOHardwareUnload called"); 473 + return NULL; 474 + } 475 + 476 + void* CMIOMetadataCopyAsDictionary(void) 477 + { 478 + if (verbose) puts("STUB: CMIOMetadataCopyAsDictionary called"); 479 + return NULL; 480 + } 481 + 482 + void* CMIOMetadataCopyCommonAsDictionary(void) 483 + { 484 + if (verbose) puts("STUB: CMIOMetadataCopyCommonAsDictionary called"); 485 + return NULL; 486 + } 487 + 488 + void* CMIOObjectAddPropertyListener(void) 489 + { 490 + if (verbose) puts("STUB: CMIOObjectAddPropertyListener called"); 491 + return NULL; 492 + } 493 + 494 + void* CMIOObjectAddPropertyListenerBlock(void) 495 + { 496 + if (verbose) puts("STUB: CMIOObjectAddPropertyListenerBlock called"); 497 + return NULL; 498 + } 499 + 500 + void* CMIOObjectCreate(void) 501 + { 502 + if (verbose) puts("STUB: CMIOObjectCreate called"); 503 + return NULL; 504 + } 505 + 506 + void* CMIOObjectGetPropertyData(void) 507 + { 508 + if (verbose) puts("STUB: CMIOObjectGetPropertyData called"); 509 + return NULL; 510 + } 511 + 512 + void* CMIOObjectGetPropertyDataSize(void) 513 + { 514 + if (verbose) puts("STUB: CMIOObjectGetPropertyDataSize called"); 515 + return NULL; 516 + } 517 + 518 + void* CMIOObjectHasProperty(void) 519 + { 520 + if (verbose) puts("STUB: CMIOObjectHasProperty called"); 521 + return NULL; 522 + } 523 + 524 + void* CMIOObjectIsPropertySettable(void) 525 + { 526 + if (verbose) puts("STUB: CMIOObjectIsPropertySettable called"); 527 + return NULL; 528 + } 529 + 530 + void* CMIOObjectPropertiesChanged(void) 531 + { 532 + if (verbose) puts("STUB: CMIOObjectPropertiesChanged called"); 533 + return NULL; 534 + } 535 + 536 + void* CMIOObjectRemovePropertyListener(void) 537 + { 538 + if (verbose) puts("STUB: CMIOObjectRemovePropertyListener called"); 539 + return NULL; 540 + } 541 + 542 + void* CMIOObjectRemovePropertyListenerBlock(void) 543 + { 544 + if (verbose) puts("STUB: CMIOObjectRemovePropertyListenerBlock called"); 545 + return NULL; 546 + } 547 + 548 + void* CMIOObjectSetPropertyData(void) 549 + { 550 + if (verbose) puts("STUB: CMIOObjectSetPropertyData called"); 551 + return NULL; 552 + } 553 + 554 + void* CMIOObjectShow(void) 555 + { 556 + if (verbose) puts("STUB: CMIOObjectShow called"); 557 + return NULL; 558 + } 559 + 560 + void* CMIOObjectsPublishedAndDied(void) 561 + { 562 + if (verbose) puts("STUB: CMIOObjectsPublishedAndDied called"); 563 + return NULL; 564 + } 565 + 566 + void* CMIOOutputCoordinatorCheckOutputTimebaseRate(void) 567 + { 568 + if (verbose) puts("STUB: CMIOOutputCoordinatorCheckOutputTimebaseRate called"); 569 + return NULL; 570 + } 571 + 572 + void* CMIOOutputCoordinatorCreate(void) 573 + { 574 + if (verbose) puts("STUB: CMIOOutputCoordinatorCreate called"); 575 + return NULL; 576 + } 577 + 578 + void* CMIOOutputCoordinatorDetach(void) 579 + { 580 + if (verbose) puts("STUB: CMIOOutputCoordinatorDetach called"); 581 + return NULL; 582 + } 583 + 584 + void* CMIOOutputCoordinatorGetCoordinatedOutputTimebase(void) 585 + { 586 + if (verbose) puts("STUB: CMIOOutputCoordinatorGetCoordinatedOutputTimebase called"); 587 + return NULL; 588 + } 589 + 590 + void* CMIOOutputCoordinatorGetEarliestVideoPresentationTime(void) 591 + { 592 + if (verbose) puts("STUB: CMIOOutputCoordinatorGetEarliestVideoPresentationTime called"); 593 + return NULL; 594 + } 595 + 596 + void* CMIOOutputCoordinatorGetMasterOutputDeviceLatency(void) 597 + { 598 + if (verbose) puts("STUB: CMIOOutputCoordinatorGetMasterOutputDeviceLatency called"); 599 + return NULL; 600 + } 601 + 602 + void* CMIOOutputCoordinatorGetNumberOfAudioOutputUnitsBeingCoordinated(void) 603 + { 604 + if (verbose) puts("STUB: CMIOOutputCoordinatorGetNumberOfAudioOutputUnitsBeingCoordinated called"); 605 + return NULL; 606 + } 607 + 608 + void* CMIOOutputCoordinatorGetNumberOfVideoOutputUnitsBeingCoordinated(void) 609 + { 610 + if (verbose) puts("STUB: CMIOOutputCoordinatorGetNumberOfVideoOutputUnitsBeingCoordinated called"); 611 + return NULL; 612 + } 613 + 614 + void* CMIOOutputCoordinatorGetOutputUnitForSynchronizerUnit(void) 615 + { 616 + if (verbose) puts("STUB: CMIOOutputCoordinatorGetOutputUnitForSynchronizerUnit called"); 617 + return NULL; 618 + } 619 + 620 + void* CMIOOutputCoordinatorGetState(void) 621 + { 622 + if (verbose) puts("STUB: CMIOOutputCoordinatorGetState called"); 623 + return NULL; 624 + } 625 + 626 + void* CMIOOutputCoordinatorGetTypeID(void) 627 + { 628 + if (verbose) puts("STUB: CMIOOutputCoordinatorGetTypeID called"); 629 + return NULL; 630 + } 631 + 632 + void* CMIOOutputCoordinatorIdle(void) 633 + { 634 + if (verbose) puts("STUB: CMIOOutputCoordinatorIdle called"); 635 + return NULL; 636 + } 637 + 638 + void* CMIOOutputCoordinatorNoteAudioOutputPrimed(void) 639 + { 640 + if (verbose) puts("STUB: CMIOOutputCoordinatorNoteAudioOutputPrimed called"); 641 + return NULL; 642 + } 643 + 644 + void* CMIOOutputCoordinatorNoteMasterOutputDeviceLatency(void) 645 + { 646 + if (verbose) puts("STUB: CMIOOutputCoordinatorNoteMasterOutputDeviceLatency called"); 647 + return NULL; 648 + } 649 + 650 + void* CMIOOutputCoordinatorNoteVideoOutputPrimed(void) 651 + { 652 + if (verbose) puts("STUB: CMIOOutputCoordinatorNoteVideoOutputPrimed called"); 653 + return NULL; 654 + } 655 + 656 + void* CMIOOutputCoordinatorNoteVideoOutputSynchronizerPrimed(void) 657 + { 658 + if (verbose) puts("STUB: CMIOOutputCoordinatorNoteVideoOutputSynchronizerPrimed called"); 659 + return NULL; 660 + } 661 + 662 + void* CMIOOutputCoordinatorRelease(void) 663 + { 664 + if (verbose) puts("STUB: CMIOOutputCoordinatorRelease called"); 665 + return NULL; 666 + } 667 + 668 + void* CMIOOutputCoordinatorReset(void) 669 + { 670 + if (verbose) puts("STUB: CMIOOutputCoordinatorReset called"); 671 + return NULL; 672 + } 673 + 674 + void* CMIOOutputCoordinatorRetain(void) 675 + { 676 + if (verbose) puts("STUB: CMIOOutputCoordinatorRetain called"); 677 + return NULL; 678 + } 679 + 680 + void* CMIORemoveAtExitListener(void) 681 + { 682 + if (verbose) puts("STUB: CMIORemoveAtExitListener called"); 683 + return NULL; 684 + } 685 + 686 + void* CMIOSampleBufferCopyNonRequiredAttachments(void) 687 + { 688 + if (verbose) puts("STUB: CMIOSampleBufferCopyNonRequiredAttachments called"); 689 + return NULL; 690 + } 691 + 692 + void* CMIOSampleBufferCopySampleAttachments(void) 693 + { 694 + if (verbose) puts("STUB: CMIOSampleBufferCopySampleAttachments called"); 695 + return NULL; 696 + } 697 + 698 + void* CMIOSampleBufferCreate(void) 699 + { 700 + if (verbose) puts("STUB: CMIOSampleBufferCreate called"); 701 + return NULL; 702 + } 703 + 704 + void* CMIOSampleBufferCreateForImageBuffer(void) 705 + { 706 + if (verbose) puts("STUB: CMIOSampleBufferCreateForImageBuffer called"); 707 + return NULL; 708 + } 709 + 710 + void* CMIOSampleBufferCreateNoDataMarker(void) 711 + { 712 + if (verbose) puts("STUB: CMIOSampleBufferCreateNoDataMarker called"); 713 + return NULL; 714 + } 715 + 716 + void* CMIOSampleBufferGetDiscontinuityFlags(void) 717 + { 718 + if (verbose) puts("STUB: CMIOSampleBufferGetDiscontinuityFlags called"); 719 + return NULL; 720 + } 721 + 722 + void* CMIOSampleBufferGetSequenceNumber(void) 723 + { 724 + if (verbose) puts("STUB: CMIOSampleBufferGetSequenceNumber called"); 725 + return NULL; 726 + } 727 + 728 + void* CMIOSampleBufferSetDiscontinuityFlags(void) 729 + { 730 + if (verbose) puts("STUB: CMIOSampleBufferSetDiscontinuityFlags called"); 731 + return NULL; 732 + } 733 + 734 + void* CMIOSampleBufferSetSequenceNumber(void) 735 + { 736 + if (verbose) puts("STUB: CMIOSampleBufferSetSequenceNumber called"); 737 + return NULL; 738 + } 739 + 740 + void* CMIOStreamClockConvertHostTimeToDeviceTime(void) 741 + { 742 + if (verbose) puts("STUB: CMIOStreamClockConvertHostTimeToDeviceTime called"); 743 + return NULL; 744 + } 745 + 746 + void* CMIOStreamClockCreate(void) 747 + { 748 + if (verbose) puts("STUB: CMIOStreamClockCreate called"); 749 + return NULL; 750 + } 751 + 752 + void* CMIOStreamClockInvalidate(void) 753 + { 754 + if (verbose) puts("STUB: CMIOStreamClockInvalidate called"); 755 + return NULL; 756 + } 757 + 758 + void* CMIOStreamClockPostTimingEvent(void) 759 + { 760 + if (verbose) puts("STUB: CMIOStreamClockPostTimingEvent called"); 761 + return NULL; 762 + } 763 + 764 + void* CMIOStreamCopyBufferQueue(void) 765 + { 766 + if (verbose) puts("STUB: CMIOStreamCopyBufferQueue called"); 767 + return NULL; 768 + } 769 + 770 + void* CMIOStreamDeckCueTo(void) 771 + { 772 + if (verbose) puts("STUB: CMIOStreamDeckCueTo called"); 773 + return NULL; 774 + } 775 + 776 + void* CMIOStreamDeckJog(void) 777 + { 778 + if (verbose) puts("STUB: CMIOStreamDeckJog called"); 779 + return NULL; 780 + } 781 + 782 + void* CMIOStreamDeckPlay(void) 783 + { 784 + if (verbose) puts("STUB: CMIOStreamDeckPlay called"); 785 + return NULL; 786 + } 787 + 788 + void* CMIOStreamDeckStop(void) 789 + { 790 + if (verbose) puts("STUB: CMIOStreamDeckStop called"); 791 + return NULL; 792 + } 793 + 794 + void* CMIOUnitCreateFromDescription(void) 795 + { 796 + if (verbose) puts("STUB: CMIOUnitCreateFromDescription called"); 797 + return NULL; 798 + } 799 + 800 + void* CMIOUnitGetClassID(void) 801 + { 802 + if (verbose) puts("STUB: CMIOUnitGetClassID called"); 803 + return NULL; 804 + } 805 + 806 + void* CMIOUnitGetTypeID(void) 807 + { 808 + if (verbose) puts("STUB: CMIOUnitGetTypeID called"); 809 + return NULL; 810 + } 811 + 812 + void* CMIOUnitRelease(void) 813 + { 814 + if (verbose) puts("STUB: CMIOUnitRelease called"); 815 + return NULL; 816 + } 817 + 818 + void* CMIOUnitRetain(void) 819 + { 820 + if (verbose) puts("STUB: CMIOUnitRetain called"); 821 + return NULL; 822 + } 823 + 824 + void* CMIOUnitUtilityCreateAudioCompressionOptionsDictionary(void) 825 + { 826 + if (verbose) puts("STUB: CMIOUnitUtilityCreateAudioCompressionOptionsDictionary called"); 827 + return NULL; 828 + } 829 + 830 + void* CMIOUnitUtilityCreateAudioCompressionOptionsDictionary2(void) 831 + { 832 + if (verbose) puts("STUB: CMIOUnitUtilityCreateAudioCompressionOptionsDictionary2 called"); 833 + return NULL; 834 + } 835 + 836 + void* CMIOUnitUtilityGetAudioCompressionOptionsDictionaryFields(void) 837 + { 838 + if (verbose) puts("STUB: CMIOUnitUtilityGetAudioCompressionOptionsDictionaryFields called"); 839 + return NULL; 840 + } 841 + 842 + void* CMIOUnitUtilityGetAudioCompressionOptionsDictionaryFields2(void) 843 + { 844 + if (verbose) puts("STUB: CMIOUnitUtilityGetAudioCompressionOptionsDictionaryFields2 called"); 845 + return NULL; 846 + }
+2
src/CoreServices/Components.cpp
··· 2 2 #include "Components.h" 3 3 #include "ComponentsInternal.h" 4 4 #include "darling-config.h" 5 + #ifdef FRAMEWORK_COREAUDIO 5 6 #include <AudioUnit/AUComponent.h> 6 7 #include <AudioUnit/AudioUnitBase.h> 8 + #endif 7 9 #include <CoreServices/MacErrors.h> 8 10 9 11 #define TRACE1(x)
+221
src/QTKit/CMakeLists.txt
··· 1 + project(QTKit) 2 + 3 + set(DYLIB_COMPAT_VERSION "1.0.0") 4 + set(DYLIB_CURRENT_VERSION "1.0.0") 5 + 6 + add_framework(QTKit 7 + FAT 8 + CURRENT_VERSION 9 + VERSION "A" 10 + 11 + SOURCES 12 + src/QTKit.m 13 + src/QTAudioCompressionOptions.m 14 + src/QTCompressionOptionsInternal.m 15 + src/QTCompressionOptions.m 16 + src/QTDataReferenceEnumerator.m 17 + src/QTFormatDescriptionInternal.m 18 + src/QTFormatDescription.m 19 + src/QTSampleBufferInternal.m 20 + src/QTSampleBuffer.m 21 + src/QTTimeValue.m 22 + src/QTVideoCompressionOptions.m 23 + src/QTHotspot.m 24 + src/QTHotspotEnumerator.m 25 + src/QTMovieAttributeProps.m 26 + src/QTMovie.m 27 + src/QTMovie_FigMedia_TimelyCaller.m 28 + src/QTMovie_FigMedia_OccasionalCaller.m 29 + src/QTMovie_FigMedia.m 30 + src/QTMovieMediaHelper.m 31 + src/QTMovieUndoOperation.m 32 + src/QTNode.m 33 + src/QTNodeEnumerator.m 34 + src/QTStream.m 35 + src/QTStreamEnumerator.m 36 + src/QTTrack.m 37 + src/QTTrack_FigMedia.m 38 + src/QTTrack_QuickTime.m 39 + src/QTTrackEnumerator.m 40 + src/QTTrackHelper.m 41 + src/QTBackgroundQueueThreadInfoInternal.m 42 + src/QTBackgroundQueue.m 43 + src/QTCallbackRegistry.m 44 + src/QTMediaKeys.m 45 + src/QTResolvedDecompressionOptions.m 46 + src/QTUtilities.m 47 + src/QTVideoRendererWebKitOnly.m 48 + src/QTClassicMovieControllerViewNeedsDisplayData.m 49 + src/QTClassicMovieControllerView.m 50 + src/QTMovieControllerView.m 51 + src/QTMovieViewInternal.m 52 + src/QTMovieViewDragHighlightOverlayView.m 53 + src/QTMovieView.m 54 + src/QTCaptureDeviceInputInternal.m 55 + src/QTCaptureDeviceInput.m 56 + src/QTCaptureAudioPreviewOutputInternal.m 57 + src/QTCaptureAudioPreviewOutput.m 58 + src/QTCaptureVideoPreviewOutputCallbackData.m 59 + src/QTCaptureVideoPreviewOutputInternal.m 60 + src/QTCaptureVideoPreviewOutput.m 61 + src/QTCaptureViewInternal.m 62 + src/QTCaptureView.m 63 + src/QTCaptureFileOutputInternal.m 64 + src/QTCaptureFileOutput.m 65 + src/QTCaptureFileOutputRecordingOperationDescriptor.m 66 + src/QTCaptureFileOutputPauseOperationDescriptor.m 67 + src/QTCaptureMovieFileOutputInternal.m 68 + src/QTCaptureMovieFileOutput.m 69 + src/QTCaptureDecompressedVideoOutputCallbackData.m 70 + src/QTCaptureDecompressedVideoOutputInternal.m 71 + src/QTCaptureDecompressedVideoOutput.m 72 + src/QTCaptureDecompressedAudioOutputCallbackData.m 73 + src/QTCaptureDecompressedAudioOutputInternal.m 74 + src/QTCaptureDecompressedAudioOutput.m 75 + src/QTCaptureScreenInputInternal.m 76 + src/QTCaptureScreenInput.m 77 + src/QTMovieModernizerInternal.m 78 + src/QTMovieModernizer.m 79 + src/QTMovieModernizerTrack.m 80 + src/QTMovieModernizerPassthroughTrack.m 81 + src/QTMovieModernizerLegacyQTTrackPassthrough.m 82 + src/QTMovieModernizerLegacyQTTrack.m 83 + src/QTMovieModernizerLegacyMP3Track.m 84 + src/QTMovieLayerPrivate.m 85 + src/QTMovieLayer.m 86 + src/QTMediaIOGraphNodeList.m 87 + src/QTMediaIOGraphUnitDescription.m 88 + src/QTCaptureOperationDescriptorQueueItem.m 89 + src/QTCaptureOperationDescriptorQueue.m 90 + src/QTCaptureDALDevice.m 91 + src/QTCaptureDeviceInternal.m 92 + src/QTCaptureDevice.m 93 + src/QTCaptureHALDevice.m 94 + src/QTCaptureVideoPreviewRenderHelper.m 95 + src/QTCaptureConnectionInternal.m 96 + src/QTCaptureConnection.m 97 + src/QTCaptureInput.m 98 + src/QTCaptureOutput.m 99 + src/QTCaptureSessionInternal.m 100 + src/QTCaptureSessionInternalState.m 101 + src/QTCaptureSession.m 102 + src/QTCaptureLayerPrivate.m 103 + src/QTCaptureLayer.m 104 + src/QTWeakReference.m 105 + src/QTGarbageCollectedWeakReference.m 106 + src/QTRetainReleaseWeakReference.m 107 + src/QTPixelBufferConverter.m 108 + src/QTImageBufferConformer.m 109 + src/QTImageBufferQueue.m 110 + src/QTFigTimeImageQueue.m 111 + src/QTRunLoopSchedulingSetCallbackInfo.m 112 + src/QTRunLoopSchedulingSet.m 113 + src/QTGraphicsDevice.m 114 + src/QTConcreteGraphicsDevice.m 115 + src/QTOpenGLContext.m 116 + src/QTOpenGLTextureTile.m 117 + src/QTOpenGLTexture.m 118 + src/QTOpenGLTextureCache.m 119 + src/QTOpenGLTextureCacheTextureTile.m 120 + src/QTOpenGLTextureCacheTexture.m 121 + src/QTImageConsumerFanOut.m 122 + src/QTFigVisualContextImageProviderInternal.m 123 + src/QTFigVisualContextImageProvider.m 124 + src/QTLogRenderer.m 125 + src/QTCALayerRendererState.m 126 + src/QTCALayerRenderer.m 127 + src/QTCAImageQueueBoss.m 128 + src/QTCGContextRendererInternal.m 129 + src/QTCGContextRenderer.m 130 + src/QTSurfaceRendererTileDescription.m 131 + src/QTSurfaceRenderer.m 132 + src/QTSurfaceRendererTile.m 133 + src/QTSurfaceRendererAcceleratedTile.m 134 + src/QTSurfaceRendererSoftwareTile.m 135 + src/QTIMAVManagerImageConsumer.m 136 + src/QTSurfaceRendererIntermediateDelegateRenderer.m 137 + src/QTMovieFigVisualContextRenderHelper.m 138 + src/QTMovieGWorldRendererViewStubImageConsumer.m 139 + src/QTMovieGWorldRendererView.m 140 + src/QTMovieViewCGContextRendererView.m 141 + src/QTMovieViewSurfaceRendererView.m 142 + src/StdMovieUIController.m 143 + src/QTKitMovieControllerView.m 144 + src/StdMovieUIButton.m 145 + src/StdMovieUIVolumeButton.m 146 + src/StdMovieUIPlayPauseButton.m 147 + src/StdMovieUICustomMenuButton.m 148 + src/StdMovieUIFastButton.m 149 + src/StdMovieUIFastButtonCell.m 150 + src/StdMovieUISlider.m 151 + src/StdMovieUISliderCell.m 152 + src/StdMovieUITextItem.m 153 + src/StdMovieUIChapterPopup.m 154 + src/StdMovieUIVolumeSliderPopupView.m 155 + src/QTMoviePlaybackController.m 156 + src/QTHUDTimeFormatter.m 157 + src/QTHUDBackgroundView.m 158 + src/QTHUDButton.m 159 + src/QTHUDButtonCell.m 160 + src/QTHUDGroupViewItem.m 161 + src/QTHUDGroupView.m 162 + src/QTHUDSlider.m 163 + src/QTHUDSliderCell.m 164 + src/QTHUDTimeline.m 165 + src/QTHUDTimelineCell.m 166 + src/QTClosedCaptionLayer.m 167 + src/QTClosedCaptionRenderer.m 168 + src/QTSubtitleLayer.m 169 + src/QTSubtitleRenderer.m 170 + src/QTDataReference.m 171 + src/QTMovie_QuickTime.m 172 + src/QTKitServerController.m 173 + src/QTMedia.m 174 + src/QTNotificationListenerThreadData.m 175 + src/QTNotificationController.m 176 + src/QTDelegateListenerThreadData.m 177 + src/QTDelegateController.m 178 + src/QTMachPortImageProviderData.m 179 + src/QTMachPortImageProvider.m 180 + src/QTMovieMachPortRenderHelper.m 181 + src/QTRemoteCVImageBufferUnarchiver.m 182 + src/QTCALayerRendererView.m 183 + src/QTCALayerRendererViewBackingLayer.m 184 + src/QTCGContextRendererView.m 185 + src/QTSurfaceRendererView.m 186 + src/QTKeyedArchiverDelegate.m 187 + src/QTMoviePlaybackControllerMovieProxy.m 188 + src/QTMoviePlaybackControllerSelection.m 189 + src/QTKeyValueProxy.m 190 + src/QTHUDTimerNonRetainedTarget.m 191 + src/QTMoviePlaybackControllerTimeValue.m 192 + src/QTMovie_AsyncLoadHelper.m 193 + src/QTMovieViewCALayerRendererView.m 194 + src/QTMovieVideoProviderImageConsumer.m 195 + src/QTMovieVideoProviderQuartzComposerOnly.m 196 + src/QTHUDPopUpButton.m 197 + src/QTHUDPopUpButtonCellButtonCell.m 198 + src/QTHUDPopUpButtonCell.m 199 + src/QTHUDContainerView.m 200 + src/QTInvalidationSet.m 201 + src/QTExportSessionInternal.m 202 + src/QTExportSession.m 203 + src/QTExportOptionsInternal.m 204 + src/QTExportOptions.m 205 + src/QTMutableExportOptions.m 206 + src/QTHUDRemoteIndicatorView.m 207 + src/QTMetadataItemInternal.m 208 + src/QTMetadataItem.m 209 + src/QTMutableMetadataItem.m 210 + src/QTHUDMediaTimelineRangeMarker.m 211 + src/QTHUDMediaTimelineTrack.m 212 + src/QTHUDMediaTimelineTrackPreview.m 213 + src/QTHUDMediaTimelineTracksView.m 214 + src/QTHUDMediaTimelineView.m 215 + src/QTHUDDetentFunction.m 216 + 217 + DEPENDENCIES 218 + system 219 + objc 220 + Foundation 221 + )
+24
src/QTKit/include/QTKit/ModernizerXPCProtocol.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 + #include <Foundation/Foundation.h> 21 + 22 + @protocol ModernizerXPCProtocol 23 + 24 + @end
+24
src/QTKit/include/QTKit/NSUserInterfaceValidations.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 + #include <Foundation/Foundation.h> 21 + 22 + @protocol NSUserInterfaceValidations 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTAudioCompressionOptions.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTAudioCompressionOptions : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTBackgroundQueue.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTBackgroundQueue : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTBackgroundQueueThreadInfoInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTBackgroundQueueThreadInfoInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCAImageQueueBoss.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCAImageQueueBoss : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCALayerRenderer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCALayerRenderer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCALayerRendererState.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCALayerRendererState : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCALayerRendererView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCALayerRendererView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCALayerRendererViewBackingLayer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCALayerRendererViewBackingLayer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCGContextRenderer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCGContextRenderer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCGContextRendererInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCGContextRendererInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCGContextRendererView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCGContextRendererView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCallbackRegistry.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCallbackRegistry : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureAudioPreviewOutput.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureAudioPreviewOutput : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureAudioPreviewOutputInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureAudioPreviewOutputInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureConnection.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureConnection : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureConnectionInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureConnectionInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureDALDevice.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureDALDevice : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureDecompressedAudioOutput.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureDecompressedAudioOutput : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureDecompressedAudioOutputCallbackData.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureDecompressedAudioOutputCallbackData : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureDecompressedAudioOutputInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureDecompressedAudioOutputInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureDecompressedVideoOutput.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureDecompressedVideoOutput : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureDecompressedVideoOutputCallbackData.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureDecompressedVideoOutputCallbackData : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureDecompressedVideoOutputInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureDecompressedVideoOutputInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureDevice.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureDevice : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureDeviceInput.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureDeviceInput : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureDeviceInputInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureDeviceInputInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureDeviceInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureDeviceInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureFileOutput.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureFileOutput : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureFileOutputInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureFileOutputInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureFileOutputPauseOperationDescriptor.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureFileOutputPauseOperationDescriptor : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureFileOutputRecordingOperationDescriptor.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureFileOutputRecordingOperationDescriptor : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureHALDevice.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureHALDevice : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureInput.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureInput : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureLayer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureLayer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureLayerPrivate.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureLayerPrivate : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureMovieFileOutput.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureMovieFileOutput : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureMovieFileOutputInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureMovieFileOutputInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureOperationDescriptor.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 + #include <Foundation/Foundation.h> 21 + 22 + @protocol QTCaptureOperationDescriptor 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureOperationDescriptorQueue.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureOperationDescriptorQueue : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureOperationDescriptorQueueItem.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureOperationDescriptorQueueItem : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureOutput.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureOutput : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureScreenInput.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureScreenInput : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureScreenInputInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureScreenInputInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureSession.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureSession : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureSessionInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureSessionInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureSessionInternalState.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureSessionInternalState : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureVideoPreviewOutput.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureVideoPreviewOutput : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureVideoPreviewOutputCallbackData.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureVideoPreviewOutputCallbackData : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureVideoPreviewOutputInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureVideoPreviewOutputInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureVideoPreviewRenderHelper.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureVideoPreviewRenderHelper : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCaptureViewInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCaptureViewInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTClassicMovieControllerView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTClassicMovieControllerView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTClassicMovieControllerViewNeedsDisplayData.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTClassicMovieControllerViewNeedsDisplayData : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTClosedCaptionLayer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTClosedCaptionLayer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTClosedCaptionRenderer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTClosedCaptionRenderer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCompressionOptions.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCompressionOptions : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTCompressionOptionsInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTCompressionOptionsInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTConcreteGraphicsDevice.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTConcreteGraphicsDevice : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTDataReference.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTDataReference : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTDataReferenceEnumerator.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTDataReferenceEnumerator : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTDelegateController.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTDelegateController : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTDelegateListenerThreadData.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTDelegateListenerThreadData : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTExportOptions.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTExportOptions : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTExportOptionsInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTExportOptionsInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTExportSession.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTExportSession : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTExportSessionInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTExportSessionInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTFigTimeImageQueue.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTFigTimeImageQueue : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTFigVisualContextImageProvider.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTFigVisualContextImageProvider : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTFigVisualContextImageProviderInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTFigVisualContextImageProviderInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTFormatDescription.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTFormatDescription : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTFormatDescriptionInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTFormatDescriptionInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTGarbageCollectedWeakReference.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTGarbageCollectedWeakReference : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTGraphicsDevice.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTGraphicsDevice : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDBackgroundView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDBackgroundView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDButton.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDButton : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDButtonCell.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDButtonCell : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDContainerView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDContainerView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDDetentFunction.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDDetentFunction : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDGroupView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDGroupView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDGroupViewItem.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDGroupViewItem : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDMediaTimelineRangeMarker.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDMediaTimelineRangeMarker : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDMediaTimelineTrack.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDMediaTimelineTrack : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDMediaTimelineTrackPreview.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDMediaTimelineTrackPreview : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDMediaTimelineTracksView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDMediaTimelineTracksView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDMediaTimelineView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDMediaTimelineView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDPopUpButton.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDPopUpButton : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDPopUpButtonCell.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDPopUpButtonCell : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDPopUpButtonCellButtonCell.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDPopUpButtonCellButtonCell : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDRemoteIndicatorView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDRemoteIndicatorView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDSlider.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDSlider : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDSliderCell.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDSliderCell : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDTimeFormatter.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDTimeFormatter : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDTimeline.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDTimeline : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDTimelineCell.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDTimelineCell : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDTimelineCellDelegate.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 + #include <Foundation/Foundation.h> 21 + 22 + @protocol QTHUDTimelineCellDelegate 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHUDTimerNonRetainedTarget.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHUDTimerNonRetainedTarget : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHotspot.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHotspot : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTHotspotEnumerator.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTHotspotEnumerator : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTIMAVManagerImageConsumer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTIMAVManagerImageConsumer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTImageBufferConformer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTImageBufferConformer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTImageBufferQueue.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTImageBufferQueue : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTImageConsumer.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 + #include <Foundation/Foundation.h> 21 + 22 + @protocol QTImageConsumer 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTImageConsumerDelegateHelper.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 + #include <Foundation/Foundation.h> 21 + 22 + @protocol QTImageConsumerDelegateHelper 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTImageConsumerFanOut.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTImageConsumerFanOut : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTImageConsumerVendor.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 + #include <Foundation/Foundation.h> 21 + 22 + @protocol QTImageConsumerVendor 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTInvalidationSet.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTInvalidationSet : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTKeyValueProxy.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTKeyValueProxy : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTKeyedArchiverDelegate.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTKeyedArchiverDelegate : NSObject 23 + 24 + @end
+286
src/QTKit/include/QTKit/QTKit.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 + 21 + #ifndef _QTKit_H_ 22 + #define _QTKit_H_ 23 + 24 + #import <Foundation/Foundation.h> 25 + 26 + #import <QTKit/ModernizerXPCProtocol.h> 27 + #import <QTKit/NSUserInterfaceValidations.h> 28 + #import <QTKit/QTCaptureOperationDescriptor.h> 29 + #import <QTKit/QTHUDTimelineCellDelegate.h> 30 + #import <QTKit/QTImageConsumer.h> 31 + #import <QTKit/QTImageConsumerDelegateHelper.h> 32 + #import <QTKit/QTImageConsumerVendor.h> 33 + #import <QTKit/QTMovieAttributes.h> 34 + #import <QTKit/QTTrackAttributes.h> 35 + #import <QTKit/StandardMovieUIInterface.h> 36 + #import <QTKit/QTAudioCompressionOptions.h> 37 + #import <QTKit/QTCompressionOptionsInternal.h> 38 + #import <QTKit/QTCompressionOptions.h> 39 + #import <QTKit/QTDataReferenceEnumerator.h> 40 + #import <QTKit/QTFormatDescriptionInternal.h> 41 + #import <QTKit/QTFormatDescription.h> 42 + #import <QTKit/QTSampleBufferInternal.h> 43 + #import <QTKit/QTSampleBuffer.h> 44 + #import <QTKit/QTTimeValue.h> 45 + #import <QTKit/QTVideoCompressionOptions.h> 46 + #import <QTKit/QTHotspot.h> 47 + #import <QTKit/QTHotspotEnumerator.h> 48 + #import <QTKit/QTMovieAttributeProps.h> 49 + #import <QTKit/QTMovie.h> 50 + #import <QTKit/QTMovie_FigMedia_TimelyCaller.h> 51 + #import <QTKit/QTMovie_FigMedia_OccasionalCaller.h> 52 + #import <QTKit/QTMovie_FigMedia.h> 53 + #import <QTKit/QTMovieMediaHelper.h> 54 + #import <QTKit/QTMovieUndoOperation.h> 55 + #import <QTKit/QTNode.h> 56 + #import <QTKit/QTNodeEnumerator.h> 57 + #import <QTKit/QTStream.h> 58 + #import <QTKit/QTStreamEnumerator.h> 59 + #import <QTKit/QTTrack.h> 60 + #import <QTKit/QTTrack_FigMedia.h> 61 + #import <QTKit/QTTrack_QuickTime.h> 62 + #import <QTKit/QTTrackEnumerator.h> 63 + #import <QTKit/QTTrackHelper.h> 64 + #import <QTKit/QTBackgroundQueueThreadInfoInternal.h> 65 + #import <QTKit/QTBackgroundQueue.h> 66 + #import <QTKit/QTCallbackRegistry.h> 67 + #import <QTKit/QTMediaKeys.h> 68 + #import <QTKit/QTResolvedDecompressionOptions.h> 69 + #import <QTKit/QTUtilities.h> 70 + #import <QTKit/QTVideoRendererWebKitOnly.h> 71 + #import <QTKit/QTClassicMovieControllerViewNeedsDisplayData.h> 72 + #import <QTKit/QTClassicMovieControllerView.h> 73 + #import <QTKit/QTMovieControllerView.h> 74 + #import <QTKit/QTMovieViewInternal.h> 75 + #import <QTKit/QTMovieViewDragHighlightOverlayView.h> 76 + #import <QTKit/QTMovieView.h> 77 + #import <QTKit/QTCaptureDeviceInputInternal.h> 78 + #import <QTKit/QTCaptureDeviceInput.h> 79 + #import <QTKit/QTCaptureAudioPreviewOutputInternal.h> 80 + #import <QTKit/QTCaptureAudioPreviewOutput.h> 81 + #import <QTKit/QTCaptureVideoPreviewOutputCallbackData.h> 82 + #import <QTKit/QTCaptureVideoPreviewOutputInternal.h> 83 + #import <QTKit/QTCaptureVideoPreviewOutput.h> 84 + #import <QTKit/QTCaptureViewInternal.h> 85 + #import <QTKit/QTCaptureView.h> 86 + #import <QTKit/QTCaptureFileOutputInternal.h> 87 + #import <QTKit/QTCaptureFileOutput.h> 88 + #import <QTKit/QTCaptureFileOutputRecordingOperationDescriptor.h> 89 + #import <QTKit/QTCaptureFileOutputPauseOperationDescriptor.h> 90 + #import <QTKit/QTCaptureMovieFileOutputInternal.h> 91 + #import <QTKit/QTCaptureMovieFileOutput.h> 92 + #import <QTKit/QTCaptureDecompressedVideoOutputCallbackData.h> 93 + #import <QTKit/QTCaptureDecompressedVideoOutputInternal.h> 94 + #import <QTKit/QTCaptureDecompressedVideoOutput.h> 95 + #import <QTKit/QTCaptureDecompressedAudioOutputCallbackData.h> 96 + #import <QTKit/QTCaptureDecompressedAudioOutputInternal.h> 97 + #import <QTKit/QTCaptureDecompressedAudioOutput.h> 98 + #import <QTKit/QTCaptureScreenInputInternal.h> 99 + #import <QTKit/QTCaptureScreenInput.h> 100 + #import <QTKit/QTMovieModernizerInternal.h> 101 + #import <QTKit/QTMovieModernizer.h> 102 + #import <QTKit/QTMovieModernizerTrack.h> 103 + #import <QTKit/QTMovieModernizerPassthroughTrack.h> 104 + #import <QTKit/QTMovieModernizerLegacyQTTrackPassthrough.h> 105 + #import <QTKit/QTMovieModernizerLegacyQTTrack.h> 106 + #import <QTKit/QTMovieModernizerLegacyMP3Track.h> 107 + #import <QTKit/QTMovieLayerPrivate.h> 108 + #import <QTKit/QTMovieLayer.h> 109 + #import <QTKit/QTMediaIOGraphNodeList.h> 110 + #import <QTKit/QTMediaIOGraphUnitDescription.h> 111 + #import <QTKit/QTCaptureOperationDescriptorQueueItem.h> 112 + #import <QTKit/QTCaptureOperationDescriptorQueue.h> 113 + #import <QTKit/QTCaptureDALDevice.h> 114 + #import <QTKit/QTCaptureDeviceInternal.h> 115 + #import <QTKit/QTCaptureDevice.h> 116 + #import <QTKit/QTCaptureHALDevice.h> 117 + #import <QTKit/QTCaptureVideoPreviewRenderHelper.h> 118 + #import <QTKit/QTCaptureConnectionInternal.h> 119 + #import <QTKit/QTCaptureConnection.h> 120 + #import <QTKit/QTCaptureInput.h> 121 + #import <QTKit/QTCaptureOutput.h> 122 + #import <QTKit/QTCaptureSessionInternal.h> 123 + #import <QTKit/QTCaptureSessionInternalState.h> 124 + #import <QTKit/QTCaptureSession.h> 125 + #import <QTKit/QTCaptureLayerPrivate.h> 126 + #import <QTKit/QTCaptureLayer.h> 127 + #import <QTKit/QTWeakReference.h> 128 + #import <QTKit/QTGarbageCollectedWeakReference.h> 129 + #import <QTKit/QTRetainReleaseWeakReference.h> 130 + #import <QTKit/QTPixelBufferConverter.h> 131 + #import <QTKit/QTImageBufferConformer.h> 132 + #import <QTKit/QTImageBufferQueue.h> 133 + #import <QTKit/QTFigTimeImageQueue.h> 134 + #import <QTKit/QTRunLoopSchedulingSetCallbackInfo.h> 135 + #import <QTKit/QTRunLoopSchedulingSet.h> 136 + #import <QTKit/QTGraphicsDevice.h> 137 + #import <QTKit/QTConcreteGraphicsDevice.h> 138 + #import <QTKit/QTOpenGLContext.h> 139 + #import <QTKit/QTOpenGLTextureTile.h> 140 + #import <QTKit/QTOpenGLTexture.h> 141 + #import <QTKit/QTOpenGLTextureCache.h> 142 + #import <QTKit/QTOpenGLTextureCacheTextureTile.h> 143 + #import <QTKit/QTOpenGLTextureCacheTexture.h> 144 + #import <QTKit/QTImageConsumerFanOut.h> 145 + #import <QTKit/QTFigVisualContextImageProviderInternal.h> 146 + #import <QTKit/QTFigVisualContextImageProvider.h> 147 + #import <QTKit/QTLogRenderer.h> 148 + #import <QTKit/QTCALayerRendererState.h> 149 + #import <QTKit/QTCALayerRenderer.h> 150 + #import <QTKit/QTCAImageQueueBoss.h> 151 + #import <QTKit/QTCGContextRendererInternal.h> 152 + #import <QTKit/QTCGContextRenderer.h> 153 + #import <QTKit/QTSurfaceRendererTileDescription.h> 154 + #import <QTKit/QTSurfaceRenderer.h> 155 + #import <QTKit/QTSurfaceRendererTile.h> 156 + #import <QTKit/QTSurfaceRendererAcceleratedTile.h> 157 + #import <QTKit/QTSurfaceRendererSoftwareTile.h> 158 + #import <QTKit/QTIMAVManagerImageConsumer.h> 159 + #import <QTKit/QTSurfaceRendererIntermediateDelegateRenderer.h> 160 + #import <QTKit/QTMovieFigVisualContextRenderHelper.h> 161 + #import <QTKit/QTMovieGWorldRendererViewStubImageConsumer.h> 162 + #import <QTKit/QTMovieGWorldRendererView.h> 163 + #import <QTKit/QTMovieViewCGContextRendererView.h> 164 + #import <QTKit/QTMovieViewSurfaceRendererView.h> 165 + #import <QTKit/StdMovieUIController.h> 166 + #import <QTKit/QTKitMovieControllerView.h> 167 + #import <QTKit/StdMovieUIButton.h> 168 + #import <QTKit/StdMovieUIVolumeButton.h> 169 + #import <QTKit/StdMovieUIPlayPauseButton.h> 170 + #import <QTKit/StdMovieUICustomMenuButton.h> 171 + #import <QTKit/StdMovieUIFastButton.h> 172 + #import <QTKit/StdMovieUIFastButtonCell.h> 173 + #import <QTKit/StdMovieUISlider.h> 174 + #import <QTKit/StdMovieUISliderCell.h> 175 + #import <QTKit/StdMovieUITextItem.h> 176 + #import <QTKit/StdMovieUIChapterPopup.h> 177 + #import <QTKit/StdMovieUIVolumeSliderPopupView.h> 178 + #import <QTKit/QTMoviePlaybackController.h> 179 + #import <QTKit/QTHUDTimeFormatter.h> 180 + #import <QTKit/QTHUDBackgroundView.h> 181 + #import <QTKit/QTHUDButton.h> 182 + #import <QTKit/QTHUDButtonCell.h> 183 + #import <QTKit/QTHUDGroupViewItem.h> 184 + #import <QTKit/QTHUDGroupView.h> 185 + #import <QTKit/QTHUDSlider.h> 186 + #import <QTKit/QTHUDSliderCell.h> 187 + #import <QTKit/QTHUDTimeline.h> 188 + #import <QTKit/QTHUDTimelineCell.h> 189 + #import <QTKit/QTClosedCaptionLayer.h> 190 + #import <QTKit/QTClosedCaptionRenderer.h> 191 + #import <QTKit/QTSubtitleLayer.h> 192 + #import <QTKit/QTSubtitleRenderer.h> 193 + #import <QTKit/QTDataReference.h> 194 + #import <QTKit/QTMovie_QuickTime.h> 195 + #import <QTKit/QTKitServerController.h> 196 + #import <QTKit/QTMedia.h> 197 + #import <QTKit/QTNotificationListenerThreadData.h> 198 + #import <QTKit/QTNotificationController.h> 199 + #import <QTKit/QTDelegateListenerThreadData.h> 200 + #import <QTKit/QTDelegateController.h> 201 + #import <QTKit/QTMachPortImageProviderData.h> 202 + #import <QTKit/QTMachPortImageProvider.h> 203 + #import <QTKit/QTMovieMachPortRenderHelper.h> 204 + #import <QTKit/QTRemoteCVImageBufferUnarchiver.h> 205 + #import <QTKit/QTCALayerRendererView.h> 206 + #import <QTKit/QTCALayerRendererViewBackingLayer.h> 207 + #import <QTKit/QTCGContextRendererView.h> 208 + #import <QTKit/QTSurfaceRendererView.h> 209 + #import <QTKit/QTKeyedArchiverDelegate.h> 210 + #import <QTKit/QTMoviePlaybackControllerMovieProxy.h> 211 + #import <QTKit/QTMoviePlaybackControllerSelection.h> 212 + #import <QTKit/QTKeyValueProxy.h> 213 + #import <QTKit/QTHUDTimerNonRetainedTarget.h> 214 + #import <QTKit/QTMoviePlaybackControllerTimeValue.h> 215 + #import <QTKit/QTMovie_AsyncLoadHelper.h> 216 + #import <QTKit/QTMovieViewCALayerRendererView.h> 217 + #import <QTKit/QTMovieVideoProviderImageConsumer.h> 218 + #import <QTKit/QTMovieVideoProviderQuartzComposerOnly.h> 219 + #import <QTKit/QTHUDPopUpButton.h> 220 + #import <QTKit/QTHUDPopUpButtonCellButtonCell.h> 221 + #import <QTKit/QTHUDPopUpButtonCell.h> 222 + #import <QTKit/QTHUDContainerView.h> 223 + #import <QTKit/QTInvalidationSet.h> 224 + #import <QTKit/QTExportSessionInternal.h> 225 + #import <QTKit/QTExportSession.h> 226 + #import <QTKit/QTExportOptionsInternal.h> 227 + #import <QTKit/QTExportOptions.h> 228 + #import <QTKit/QTMutableExportOptions.h> 229 + #import <QTKit/QTHUDRemoteIndicatorView.h> 230 + #import <QTKit/QTMetadataItemInternal.h> 231 + #import <QTKit/QTMetadataItem.h> 232 + #import <QTKit/QTMutableMetadataItem.h> 233 + #import <QTKit/QTHUDMediaTimelineRangeMarker.h> 234 + #import <QTKit/QTHUDMediaTimelineTrack.h> 235 + #import <QTKit/QTHUDMediaTimelineTrackPreview.h> 236 + #import <QTKit/QTHUDMediaTimelineTracksView.h> 237 + #import <QTKit/QTHUDMediaTimelineView.h> 238 + #import <QTKit/QTHUDDetentFunction.h> 239 + 240 + void* QTEqualTimeRanges(void); 241 + void* QTErrorFromOSStatus(void); 242 + void* QTGetComponentsFromFloatTime(void); 243 + void* QTGetComponentsFromRationalTime(void); 244 + void* QTGetResolvedImageConsumerAttributes(void); 245 + void* QTGetTimeInterval(void); 246 + void* QTGetTimeRecord(void); 247 + void* QTIntersectionTimeRange(void); 248 + void* QTKitCanUseIOSurface(void); 249 + void* QTLocalizedStringFromErrorCode(void); 250 + void* QTLocalizedStringFromKey(void); 251 + void* QTLocalizedStringFromTable(void); 252 + void* QTMakeTime(void); 253 + void* QTMakeTimeRange(void); 254 + void* QTMakeTimeScaled(void); 255 + void* QTMakeTimeWithTimeInterval(void); 256 + void* QTMakeTimeWithTimeRecord(void); 257 + void* QTMediaTypeStringForOSType(void); 258 + void* QTOSTypeForString(void); 259 + void* QTSetThreadName(void); 260 + void* QTStringForOSType(void); 261 + void* QTStringFromSMPTETime(void); 262 + void* QTStringFromTime(void); 263 + void* QTStringFromTimeRange(void); 264 + void* QTTimeCompare(void); 265 + void* QTTimeDecrement(void); 266 + void* QTTimeFormatterCopyProperty(void); 267 + void* QTTimeFormatterCreate(void); 268 + void* QTTimeFormatterCreateStringFromFloatTime(void); 269 + void* QTTimeFormatterCreateStringFromRationalTime(void); 270 + void* QTTimeFormatterGetFloatTimeFromString(void); 271 + void* QTTimeFormatterGetLocale(void); 272 + void* QTTimeFormatterGetRationalTimeFromString(void); 273 + void* QTTimeFormatterGetTypeID(void); 274 + void* QTTimeFormatterSetProperty(void); 275 + void* QTTimeFromString(void); 276 + void* QTTimeInTimeRange(void); 277 + void* QTTimeIncrement(void); 278 + void* QTTimeIsIndefinite(void); 279 + void* QTTimeRangeEnd(void); 280 + void* QTTimeRangeFromString(void); 281 + void* QTUICopyMeasurements(void); 282 + void* QTUIDraw(void); 283 + void* QTUIHitTest(void); 284 + void* QTUnionTimeRange(void); 285 + 286 + #endif
+24
src/QTKit/include/QTKit/QTKitMovieControllerView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTKitMovieControllerView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTKitServerController.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTKitServerController : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTLogRenderer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTLogRenderer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMachPortImageProvider.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMachPortImageProvider : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMachPortImageProviderData.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMachPortImageProviderData : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMedia.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMedia : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMediaIOGraphNodeList.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMediaIOGraphNodeList : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMediaIOGraphUnitDescription.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMediaIOGraphUnitDescription : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMediaKeys.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMediaKeys : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMetadataItem.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMetadataItem : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMetadataItemInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMetadataItemInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovie.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovie : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieAttributeProps.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieAttributeProps : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieAttributes.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 + #include <Foundation/Foundation.h> 21 + 22 + @protocol QTMovieAttributes 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieControllerView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieControllerView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieFigVisualContextRenderHelper.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieFigVisualContextRenderHelper : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieGWorldRendererView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieGWorldRendererView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieGWorldRendererViewStubImageConsumer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieGWorldRendererViewStubImageConsumer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieLayer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieLayer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieLayerPrivate.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieLayerPrivate : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieMachPortRenderHelper.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieMachPortRenderHelper : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieMediaHelper.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieMediaHelper : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieModernizer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieModernizer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieModernizerInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieModernizerInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieModernizerLegacyMP3Track.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieModernizerLegacyMP3Track : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieModernizerLegacyQTTrack.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieModernizerLegacyQTTrack : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieModernizerLegacyQTTrackPassthrough.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieModernizerLegacyQTTrackPassthrough : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieModernizerPassthroughTrack.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieModernizerPassthroughTrack : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieModernizerTrack.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieModernizerTrack : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMoviePlaybackController.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMoviePlaybackController : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMoviePlaybackControllerMovieProxy.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMoviePlaybackControllerMovieProxy : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMoviePlaybackControllerSelection.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMoviePlaybackControllerSelection : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMoviePlaybackControllerTimeValue.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMoviePlaybackControllerTimeValue : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieUndoOperation.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieUndoOperation : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieVideoProviderImageConsumer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieVideoProviderImageConsumer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieVideoProviderQuartzComposerOnly.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieVideoProviderQuartzComposerOnly : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieViewCALayerRendererView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieViewCALayerRendererView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieViewCGContextRendererView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieViewCGContextRendererView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieViewDragHighlightOverlayView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieViewDragHighlightOverlayView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieViewInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieViewInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovieViewSurfaceRendererView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovieViewSurfaceRendererView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovie_AsyncLoadHelper.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovie_AsyncLoadHelper : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovie_FigMedia.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovie_FigMedia : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovie_FigMedia_OccasionalCaller.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovie_FigMedia_OccasionalCaller : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovie_FigMedia_TimelyCaller.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovie_FigMedia_TimelyCaller : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMovie_QuickTime.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMovie_QuickTime : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMutableExportOptions.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMutableExportOptions : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTMutableMetadataItem.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTMutableMetadataItem : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTNode.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTNode : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTNodeEnumerator.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTNodeEnumerator : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTNotificationController.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTNotificationController : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTNotificationListenerThreadData.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTNotificationListenerThreadData : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTOpenGLContext.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTOpenGLContext : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTOpenGLTexture.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTOpenGLTexture : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTOpenGLTextureCache.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTOpenGLTextureCache : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTOpenGLTextureCacheTexture.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTOpenGLTextureCacheTexture : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTOpenGLTextureCacheTextureTile.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTOpenGLTextureCacheTextureTile : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTOpenGLTextureTile.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTOpenGLTextureTile : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTPixelBufferConverter.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTPixelBufferConverter : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTRemoteCVImageBufferUnarchiver.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTRemoteCVImageBufferUnarchiver : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTResolvedDecompressionOptions.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTResolvedDecompressionOptions : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTRetainReleaseWeakReference.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTRetainReleaseWeakReference : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTRunLoopSchedulingSet.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTRunLoopSchedulingSet : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTRunLoopSchedulingSetCallbackInfo.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTRunLoopSchedulingSetCallbackInfo : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTSampleBuffer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTSampleBuffer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTSampleBufferInternal.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTSampleBufferInternal : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTStream.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTStream : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTStreamEnumerator.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTStreamEnumerator : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTSubtitleLayer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTSubtitleLayer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTSubtitleRenderer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTSubtitleRenderer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTSurfaceRenderer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTSurfaceRenderer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTSurfaceRendererAcceleratedTile.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTSurfaceRendererAcceleratedTile : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTSurfaceRendererIntermediateDelegateRenderer.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTSurfaceRendererIntermediateDelegateRenderer : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTSurfaceRendererSoftwareTile.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTSurfaceRendererSoftwareTile : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTSurfaceRendererTile.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTSurfaceRendererTile : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTSurfaceRendererTileDescription.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTSurfaceRendererTileDescription : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTSurfaceRendererView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTSurfaceRendererView : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTTimeValue.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTTimeValue : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTTrack.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTTrack : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTTrackAttributes.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 + #include <Foundation/Foundation.h> 21 + 22 + @protocol QTTrackAttributes 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTTrackEnumerator.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTTrackEnumerator : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTTrackHelper.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTTrackHelper : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTTrack_FigMedia.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTTrack_FigMedia : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTTrack_QuickTime.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTTrack_QuickTime : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTUtilities.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTUtilities : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTVideoCompressionOptions.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTVideoCompressionOptions : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTVideoRendererWebKitOnly.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTVideoRendererWebKitOnly : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/QTWeakReference.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface QTWeakReference : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/StandardMovieUIInterface.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 + #include <Foundation/Foundation.h> 21 + 22 + @protocol StandardMovieUIInterface 23 + 24 + @end
+24
src/QTKit/include/QTKit/StdMovieUIButton.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface StdMovieUIButton : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/StdMovieUIChapterPopup.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface StdMovieUIChapterPopup : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/StdMovieUIController.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface StdMovieUIController : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/StdMovieUICustomMenuButton.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface StdMovieUICustomMenuButton : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/StdMovieUIFastButton.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface StdMovieUIFastButton : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/StdMovieUIFastButtonCell.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface StdMovieUIFastButtonCell : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/StdMovieUIPlayPauseButton.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface StdMovieUIPlayPauseButton : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/StdMovieUISlider.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface StdMovieUISlider : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/StdMovieUISliderCell.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface StdMovieUISliderCell : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/StdMovieUITextItem.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface StdMovieUITextItem : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/StdMovieUIVolumeButton.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface StdMovieUIVolumeButton : NSObject 23 + 24 + @end
+24
src/QTKit/include/QTKit/StdMovieUIVolumeSliderPopupView.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface StdMovieUIVolumeSliderPopupView : NSObject 23 + 24 + @end
+34
src/QTKit/src/QTAudioCompressionOptions.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 <QTKit/QTAudioCompressionOptions.h> 21 + 22 + @implementation QTAudioCompressionOptions 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTBackgroundQueue.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 <QTKit/QTBackgroundQueue.h> 21 + 22 + @implementation QTBackgroundQueue 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTBackgroundQueueThreadInfoInternal.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 <QTKit/QTBackgroundQueueThreadInfoInternal.h> 21 + 22 + @implementation QTBackgroundQueueThreadInfoInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCAImageQueueBoss.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 <QTKit/QTCAImageQueueBoss.h> 21 + 22 + @implementation QTCAImageQueueBoss 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCALayerRenderer.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 <QTKit/QTCALayerRenderer.h> 21 + 22 + @implementation QTCALayerRenderer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCALayerRendererState.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 <QTKit/QTCALayerRendererState.h> 21 + 22 + @implementation QTCALayerRendererState 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCALayerRendererView.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 <QTKit/QTCALayerRendererView.h> 21 + 22 + @implementation QTCALayerRendererView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCALayerRendererViewBackingLayer.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 <QTKit/QTCALayerRendererViewBackingLayer.h> 21 + 22 + @implementation QTCALayerRendererViewBackingLayer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCGContextRenderer.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 <QTKit/QTCGContextRenderer.h> 21 + 22 + @implementation QTCGContextRenderer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCGContextRendererInternal.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 <QTKit/QTCGContextRendererInternal.h> 21 + 22 + @implementation QTCGContextRendererInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCGContextRendererView.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 <QTKit/QTCGContextRendererView.h> 21 + 22 + @implementation QTCGContextRendererView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCallbackRegistry.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 <QTKit/QTCallbackRegistry.h> 21 + 22 + @implementation QTCallbackRegistry 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureAudioPreviewOutput.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 <QTKit/QTCaptureAudioPreviewOutput.h> 21 + 22 + @implementation QTCaptureAudioPreviewOutput 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureAudioPreviewOutputInternal.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 <QTKit/QTCaptureAudioPreviewOutputInternal.h> 21 + 22 + @implementation QTCaptureAudioPreviewOutputInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureConnection.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 <QTKit/QTCaptureConnection.h> 21 + 22 + @implementation QTCaptureConnection 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureConnectionInternal.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 <QTKit/QTCaptureConnectionInternal.h> 21 + 22 + @implementation QTCaptureConnectionInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureDALDevice.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 <QTKit/QTCaptureDALDevice.h> 21 + 22 + @implementation QTCaptureDALDevice 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureDecompressedAudioOutput.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 <QTKit/QTCaptureDecompressedAudioOutput.h> 21 + 22 + @implementation QTCaptureDecompressedAudioOutput 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureDecompressedAudioOutputCallbackData.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 <QTKit/QTCaptureDecompressedAudioOutputCallbackData.h> 21 + 22 + @implementation QTCaptureDecompressedAudioOutputCallbackData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureDecompressedAudioOutputInternal.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 <QTKit/QTCaptureDecompressedAudioOutputInternal.h> 21 + 22 + @implementation QTCaptureDecompressedAudioOutputInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureDecompressedVideoOutput.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 <QTKit/QTCaptureDecompressedVideoOutput.h> 21 + 22 + @implementation QTCaptureDecompressedVideoOutput 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureDecompressedVideoOutputCallbackData.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 <QTKit/QTCaptureDecompressedVideoOutputCallbackData.h> 21 + 22 + @implementation QTCaptureDecompressedVideoOutputCallbackData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureDecompressedVideoOutputInternal.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 <QTKit/QTCaptureDecompressedVideoOutputInternal.h> 21 + 22 + @implementation QTCaptureDecompressedVideoOutputInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureDevice.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 <QTKit/QTCaptureDevice.h> 21 + 22 + @implementation QTCaptureDevice 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureDeviceInput.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 <QTKit/QTCaptureDeviceInput.h> 21 + 22 + @implementation QTCaptureDeviceInput 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureDeviceInputInternal.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 <QTKit/QTCaptureDeviceInputInternal.h> 21 + 22 + @implementation QTCaptureDeviceInputInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureDeviceInternal.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 <QTKit/QTCaptureDeviceInternal.h> 21 + 22 + @implementation QTCaptureDeviceInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureFileOutput.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 <QTKit/QTCaptureFileOutput.h> 21 + 22 + @implementation QTCaptureFileOutput 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureFileOutputInternal.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 <QTKit/QTCaptureFileOutputInternal.h> 21 + 22 + @implementation QTCaptureFileOutputInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureFileOutputPauseOperationDescriptor.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 <QTKit/QTCaptureFileOutputPauseOperationDescriptor.h> 21 + 22 + @implementation QTCaptureFileOutputPauseOperationDescriptor 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureFileOutputRecordingOperationDescriptor.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 <QTKit/QTCaptureFileOutputRecordingOperationDescriptor.h> 21 + 22 + @implementation QTCaptureFileOutputRecordingOperationDescriptor 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureHALDevice.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 <QTKit/QTCaptureHALDevice.h> 21 + 22 + @implementation QTCaptureHALDevice 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureInput.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 <QTKit/QTCaptureInput.h> 21 + 22 + @implementation QTCaptureInput 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureLayer.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 <QTKit/QTCaptureLayer.h> 21 + 22 + @implementation QTCaptureLayer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureLayerPrivate.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 <QTKit/QTCaptureLayerPrivate.h> 21 + 22 + @implementation QTCaptureLayerPrivate 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureMovieFileOutput.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 <QTKit/QTCaptureMovieFileOutput.h> 21 + 22 + @implementation QTCaptureMovieFileOutput 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureMovieFileOutputInternal.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 <QTKit/QTCaptureMovieFileOutputInternal.h> 21 + 22 + @implementation QTCaptureMovieFileOutputInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureOperationDescriptorQueue.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 <QTKit/QTCaptureOperationDescriptorQueue.h> 21 + 22 + @implementation QTCaptureOperationDescriptorQueue 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureOperationDescriptorQueueItem.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 <QTKit/QTCaptureOperationDescriptorQueueItem.h> 21 + 22 + @implementation QTCaptureOperationDescriptorQueueItem 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureOutput.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 <QTKit/QTCaptureOutput.h> 21 + 22 + @implementation QTCaptureOutput 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureScreenInput.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 <QTKit/QTCaptureScreenInput.h> 21 + 22 + @implementation QTCaptureScreenInput 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureScreenInputInternal.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 <QTKit/QTCaptureScreenInputInternal.h> 21 + 22 + @implementation QTCaptureScreenInputInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureSession.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 <QTKit/QTCaptureSession.h> 21 + 22 + @implementation QTCaptureSession 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureSessionInternal.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 <QTKit/QTCaptureSessionInternal.h> 21 + 22 + @implementation QTCaptureSessionInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureSessionInternalState.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 <QTKit/QTCaptureSessionInternalState.h> 21 + 22 + @implementation QTCaptureSessionInternalState 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureVideoPreviewOutput.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 <QTKit/QTCaptureVideoPreviewOutput.h> 21 + 22 + @implementation QTCaptureVideoPreviewOutput 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureVideoPreviewOutputCallbackData.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 <QTKit/QTCaptureVideoPreviewOutputCallbackData.h> 21 + 22 + @implementation QTCaptureVideoPreviewOutputCallbackData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureVideoPreviewOutputInternal.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 <QTKit/QTCaptureVideoPreviewOutputInternal.h> 21 + 22 + @implementation QTCaptureVideoPreviewOutputInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureVideoPreviewRenderHelper.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 <QTKit/QTCaptureVideoPreviewRenderHelper.h> 21 + 22 + @implementation QTCaptureVideoPreviewRenderHelper 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureView.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 <QTKit/QTCaptureView.h> 21 + 22 + @implementation QTCaptureView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCaptureViewInternal.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 <QTKit/QTCaptureViewInternal.h> 21 + 22 + @implementation QTCaptureViewInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTClassicMovieControllerView.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 <QTKit/QTClassicMovieControllerView.h> 21 + 22 + @implementation QTClassicMovieControllerView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTClassicMovieControllerViewNeedsDisplayData.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 <QTKit/QTClassicMovieControllerViewNeedsDisplayData.h> 21 + 22 + @implementation QTClassicMovieControllerViewNeedsDisplayData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTClosedCaptionLayer.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 <QTKit/QTClosedCaptionLayer.h> 21 + 22 + @implementation QTClosedCaptionLayer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTClosedCaptionRenderer.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 <QTKit/QTClosedCaptionRenderer.h> 21 + 22 + @implementation QTClosedCaptionRenderer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCompressionOptions.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 <QTKit/QTCompressionOptions.h> 21 + 22 + @implementation QTCompressionOptions 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTCompressionOptionsInternal.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 <QTKit/QTCompressionOptionsInternal.h> 21 + 22 + @implementation QTCompressionOptionsInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTConcreteGraphicsDevice.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 <QTKit/QTConcreteGraphicsDevice.h> 21 + 22 + @implementation QTConcreteGraphicsDevice 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTDataReference.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 <QTKit/QTDataReference.h> 21 + 22 + @implementation QTDataReference 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTDataReferenceEnumerator.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 <QTKit/QTDataReferenceEnumerator.h> 21 + 22 + @implementation QTDataReferenceEnumerator 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTDelegateController.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 <QTKit/QTDelegateController.h> 21 + 22 + @implementation QTDelegateController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTDelegateListenerThreadData.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 <QTKit/QTDelegateListenerThreadData.h> 21 + 22 + @implementation QTDelegateListenerThreadData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTExportOptions.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 <QTKit/QTExportOptions.h> 21 + 22 + @implementation QTExportOptions 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTExportOptionsInternal.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 <QTKit/QTExportOptionsInternal.h> 21 + 22 + @implementation QTExportOptionsInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTExportSession.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 <QTKit/QTExportSession.h> 21 + 22 + @implementation QTExportSession 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTExportSessionInternal.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 <QTKit/QTExportSessionInternal.h> 21 + 22 + @implementation QTExportSessionInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTFigTimeImageQueue.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 <QTKit/QTFigTimeImageQueue.h> 21 + 22 + @implementation QTFigTimeImageQueue 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTFigVisualContextImageProvider.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 <QTKit/QTFigVisualContextImageProvider.h> 21 + 22 + @implementation QTFigVisualContextImageProvider 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTFigVisualContextImageProviderInternal.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 <QTKit/QTFigVisualContextImageProviderInternal.h> 21 + 22 + @implementation QTFigVisualContextImageProviderInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTFormatDescription.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 <QTKit/QTFormatDescription.h> 21 + 22 + @implementation QTFormatDescription 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTFormatDescriptionInternal.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 <QTKit/QTFormatDescriptionInternal.h> 21 + 22 + @implementation QTFormatDescriptionInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTGarbageCollectedWeakReference.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 <QTKit/QTGarbageCollectedWeakReference.h> 21 + 22 + @implementation QTGarbageCollectedWeakReference 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTGraphicsDevice.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 <QTKit/QTGraphicsDevice.h> 21 + 22 + @implementation QTGraphicsDevice 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDBackgroundView.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 <QTKit/QTHUDBackgroundView.h> 21 + 22 + @implementation QTHUDBackgroundView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDButton.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 <QTKit/QTHUDButton.h> 21 + 22 + @implementation QTHUDButton 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDButtonCell.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 <QTKit/QTHUDButtonCell.h> 21 + 22 + @implementation QTHUDButtonCell 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDContainerView.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 <QTKit/QTHUDContainerView.h> 21 + 22 + @implementation QTHUDContainerView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDDetentFunction.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 <QTKit/QTHUDDetentFunction.h> 21 + 22 + @implementation QTHUDDetentFunction 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDGroupView.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 <QTKit/QTHUDGroupView.h> 21 + 22 + @implementation QTHUDGroupView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDGroupViewItem.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 <QTKit/QTHUDGroupViewItem.h> 21 + 22 + @implementation QTHUDGroupViewItem 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDMediaTimelineRangeMarker.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 <QTKit/QTHUDMediaTimelineRangeMarker.h> 21 + 22 + @implementation QTHUDMediaTimelineRangeMarker 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDMediaTimelineTrack.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 <QTKit/QTHUDMediaTimelineTrack.h> 21 + 22 + @implementation QTHUDMediaTimelineTrack 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDMediaTimelineTrackPreview.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 <QTKit/QTHUDMediaTimelineTrackPreview.h> 21 + 22 + @implementation QTHUDMediaTimelineTrackPreview 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDMediaTimelineTracksView.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 <QTKit/QTHUDMediaTimelineTracksView.h> 21 + 22 + @implementation QTHUDMediaTimelineTracksView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDMediaTimelineView.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 <QTKit/QTHUDMediaTimelineView.h> 21 + 22 + @implementation QTHUDMediaTimelineView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDPopUpButton.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 <QTKit/QTHUDPopUpButton.h> 21 + 22 + @implementation QTHUDPopUpButton 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDPopUpButtonCell.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 <QTKit/QTHUDPopUpButtonCell.h> 21 + 22 + @implementation QTHUDPopUpButtonCell 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDPopUpButtonCellButtonCell.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 <QTKit/QTHUDPopUpButtonCellButtonCell.h> 21 + 22 + @implementation QTHUDPopUpButtonCellButtonCell 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDRemoteIndicatorView.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 <QTKit/QTHUDRemoteIndicatorView.h> 21 + 22 + @implementation QTHUDRemoteIndicatorView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDSlider.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 <QTKit/QTHUDSlider.h> 21 + 22 + @implementation QTHUDSlider 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDSliderCell.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 <QTKit/QTHUDSliderCell.h> 21 + 22 + @implementation QTHUDSliderCell 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDTimeFormatter.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 <QTKit/QTHUDTimeFormatter.h> 21 + 22 + @implementation QTHUDTimeFormatter 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDTimeline.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 <QTKit/QTHUDTimeline.h> 21 + 22 + @implementation QTHUDTimeline 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDTimelineCell.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 <QTKit/QTHUDTimelineCell.h> 21 + 22 + @implementation QTHUDTimelineCell 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHUDTimerNonRetainedTarget.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 <QTKit/QTHUDTimerNonRetainedTarget.h> 21 + 22 + @implementation QTHUDTimerNonRetainedTarget 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHotspot.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 <QTKit/QTHotspot.h> 21 + 22 + @implementation QTHotspot 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTHotspotEnumerator.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 <QTKit/QTHotspotEnumerator.h> 21 + 22 + @implementation QTHotspotEnumerator 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTIMAVManagerImageConsumer.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 <QTKit/QTIMAVManagerImageConsumer.h> 21 + 22 + @implementation QTIMAVManagerImageConsumer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTImageBufferConformer.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 <QTKit/QTImageBufferConformer.h> 21 + 22 + @implementation QTImageBufferConformer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTImageBufferQueue.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 <QTKit/QTImageBufferQueue.h> 21 + 22 + @implementation QTImageBufferQueue 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTImageConsumerFanOut.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 <QTKit/QTImageConsumerFanOut.h> 21 + 22 + @implementation QTImageConsumerFanOut 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTInvalidationSet.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 <QTKit/QTInvalidationSet.h> 21 + 22 + @implementation QTInvalidationSet 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTKeyValueProxy.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 <QTKit/QTKeyValueProxy.h> 21 + 22 + @implementation QTKeyValueProxy 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTKeyedArchiverDelegate.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 <QTKit/QTKeyedArchiverDelegate.h> 21 + 22 + @implementation QTKeyedArchiverDelegate 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+300
src/QTKit/src/QTKit.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 + 21 + #include <QTKit/QTKit.h> 22 + #include <stdlib.h> 23 + #include <stdio.h> 24 + 25 + static int verbose = 0; 26 + 27 + __attribute__((constructor)) 28 + static void initme(void) { 29 + verbose = getenv("STUB_VERBOSE") != NULL; 30 + } 31 + 32 + void* QTEqualTimeRanges(void) 33 + { 34 + if (verbose) puts("STUB: QTEqualTimeRanges called"); 35 + return NULL; 36 + } 37 + 38 + void* QTErrorFromOSStatus(void) 39 + { 40 + if (verbose) puts("STUB: QTErrorFromOSStatus called"); 41 + return NULL; 42 + } 43 + 44 + void* QTGetComponentsFromFloatTime(void) 45 + { 46 + if (verbose) puts("STUB: QTGetComponentsFromFloatTime called"); 47 + return NULL; 48 + } 49 + 50 + void* QTGetComponentsFromRationalTime(void) 51 + { 52 + if (verbose) puts("STUB: QTGetComponentsFromRationalTime called"); 53 + return NULL; 54 + } 55 + 56 + void* QTGetResolvedImageConsumerAttributes(void) 57 + { 58 + if (verbose) puts("STUB: QTGetResolvedImageConsumerAttributes called"); 59 + return NULL; 60 + } 61 + 62 + void* QTGetTimeInterval(void) 63 + { 64 + if (verbose) puts("STUB: QTGetTimeInterval called"); 65 + return NULL; 66 + } 67 + 68 + void* QTGetTimeRecord(void) 69 + { 70 + if (verbose) puts("STUB: QTGetTimeRecord called"); 71 + return NULL; 72 + } 73 + 74 + void* QTIntersectionTimeRange(void) 75 + { 76 + if (verbose) puts("STUB: QTIntersectionTimeRange called"); 77 + return NULL; 78 + } 79 + 80 + void* QTKitCanUseIOSurface(void) 81 + { 82 + if (verbose) puts("STUB: QTKitCanUseIOSurface called"); 83 + return NULL; 84 + } 85 + 86 + void* QTLocalizedStringFromErrorCode(void) 87 + { 88 + if (verbose) puts("STUB: QTLocalizedStringFromErrorCode called"); 89 + return NULL; 90 + } 91 + 92 + void* QTLocalizedStringFromKey(void) 93 + { 94 + if (verbose) puts("STUB: QTLocalizedStringFromKey called"); 95 + return NULL; 96 + } 97 + 98 + void* QTLocalizedStringFromTable(void) 99 + { 100 + if (verbose) puts("STUB: QTLocalizedStringFromTable called"); 101 + return NULL; 102 + } 103 + 104 + void* QTMakeTime(void) 105 + { 106 + if (verbose) puts("STUB: QTMakeTime called"); 107 + return NULL; 108 + } 109 + 110 + void* QTMakeTimeRange(void) 111 + { 112 + if (verbose) puts("STUB: QTMakeTimeRange called"); 113 + return NULL; 114 + } 115 + 116 + void* QTMakeTimeScaled(void) 117 + { 118 + if (verbose) puts("STUB: QTMakeTimeScaled called"); 119 + return NULL; 120 + } 121 + 122 + void* QTMakeTimeWithTimeInterval(void) 123 + { 124 + if (verbose) puts("STUB: QTMakeTimeWithTimeInterval called"); 125 + return NULL; 126 + } 127 + 128 + void* QTMakeTimeWithTimeRecord(void) 129 + { 130 + if (verbose) puts("STUB: QTMakeTimeWithTimeRecord called"); 131 + return NULL; 132 + } 133 + 134 + void* QTMediaTypeStringForOSType(void) 135 + { 136 + if (verbose) puts("STUB: QTMediaTypeStringForOSType called"); 137 + return NULL; 138 + } 139 + 140 + void* QTOSTypeForString(void) 141 + { 142 + if (verbose) puts("STUB: QTOSTypeForString called"); 143 + return NULL; 144 + } 145 + 146 + void* QTSetThreadName(void) 147 + { 148 + if (verbose) puts("STUB: QTSetThreadName called"); 149 + return NULL; 150 + } 151 + 152 + void* QTStringForOSType(void) 153 + { 154 + if (verbose) puts("STUB: QTStringForOSType called"); 155 + return NULL; 156 + } 157 + 158 + void* QTStringFromSMPTETime(void) 159 + { 160 + if (verbose) puts("STUB: QTStringFromSMPTETime called"); 161 + return NULL; 162 + } 163 + 164 + void* QTStringFromTime(void) 165 + { 166 + if (verbose) puts("STUB: QTStringFromTime called"); 167 + return NULL; 168 + } 169 + 170 + void* QTStringFromTimeRange(void) 171 + { 172 + if (verbose) puts("STUB: QTStringFromTimeRange called"); 173 + return NULL; 174 + } 175 + 176 + void* QTTimeCompare(void) 177 + { 178 + if (verbose) puts("STUB: QTTimeCompare called"); 179 + return NULL; 180 + } 181 + 182 + void* QTTimeDecrement(void) 183 + { 184 + if (verbose) puts("STUB: QTTimeDecrement called"); 185 + return NULL; 186 + } 187 + 188 + void* QTTimeFormatterCopyProperty(void) 189 + { 190 + if (verbose) puts("STUB: QTTimeFormatterCopyProperty called"); 191 + return NULL; 192 + } 193 + 194 + void* QTTimeFormatterCreate(void) 195 + { 196 + if (verbose) puts("STUB: QTTimeFormatterCreate called"); 197 + return NULL; 198 + } 199 + 200 + void* QTTimeFormatterCreateStringFromFloatTime(void) 201 + { 202 + if (verbose) puts("STUB: QTTimeFormatterCreateStringFromFloatTime called"); 203 + return NULL; 204 + } 205 + 206 + void* QTTimeFormatterCreateStringFromRationalTime(void) 207 + { 208 + if (verbose) puts("STUB: QTTimeFormatterCreateStringFromRationalTime called"); 209 + return NULL; 210 + } 211 + 212 + void* QTTimeFormatterGetFloatTimeFromString(void) 213 + { 214 + if (verbose) puts("STUB: QTTimeFormatterGetFloatTimeFromString called"); 215 + return NULL; 216 + } 217 + 218 + void* QTTimeFormatterGetLocale(void) 219 + { 220 + if (verbose) puts("STUB: QTTimeFormatterGetLocale called"); 221 + return NULL; 222 + } 223 + 224 + void* QTTimeFormatterGetRationalTimeFromString(void) 225 + { 226 + if (verbose) puts("STUB: QTTimeFormatterGetRationalTimeFromString called"); 227 + return NULL; 228 + } 229 + 230 + void* QTTimeFormatterGetTypeID(void) 231 + { 232 + if (verbose) puts("STUB: QTTimeFormatterGetTypeID called"); 233 + return NULL; 234 + } 235 + 236 + void* QTTimeFormatterSetProperty(void) 237 + { 238 + if (verbose) puts("STUB: QTTimeFormatterSetProperty called"); 239 + return NULL; 240 + } 241 + 242 + void* QTTimeFromString(void) 243 + { 244 + if (verbose) puts("STUB: QTTimeFromString called"); 245 + return NULL; 246 + } 247 + 248 + void* QTTimeInTimeRange(void) 249 + { 250 + if (verbose) puts("STUB: QTTimeInTimeRange called"); 251 + return NULL; 252 + } 253 + 254 + void* QTTimeIncrement(void) 255 + { 256 + if (verbose) puts("STUB: QTTimeIncrement called"); 257 + return NULL; 258 + } 259 + 260 + void* QTTimeIsIndefinite(void) 261 + { 262 + if (verbose) puts("STUB: QTTimeIsIndefinite called"); 263 + return NULL; 264 + } 265 + 266 + void* QTTimeRangeEnd(void) 267 + { 268 + if (verbose) puts("STUB: QTTimeRangeEnd called"); 269 + return NULL; 270 + } 271 + 272 + void* QTTimeRangeFromString(void) 273 + { 274 + if (verbose) puts("STUB: QTTimeRangeFromString called"); 275 + return NULL; 276 + } 277 + 278 + void* QTUICopyMeasurements(void) 279 + { 280 + if (verbose) puts("STUB: QTUICopyMeasurements called"); 281 + return NULL; 282 + } 283 + 284 + void* QTUIDraw(void) 285 + { 286 + if (verbose) puts("STUB: QTUIDraw called"); 287 + return NULL; 288 + } 289 + 290 + void* QTUIHitTest(void) 291 + { 292 + if (verbose) puts("STUB: QTUIHitTest called"); 293 + return NULL; 294 + } 295 + 296 + void* QTUnionTimeRange(void) 297 + { 298 + if (verbose) puts("STUB: QTUnionTimeRange called"); 299 + return NULL; 300 + }
+34
src/QTKit/src/QTKitMovieControllerView.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 <QTKit/QTKitMovieControllerView.h> 21 + 22 + @implementation QTKitMovieControllerView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTKitServerController.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 <QTKit/QTKitServerController.h> 21 + 22 + @implementation QTKitServerController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTLogRenderer.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 <QTKit/QTLogRenderer.h> 21 + 22 + @implementation QTLogRenderer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMachPortImageProvider.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 <QTKit/QTMachPortImageProvider.h> 21 + 22 + @implementation QTMachPortImageProvider 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMachPortImageProviderData.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 <QTKit/QTMachPortImageProviderData.h> 21 + 22 + @implementation QTMachPortImageProviderData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMedia.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 <QTKit/QTMedia.h> 21 + 22 + @implementation QTMedia 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMediaIOGraphNodeList.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 <QTKit/QTMediaIOGraphNodeList.h> 21 + 22 + @implementation QTMediaIOGraphNodeList 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMediaIOGraphUnitDescription.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 <QTKit/QTMediaIOGraphUnitDescription.h> 21 + 22 + @implementation QTMediaIOGraphUnitDescription 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMediaKeys.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 <QTKit/QTMediaKeys.h> 21 + 22 + @implementation QTMediaKeys 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMetadataItem.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 <QTKit/QTMetadataItem.h> 21 + 22 + @implementation QTMetadataItem 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMetadataItemInternal.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 <QTKit/QTMetadataItemInternal.h> 21 + 22 + @implementation QTMetadataItemInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovie.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 <QTKit/QTMovie.h> 21 + 22 + @implementation QTMovie 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieAttributeProps.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 <QTKit/QTMovieAttributeProps.h> 21 + 22 + @implementation QTMovieAttributeProps 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieControllerView.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 <QTKit/QTMovieControllerView.h> 21 + 22 + @implementation QTMovieControllerView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieFigVisualContextRenderHelper.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 <QTKit/QTMovieFigVisualContextRenderHelper.h> 21 + 22 + @implementation QTMovieFigVisualContextRenderHelper 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieGWorldRendererView.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 <QTKit/QTMovieGWorldRendererView.h> 21 + 22 + @implementation QTMovieGWorldRendererView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieGWorldRendererViewStubImageConsumer.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 <QTKit/QTMovieGWorldRendererViewStubImageConsumer.h> 21 + 22 + @implementation QTMovieGWorldRendererViewStubImageConsumer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieLayer.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 <QTKit/QTMovieLayer.h> 21 + 22 + @implementation QTMovieLayer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieLayerPrivate.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 <QTKit/QTMovieLayerPrivate.h> 21 + 22 + @implementation QTMovieLayerPrivate 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieMachPortRenderHelper.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 <QTKit/QTMovieMachPortRenderHelper.h> 21 + 22 + @implementation QTMovieMachPortRenderHelper 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieMediaHelper.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 <QTKit/QTMovieMediaHelper.h> 21 + 22 + @implementation QTMovieMediaHelper 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieModernizer.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 <QTKit/QTMovieModernizer.h> 21 + 22 + @implementation QTMovieModernizer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieModernizerInternal.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 <QTKit/QTMovieModernizerInternal.h> 21 + 22 + @implementation QTMovieModernizerInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieModernizerLegacyMP3Track.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 <QTKit/QTMovieModernizerLegacyMP3Track.h> 21 + 22 + @implementation QTMovieModernizerLegacyMP3Track 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieModernizerLegacyQTTrack.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 <QTKit/QTMovieModernizerLegacyQTTrack.h> 21 + 22 + @implementation QTMovieModernizerLegacyQTTrack 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieModernizerLegacyQTTrackPassthrough.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 <QTKit/QTMovieModernizerLegacyQTTrackPassthrough.h> 21 + 22 + @implementation QTMovieModernizerLegacyQTTrackPassthrough 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieModernizerPassthroughTrack.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 <QTKit/QTMovieModernizerPassthroughTrack.h> 21 + 22 + @implementation QTMovieModernizerPassthroughTrack 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieModernizerTrack.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 <QTKit/QTMovieModernizerTrack.h> 21 + 22 + @implementation QTMovieModernizerTrack 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMoviePlaybackController.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 <QTKit/QTMoviePlaybackController.h> 21 + 22 + @implementation QTMoviePlaybackController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMoviePlaybackControllerMovieProxy.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 <QTKit/QTMoviePlaybackControllerMovieProxy.h> 21 + 22 + @implementation QTMoviePlaybackControllerMovieProxy 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMoviePlaybackControllerSelection.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 <QTKit/QTMoviePlaybackControllerSelection.h> 21 + 22 + @implementation QTMoviePlaybackControllerSelection 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMoviePlaybackControllerTimeValue.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 <QTKit/QTMoviePlaybackControllerTimeValue.h> 21 + 22 + @implementation QTMoviePlaybackControllerTimeValue 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieUndoOperation.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 <QTKit/QTMovieUndoOperation.h> 21 + 22 + @implementation QTMovieUndoOperation 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieVideoProviderImageConsumer.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 <QTKit/QTMovieVideoProviderImageConsumer.h> 21 + 22 + @implementation QTMovieVideoProviderImageConsumer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieVideoProviderQuartzComposerOnly.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 <QTKit/QTMovieVideoProviderQuartzComposerOnly.h> 21 + 22 + @implementation QTMovieVideoProviderQuartzComposerOnly 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieView.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 <QTKit/QTMovieView.h> 21 + 22 + @implementation QTMovieView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieViewCALayerRendererView.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 <QTKit/QTMovieViewCALayerRendererView.h> 21 + 22 + @implementation QTMovieViewCALayerRendererView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieViewCGContextRendererView.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 <QTKit/QTMovieViewCGContextRendererView.h> 21 + 22 + @implementation QTMovieViewCGContextRendererView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieViewDragHighlightOverlayView.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 <QTKit/QTMovieViewDragHighlightOverlayView.h> 21 + 22 + @implementation QTMovieViewDragHighlightOverlayView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieViewInternal.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 <QTKit/QTMovieViewInternal.h> 21 + 22 + @implementation QTMovieViewInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovieViewSurfaceRendererView.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 <QTKit/QTMovieViewSurfaceRendererView.h> 21 + 22 + @implementation QTMovieViewSurfaceRendererView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovie_AsyncLoadHelper.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 <QTKit/QTMovie_AsyncLoadHelper.h> 21 + 22 + @implementation QTMovie_AsyncLoadHelper 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovie_FigMedia.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 <QTKit/QTMovie_FigMedia.h> 21 + 22 + @implementation QTMovie_FigMedia 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovie_FigMedia_OccasionalCaller.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 <QTKit/QTMovie_FigMedia_OccasionalCaller.h> 21 + 22 + @implementation QTMovie_FigMedia_OccasionalCaller 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovie_FigMedia_TimelyCaller.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 <QTKit/QTMovie_FigMedia_TimelyCaller.h> 21 + 22 + @implementation QTMovie_FigMedia_TimelyCaller 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMovie_QuickTime.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 <QTKit/QTMovie_QuickTime.h> 21 + 22 + @implementation QTMovie_QuickTime 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMutableExportOptions.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 <QTKit/QTMutableExportOptions.h> 21 + 22 + @implementation QTMutableExportOptions 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTMutableMetadataItem.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 <QTKit/QTMutableMetadataItem.h> 21 + 22 + @implementation QTMutableMetadataItem 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTNode.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 <QTKit/QTNode.h> 21 + 22 + @implementation QTNode 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTNodeEnumerator.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 <QTKit/QTNodeEnumerator.h> 21 + 22 + @implementation QTNodeEnumerator 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTNotificationController.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 <QTKit/QTNotificationController.h> 21 + 22 + @implementation QTNotificationController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTNotificationListenerThreadData.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 <QTKit/QTNotificationListenerThreadData.h> 21 + 22 + @implementation QTNotificationListenerThreadData 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTOpenGLContext.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 <QTKit/QTOpenGLContext.h> 21 + 22 + @implementation QTOpenGLContext 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTOpenGLTexture.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 <QTKit/QTOpenGLTexture.h> 21 + 22 + @implementation QTOpenGLTexture 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTOpenGLTextureCache.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 <QTKit/QTOpenGLTextureCache.h> 21 + 22 + @implementation QTOpenGLTextureCache 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTOpenGLTextureCacheTexture.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 <QTKit/QTOpenGLTextureCacheTexture.h> 21 + 22 + @implementation QTOpenGLTextureCacheTexture 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTOpenGLTextureCacheTextureTile.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 <QTKit/QTOpenGLTextureCacheTextureTile.h> 21 + 22 + @implementation QTOpenGLTextureCacheTextureTile 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTOpenGLTextureTile.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 <QTKit/QTOpenGLTextureTile.h> 21 + 22 + @implementation QTOpenGLTextureTile 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTPixelBufferConverter.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 <QTKit/QTPixelBufferConverter.h> 21 + 22 + @implementation QTPixelBufferConverter 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTRemoteCVImageBufferUnarchiver.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 <QTKit/QTRemoteCVImageBufferUnarchiver.h> 21 + 22 + @implementation QTRemoteCVImageBufferUnarchiver 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTResolvedDecompressionOptions.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 <QTKit/QTResolvedDecompressionOptions.h> 21 + 22 + @implementation QTResolvedDecompressionOptions 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTRetainReleaseWeakReference.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 <QTKit/QTRetainReleaseWeakReference.h> 21 + 22 + @implementation QTRetainReleaseWeakReference 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTRunLoopSchedulingSet.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 <QTKit/QTRunLoopSchedulingSet.h> 21 + 22 + @implementation QTRunLoopSchedulingSet 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTRunLoopSchedulingSetCallbackInfo.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 <QTKit/QTRunLoopSchedulingSetCallbackInfo.h> 21 + 22 + @implementation QTRunLoopSchedulingSetCallbackInfo 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTSampleBuffer.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 <QTKit/QTSampleBuffer.h> 21 + 22 + @implementation QTSampleBuffer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTSampleBufferInternal.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 <QTKit/QTSampleBufferInternal.h> 21 + 22 + @implementation QTSampleBufferInternal 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTStream.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 <QTKit/QTStream.h> 21 + 22 + @implementation QTStream 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTStreamEnumerator.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 <QTKit/QTStreamEnumerator.h> 21 + 22 + @implementation QTStreamEnumerator 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTSubtitleLayer.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 <QTKit/QTSubtitleLayer.h> 21 + 22 + @implementation QTSubtitleLayer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTSubtitleRenderer.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 <QTKit/QTSubtitleRenderer.h> 21 + 22 + @implementation QTSubtitleRenderer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTSurfaceRenderer.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 <QTKit/QTSurfaceRenderer.h> 21 + 22 + @implementation QTSurfaceRenderer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTSurfaceRendererAcceleratedTile.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 <QTKit/QTSurfaceRendererAcceleratedTile.h> 21 + 22 + @implementation QTSurfaceRendererAcceleratedTile 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTSurfaceRendererIntermediateDelegateRenderer.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 <QTKit/QTSurfaceRendererIntermediateDelegateRenderer.h> 21 + 22 + @implementation QTSurfaceRendererIntermediateDelegateRenderer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTSurfaceRendererSoftwareTile.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 <QTKit/QTSurfaceRendererSoftwareTile.h> 21 + 22 + @implementation QTSurfaceRendererSoftwareTile 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTSurfaceRendererTile.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 <QTKit/QTSurfaceRendererTile.h> 21 + 22 + @implementation QTSurfaceRendererTile 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTSurfaceRendererTileDescription.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 <QTKit/QTSurfaceRendererTileDescription.h> 21 + 22 + @implementation QTSurfaceRendererTileDescription 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTSurfaceRendererView.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 <QTKit/QTSurfaceRendererView.h> 21 + 22 + @implementation QTSurfaceRendererView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTTimeValue.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 <QTKit/QTTimeValue.h> 21 + 22 + @implementation QTTimeValue 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTTrack.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 <QTKit/QTTrack.h> 21 + 22 + @implementation QTTrack 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTTrackEnumerator.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 <QTKit/QTTrackEnumerator.h> 21 + 22 + @implementation QTTrackEnumerator 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTTrackHelper.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 <QTKit/QTTrackHelper.h> 21 + 22 + @implementation QTTrackHelper 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTTrack_FigMedia.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 <QTKit/QTTrack_FigMedia.h> 21 + 22 + @implementation QTTrack_FigMedia 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTTrack_QuickTime.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 <QTKit/QTTrack_QuickTime.h> 21 + 22 + @implementation QTTrack_QuickTime 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTUtilities.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 <QTKit/QTUtilities.h> 21 + 22 + @implementation QTUtilities 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTVideoCompressionOptions.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 <QTKit/QTVideoCompressionOptions.h> 21 + 22 + @implementation QTVideoCompressionOptions 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTVideoRendererWebKitOnly.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 <QTKit/QTVideoRendererWebKitOnly.h> 21 + 22 + @implementation QTVideoRendererWebKitOnly 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/QTWeakReference.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 <QTKit/QTWeakReference.h> 21 + 22 + @implementation QTWeakReference 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/StdMovieUIButton.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 <QTKit/StdMovieUIButton.h> 21 + 22 + @implementation StdMovieUIButton 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/StdMovieUIChapterPopup.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 <QTKit/StdMovieUIChapterPopup.h> 21 + 22 + @implementation StdMovieUIChapterPopup 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/StdMovieUIController.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 <QTKit/StdMovieUIController.h> 21 + 22 + @implementation StdMovieUIController 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/StdMovieUICustomMenuButton.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 <QTKit/StdMovieUICustomMenuButton.h> 21 + 22 + @implementation StdMovieUICustomMenuButton 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/StdMovieUIFastButton.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 <QTKit/StdMovieUIFastButton.h> 21 + 22 + @implementation StdMovieUIFastButton 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/StdMovieUIFastButtonCell.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 <QTKit/StdMovieUIFastButtonCell.h> 21 + 22 + @implementation StdMovieUIFastButtonCell 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/StdMovieUIPlayPauseButton.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 <QTKit/StdMovieUIPlayPauseButton.h> 21 + 22 + @implementation StdMovieUIPlayPauseButton 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/StdMovieUISlider.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 <QTKit/StdMovieUISlider.h> 21 + 22 + @implementation StdMovieUISlider 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/StdMovieUISliderCell.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 <QTKit/StdMovieUISliderCell.h> 21 + 22 + @implementation StdMovieUISliderCell 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/StdMovieUITextItem.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 <QTKit/StdMovieUITextItem.h> 21 + 22 + @implementation StdMovieUITextItem 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/StdMovieUIVolumeButton.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 <QTKit/StdMovieUIVolumeButton.h> 21 + 22 + @implementation StdMovieUIVolumeButton 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/QTKit/src/StdMovieUIVolumeSliderPopupView.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 <QTKit/StdMovieUIVolumeSliderPopupView.h> 21 + 22 + @implementation StdMovieUIVolumeSliderPopupView 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+19
src/VideoToolbox/CMakeLists.txt
··· 1 + project(VideoToolbox) 2 + 3 + set(DYLIB_COMPAT_VERSION "1.0.0") 4 + set(DYLIB_CURRENT_VERSION "1.0.0") 5 + 6 + add_framework(VideoToolbox 7 + FAT 8 + CURRENT_VERSION 9 + VERSION "A" 10 + 11 + SOURCES 12 + src/VideoToolbox.m 13 + src/FigMetalTransferHelper.m 14 + 15 + DEPENDENCIES 16 + system 17 + objc 18 + Foundation 19 + )
+24
src/VideoToolbox/include/VideoToolbox/FigMetalTransferHelper.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 + #include <Foundation/Foundation.h> 21 + 22 + @interface FigMetalTransferHelper : NSObject 23 + 24 + @end
+277
src/VideoToolbox/include/VideoToolbox/VideoToolbox.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 + 21 + #ifndef _VideoToolbox_H_ 22 + #define _VideoToolbox_H_ 23 + 24 + #import <Foundation/Foundation.h> 25 + 26 + #import <VideoToolbox/FigMetalTransferHelper.h> 27 + 28 + void* COLOR_Y2R24(void); 29 + void* COLOR_Y2R32(void); 30 + void* COLOR_Y420uToUYVY_scalar(void); 31 + void* COLOR_Y420uToY422(void); 32 + void* H263QT_InitSharedGlobals(void); 33 + void* H263QT_KillSharedGlobals(void); 34 + void* H264VideoDecoder_CreateInstance(void); 35 + void* JVTLibDecoDispose(void); 36 + void* MPEG4VideoDecoder_CreateInstance(void); 37 + void* VCH263VideoDecoder_CreateInstance(void); 38 + void* VCH263VideoEncoder_CreateInstance(void); 39 + void* VTBuildPixelBufferPools(void); 40 + void* VTBuildPixelBufferPools2(void); 41 + void* VTCompressionSessionBeginPass(void); 42 + void* VTCompressionSessionCompleteFrames(void); 43 + void* VTCompressionSessionCopyProperty(void); 44 + void* VTCompressionSessionCopySerializableProperties(void); 45 + void* VTCompressionSessionCopySupportedPropertyDictionary(void); 46 + void* VTCompressionSessionCreate(void); 47 + void* VTCompressionSessionEncodeFrame(void); 48 + void* VTCompressionSessionEncodeFrameWithOutputHandler(void); 49 + void* VTCompressionSessionEndPass(void); 50 + void* VTCompressionSessionGetPixelBufferPool(void); 51 + void* VTCompressionSessionGetTimeRangesForNextPass(void); 52 + void* VTCompressionSessionGetTypeID(void); 53 + void* VTCompressionSessionInvalidate(void); 54 + void* VTCompressionSessionPrepareToEncodeFrames(void); 55 + void* VTCompressionSessionRelease(void); 56 + void* VTCompressionSessionSetProperties(void); 57 + void* VTCompressionSessionSetProperty(void); 58 + void* VTCopyHEVCDecoderCapabilitiesDictionary(void); 59 + void* VTCopyIORegistryValueForKeyFromDeviceRegistryID(void); 60 + void* VTCopyMetalDeviceArray(void); 61 + void* VTCopyRenderIDArrayForIORegistryKey(void); 62 + void* VTCopySupportedPropertyDictionaryForEncoder(void); 63 + void* VTCopySupportedPropertyForVideoEncoderID(void); 64 + void* VTCopyTemporalFilterList(void); 65 + void* VTCopyVideoEncoderList(void); 66 + void* VTCreateCGImageFromCVPixelBuffer(void); 67 + void* VTCreateCGImageFromIOSurfaceAndAttributes(void); 68 + void* VTCreateDictionaryRepresentationForMovedRect(void); 69 + void* VTCreatePixelBufferPoolAttributesWithName(void); 70 + void* VTDecoderSessionEmitDecodedFrame(void); 71 + void* VTDecoderSessionEmitDecodedTile(void); 72 + void* VTDecoderSessionGetDestinationPixelBufferAttributes(void); 73 + void* VTDecoderSessionGetPixelBufferPool(void); 74 + void* VTDecoderSessionSetPixelBufferAttributes(void); 75 + void* VTDecoderSessionTrace(void); 76 + void* VTDecompressionSessionCanAcceptFormatDescription(void); 77 + void* VTDecompressionSessionCopyBlackPixelBuffer(void); 78 + void* VTDecompressionSessionCopyProperty(void); 79 + void* VTDecompressionSessionCopySerializableProperties(void); 80 + void* VTDecompressionSessionCopySupportedPropertyDictionary(void); 81 + void* VTDecompressionSessionCreate(void); 82 + void* VTDecompressionSessionCreateWithOptions(void); 83 + void* VTDecompressionSessionDecodeFrame(void); 84 + void* VTDecompressionSessionDecodeFrameWithOutputHandler(void); 85 + void* VTDecompressionSessionFinishDelayedFrames(void); 86 + void* VTDecompressionSessionGetMinAndMaxOutputPresentationTimeStampOfFramesBeingDecoded(void); 87 + void* VTDecompressionSessionGetMinOutputPresentationTimeStampOfFramesBeingDecoded(void); 88 + void* VTDecompressionSessionGetTypeID(void); 89 + void* VTDecompressionSessionInvalidate(void); 90 + void* VTDecompressionSessionSetProperties(void); 91 + void* VTDecompressionSessionSetProperty(void); 92 + void* VTDecompressionSessionWaitForAsynchronousFrames(void); 93 + void* VTDistributedCompressionGetSegmentRanges(void); 94 + void* VTDistributedCompressionGetSegmentsToReencode(void); 95 + void* VTDistributedPreprocessingGetOverlap(void); 96 + void* VTDoesAnyDeviceSupportIORegistryKey(void); 97 + void* VTDoesMetalDeviceSupportIORegistryKey(void); 98 + void* VTEncoderPreprocessingSessionEmitPreprocessedFrame(void); 99 + void* VTEncoderPreprocessingSessionGetResolutionOutputPixelBufferPool(void); 100 + void* VTEncoderPreprocessingSessionSetResolutionOutputPixelBufferAttributes(void); 101 + void* VTEncoderPreprocessingSessionSetSourcePixelBufferAttributes(void); 102 + void* VTEncoderSessionCreateVideoFormatDescription(void); 103 + void* VTEncoderSessionCreateVideoFormatDescriptionFromHEVCParameterSets(void); 104 + void* VTEncoderSessionDequeueDecodeTimeStamp(void); 105 + void* VTEncoderSessionEmitEncodedFrame(void); 106 + void* VTEncoderSessionEmitEncodedTile(void); 107 + void* VTEncoderSessionEnqueuePresentationTimeStamp(void); 108 + void* VTEncoderSessionSetPixelBufferAttributes(void); 109 + void* VTEncoderSessionSetTimeRangesForNextPass(void); 110 + void* VTFillPixelBufferBorderWithBlack(void); 111 + void* VTFillPixelBufferWithBlack(void); 112 + void* VTFrameSiloAddSampleBuffer(void); 113 + void* VTFrameSiloCallBlockForEachSampleBuffer(void); 114 + void* VTFrameSiloCallFunctionForEachSampleBuffer(void); 115 + void* VTFrameSiloCreate(void); 116 + void* VTFrameSiloGetProgressOfCurrentPass(void); 117 + void* VTFrameSiloGetTypeID(void); 118 + void* VTFrameSiloInvalidate(void); 119 + void* VTFrameSiloSetTimeRangesForNextPass(void); 120 + void* VTGetGVADecoderAvailability(void); 121 + void* VTGetHEVCCapabilitesForFormatDescription(void); 122 + void* VTImageRotationSessionCopyProperty(void); 123 + void* VTImageRotationSessionCopySerializableProperties(void); 124 + void* VTImageRotationSessionCopySupportedPropertyDictionary(void); 125 + void* VTImageRotationSessionCreate(void); 126 + void* VTImageRotationSessionGetTypeID(void); 127 + void* VTImageRotationSessionInvalidate(void); 128 + void* VTImageRotationSessionRelease(void); 129 + void* VTImageRotationSessionRetain(void); 130 + void* VTImageRotationSessionSetProperties(void); 131 + void* VTImageRotationSessionSetProperty(void); 132 + void* VTImageRotationSessionTransferImage(void); 133 + void* VTImageRotationSessionTransferSubImage(void); 134 + void* VTIsHardwareDecodeSupported(void); 135 + void* VTIsMetalDeviceExternal(void); 136 + void* VTIsMetalDeviceSlotted(void); 137 + void* VTMakeMovedRectWithDictionaryRepresentation(void); 138 + void* VTMetalTransferSessionCreate(void); 139 + void* VTMetalTransferSessionTransferImageSync(void); 140 + void* VTMultiPassStorageClose(void); 141 + void* VTMultiPassStorageCopyDataAtTimeStamp(void); 142 + void* VTMultiPassStorageCopyIdentifier(void); 143 + void* VTMultiPassStorageCreate(void); 144 + void* VTMultiPassStorageGetTimeStamp(void); 145 + void* VTMultiPassStorageGetTimeStampAndDuration(void); 146 + void* VTMultiPassStorageGetTypeID(void); 147 + void* VTMultiPassStorageInvalidate(void); 148 + void* VTMultiPassStorageSetDataAtTimeStamp(void); 149 + void* VTMultiPassStorageSetIdentifier(void); 150 + void* VTMultiPassStorageWriteMerged(void); 151 + void* VTMultiPassStorageWriteSegment(void); 152 + void* VTPixelBufferAttributesMediatorAddLayer(void); 153 + void* VTPixelBufferAttributesMediatorCopyProperty(void); 154 + void* VTPixelBufferAttributesMediatorCreate(void); 155 + void* VTPixelBufferAttributesMediatorGetTypeID(void); 156 + void* VTPixelBufferAttributesMediatorNotificationBarrier(void); 157 + void* VTPixelBufferAttributesMediatorRemoveLayer(void); 158 + void* VTPixelBufferAttributesMediatorRemoveRequestedPixelBufferAttributesForKey(void); 159 + void* VTPixelBufferAttributesMediatorSetProperty(void); 160 + void* VTPixelBufferAttributesMediatorSetRequestedPixelBufferAttributesForKey(void); 161 + void* VTPixelBufferConformerCopyBlackPixelBuffer(void); 162 + void* VTPixelBufferConformerCopyConformedPixelBuffer(void); 163 + void* VTPixelBufferConformerCreateWithAttributes(void); 164 + void* VTPixelBufferConformerGetAttributes(void); 165 + void* VTPixelBufferConformerGetColorProperties(void); 166 + void* VTPixelBufferConformerGetTypeID(void); 167 + void* VTPixelBufferConformerIsConformantPixelBuffer(void); 168 + void* VTPixelBufferConformerSetAttributes(void); 169 + void* VTPixelBufferConformerSetColorProperties(void); 170 + void* VTPixelTransferSessionCanTransfer(void); 171 + void* VTPixelTransferSessionCopyProperty(void); 172 + void* VTPixelTransferSessionCopySerializableProperties(void); 173 + void* VTPixelTransferSessionCopySupportedPropertyDictionary(void); 174 + void* VTPixelTransferSessionCreate(void); 175 + void* VTPixelTransferSessionCreateScalingParameters(void); 176 + void* VTPixelTransferSessionGetTypeID(void); 177 + void* VTPixelTransferSessionInvalidate(void); 178 + void* VTPixelTransferSessionSetProperties(void); 179 + void* VTPixelTransferSessionSetProperty(void); 180 + void* VTPixelTransferSessionTransferImage(void); 181 + void* VTPreprocessingSessionAddResolution(void); 182 + void* VTPreprocessingSessionCompleteFrames(void); 183 + void* VTPreprocessingSessionCopyProperty(void); 184 + void* VTPreprocessingSessionCopySerializableProperties(void); 185 + void* VTPreprocessingSessionCopySupportedPropertyDictionary(void); 186 + void* VTPreprocessingSessionCreate(void); 187 + void* VTPreprocessingSessionGetTypeID(void); 188 + void* VTPreprocessingSessionInvalidate(void); 189 + void* VTPreprocessingSessionPreprocessFrame(void); 190 + void* VTPreprocessingSessionSetProperties(void); 191 + void* VTPreprocessingSessionSetProperty(void); 192 + void* VTRegisterGVAPixelTransferCapability(void); 193 + void* VTRegisterPixelTransferCapability(void); 194 + void* VTRegisterProfessionalVideoWorkflowVideoDecoders(void); 195 + void* VTRegisterProfessionalVideoWorkflowVideoEncoders(void); 196 + void* VTRegisterVideoDecoder(void); 197 + void* VTRegisterVideoDecoderBundleDirectory(void); 198 + void* VTRegisterVideoDecoderWithInfo(void); 199 + void* VTRegisterVideoEncoder(void); 200 + void* VTRegisterVideoEncoderBundleDirectory(void); 201 + void* VTRegisterVideoEncoderWithInfo(void); 202 + void* VTRemoteCompressionServer_ServiceConnectionHandler(void); 203 + void* VTRemoteDecompressionServer_ServiceEventHandler(void); 204 + void* VTRemoteVideoDecoderGetClassID(void); 205 + void* VTRemoteVideoEncoderGetClassID(void); 206 + void* VTSelectAndCreateTemporalFilterInstance(void); 207 + void* VTSelectAndCreateVideoDecoderInstance(void); 208 + void* VTSelectAndCreateVideoEncoderInstance(void); 209 + void* VTSessionCopyProperty(void); 210 + void* VTSessionCopySerializableProperties(void); 211 + void* VTSessionCopySupportedPropertyDictionary(void); 212 + void* VTSessionGetCallbacksWithTypeID(void); 213 + void* VTSessionRegisterCallbacksForTypeID(void); 214 + void* VTSessionSetProperties(void); 215 + void* VTSessionSetProperty(void); 216 + void* VTTemporalFilterPluginGetCMBaseObject(void); 217 + void* VTTemporalFilterPluginGetClassID(void); 218 + void* VTTemporalFilterPluginGetTypeID(void); 219 + void* VTTemporalFilterPluginSessionConcludeInputFrame(void); 220 + void* VTTemporalFilterPluginSessionEmitOutputFrame(void); 221 + void* VTTemporalFilterPluginSessionGetClientInputPixelBufferAttributesHint(void); 222 + void* VTTemporalFilterPluginSessionGetClientOutputPixelBufferAttributes(void); 223 + void* VTTemporalFilterPluginSessionGetOutputPixelBufferPool(void); 224 + void* VTTemporalFilterPluginSessionSetInputPixelBufferAttributes(void); 225 + void* VTTemporalFilterPluginSessionSetOutputPixelBufferAttributes(void); 226 + void* VTTemporalFilterSessionCompleteFrames(void); 227 + void* VTTemporalFilterSessionCopyProperty(void); 228 + void* VTTemporalFilterSessionCopySerializableProperties(void); 229 + void* VTTemporalFilterSessionCopySupportedPropertyDictionary(void); 230 + void* VTTemporalFilterSessionCreate(void); 231 + void* VTTemporalFilterSessionGetTypeID(void); 232 + void* VTTemporalFilterSessionInvalidate(void); 233 + void* VTTemporalFilterSessionProcessFrame(void); 234 + void* VTTemporalFilterSessionSessionSetProperty(void); 235 + void* VTTemporalFilterSessionSetProperties(void); 236 + void* VTTileCompressionSessionCompleteTiles(void); 237 + void* VTTileCompressionSessionCopyProperty(void); 238 + void* VTTileCompressionSessionCopySerializableProperties(void); 239 + void* VTTileCompressionSessionCopySupportedPropertyDictionary(void); 240 + void* VTTileCompressionSessionCreate(void); 241 + void* VTTileCompressionSessionEncodeTile(void); 242 + void* VTTileCompressionSessionGetTypeID(void); 243 + void* VTTileCompressionSessionInvalidate(void); 244 + void* VTTileCompressionSessionPrepareToEncodeTiles(void); 245 + void* VTTileCompressionSessionSetProperties(void); 246 + void* VTTileCompressionSessionSetProperty(void); 247 + void* VTTileDecoderSessionEmitDecodedTile(void); 248 + void* VTTileDecoderSessionSetTileDecodeRequirements(void); 249 + void* VTTileDecompressionSessionCopyProperty(void); 250 + void* VTTileDecompressionSessionCopySerializableProperties(void); 251 + void* VTTileDecompressionSessionCopySupportedPropertyDictionary(void); 252 + void* VTTileDecompressionSessionCreate(void); 253 + void* VTTileDecompressionSessionDecodeTile(void); 254 + void* VTTileDecompressionSessionFinishDelayedTiles(void); 255 + void* VTTileDecompressionSessionGetTypeID(void); 256 + void* VTTileDecompressionSessionInvalidate(void); 257 + void* VTTileDecompressionSessionSetProperties(void); 258 + void* VTTileDecompressionSessionSetProperty(void); 259 + void* VTTileEncoderSessionCreateVideoFormatDescription(void); 260 + void* VTTileEncoderSessionSetTileAttributes(void); 261 + void* VTTileEncoderSessionSetTileEncodeRequirements(void); 262 + void* VTVideoDecoderGetCMBaseObject(void); 263 + void* VTVideoDecoderGetClassID(void); 264 + void* VTVideoDecoderGetFigBaseObject(void); 265 + void* VTVideoDecoderGetTypeID(void); 266 + void* VTVideoEncoderGetCMBaseObject(void); 267 + void* VTVideoEncoderGetClassID(void); 268 + void* VTVideoEncoderGetFigBaseObject(void); 269 + void* VTVideoEncoderGetTypeID(void); 270 + void* VTXPCMessageCopyCMSampleBuffer(void); 271 + void* VTXPCMessageCopyCVPixelBuffer(void); 272 + void* VTXPCMessageCopyVideoFormatDescription(void); 273 + void* VTXPCMessageSetCMSampleBuffer(void); 274 + void* VTXPCMessageSetCVPixelBuffer(void); 275 + void* VTXPCMessageSetVideoFormatDescription(void); 276 + 277 + #endif
+34
src/VideoToolbox/src/FigMetalTransferHelper.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 <VideoToolbox/FigMetalTransferHelper.h> 21 + 22 + @implementation FigMetalTransferHelper 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+1518
src/VideoToolbox/src/VideoToolbox.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 + 21 + #include <VideoToolbox/VideoToolbox.h> 22 + #include <stdlib.h> 23 + #include <stdio.h> 24 + 25 + static int verbose = 0; 26 + 27 + __attribute__((constructor)) 28 + static void initme(void) { 29 + verbose = getenv("STUB_VERBOSE") != NULL; 30 + } 31 + 32 + void* COLOR_Y2R24(void) 33 + { 34 + if (verbose) puts("STUB: COLOR_Y2R24 called"); 35 + return NULL; 36 + } 37 + 38 + void* COLOR_Y2R32(void) 39 + { 40 + if (verbose) puts("STUB: COLOR_Y2R32 called"); 41 + return NULL; 42 + } 43 + 44 + void* COLOR_Y420uToUYVY_scalar(void) 45 + { 46 + if (verbose) puts("STUB: COLOR_Y420uToUYVY_scalar called"); 47 + return NULL; 48 + } 49 + 50 + void* COLOR_Y420uToY422(void) 51 + { 52 + if (verbose) puts("STUB: COLOR_Y420uToY422 called"); 53 + return NULL; 54 + } 55 + 56 + void* H263QT_InitSharedGlobals(void) 57 + { 58 + if (verbose) puts("STUB: H263QT_InitSharedGlobals called"); 59 + return NULL; 60 + } 61 + 62 + void* H263QT_KillSharedGlobals(void) 63 + { 64 + if (verbose) puts("STUB: H263QT_KillSharedGlobals called"); 65 + return NULL; 66 + } 67 + 68 + void* H264VideoDecoder_CreateInstance(void) 69 + { 70 + if (verbose) puts("STUB: H264VideoDecoder_CreateInstance called"); 71 + return NULL; 72 + } 73 + 74 + void* JVTLibDecoDispose(void) 75 + { 76 + if (verbose) puts("STUB: JVTLibDecoDispose called"); 77 + return NULL; 78 + } 79 + 80 + void* MPEG4VideoDecoder_CreateInstance(void) 81 + { 82 + if (verbose) puts("STUB: MPEG4VideoDecoder_CreateInstance called"); 83 + return NULL; 84 + } 85 + 86 + void* VCH263VideoDecoder_CreateInstance(void) 87 + { 88 + if (verbose) puts("STUB: VCH263VideoDecoder_CreateInstance called"); 89 + return NULL; 90 + } 91 + 92 + void* VCH263VideoEncoder_CreateInstance(void) 93 + { 94 + if (verbose) puts("STUB: VCH263VideoEncoder_CreateInstance called"); 95 + return NULL; 96 + } 97 + 98 + void* VTBuildPixelBufferPools(void) 99 + { 100 + if (verbose) puts("STUB: VTBuildPixelBufferPools called"); 101 + return NULL; 102 + } 103 + 104 + void* VTBuildPixelBufferPools2(void) 105 + { 106 + if (verbose) puts("STUB: VTBuildPixelBufferPools2 called"); 107 + return NULL; 108 + } 109 + 110 + void* VTCompressionSessionBeginPass(void) 111 + { 112 + if (verbose) puts("STUB: VTCompressionSessionBeginPass called"); 113 + return NULL; 114 + } 115 + 116 + void* VTCompressionSessionCompleteFrames(void) 117 + { 118 + if (verbose) puts("STUB: VTCompressionSessionCompleteFrames called"); 119 + return NULL; 120 + } 121 + 122 + void* VTCompressionSessionCopyProperty(void) 123 + { 124 + if (verbose) puts("STUB: VTCompressionSessionCopyProperty called"); 125 + return NULL; 126 + } 127 + 128 + void* VTCompressionSessionCopySerializableProperties(void) 129 + { 130 + if (verbose) puts("STUB: VTCompressionSessionCopySerializableProperties called"); 131 + return NULL; 132 + } 133 + 134 + void* VTCompressionSessionCopySupportedPropertyDictionary(void) 135 + { 136 + if (verbose) puts("STUB: VTCompressionSessionCopySupportedPropertyDictionary called"); 137 + return NULL; 138 + } 139 + 140 + void* VTCompressionSessionCreate(void) 141 + { 142 + if (verbose) puts("STUB: VTCompressionSessionCreate called"); 143 + return NULL; 144 + } 145 + 146 + void* VTCompressionSessionEncodeFrame(void) 147 + { 148 + if (verbose) puts("STUB: VTCompressionSessionEncodeFrame called"); 149 + return NULL; 150 + } 151 + 152 + void* VTCompressionSessionEncodeFrameWithOutputHandler(void) 153 + { 154 + if (verbose) puts("STUB: VTCompressionSessionEncodeFrameWithOutputHandler called"); 155 + return NULL; 156 + } 157 + 158 + void* VTCompressionSessionEndPass(void) 159 + { 160 + if (verbose) puts("STUB: VTCompressionSessionEndPass called"); 161 + return NULL; 162 + } 163 + 164 + void* VTCompressionSessionGetPixelBufferPool(void) 165 + { 166 + if (verbose) puts("STUB: VTCompressionSessionGetPixelBufferPool called"); 167 + return NULL; 168 + } 169 + 170 + void* VTCompressionSessionGetTimeRangesForNextPass(void) 171 + { 172 + if (verbose) puts("STUB: VTCompressionSessionGetTimeRangesForNextPass called"); 173 + return NULL; 174 + } 175 + 176 + void* VTCompressionSessionGetTypeID(void) 177 + { 178 + if (verbose) puts("STUB: VTCompressionSessionGetTypeID called"); 179 + return NULL; 180 + } 181 + 182 + void* VTCompressionSessionInvalidate(void) 183 + { 184 + if (verbose) puts("STUB: VTCompressionSessionInvalidate called"); 185 + return NULL; 186 + } 187 + 188 + void* VTCompressionSessionPrepareToEncodeFrames(void) 189 + { 190 + if (verbose) puts("STUB: VTCompressionSessionPrepareToEncodeFrames called"); 191 + return NULL; 192 + } 193 + 194 + void* VTCompressionSessionRelease(void) 195 + { 196 + if (verbose) puts("STUB: VTCompressionSessionRelease called"); 197 + return NULL; 198 + } 199 + 200 + void* VTCompressionSessionSetProperties(void) 201 + { 202 + if (verbose) puts("STUB: VTCompressionSessionSetProperties called"); 203 + return NULL; 204 + } 205 + 206 + void* VTCompressionSessionSetProperty(void) 207 + { 208 + if (verbose) puts("STUB: VTCompressionSessionSetProperty called"); 209 + return NULL; 210 + } 211 + 212 + void* VTCopyHEVCDecoderCapabilitiesDictionary(void) 213 + { 214 + if (verbose) puts("STUB: VTCopyHEVCDecoderCapabilitiesDictionary called"); 215 + return NULL; 216 + } 217 + 218 + void* VTCopyIORegistryValueForKeyFromDeviceRegistryID(void) 219 + { 220 + if (verbose) puts("STUB: VTCopyIORegistryValueForKeyFromDeviceRegistryID called"); 221 + return NULL; 222 + } 223 + 224 + void* VTCopyMetalDeviceArray(void) 225 + { 226 + if (verbose) puts("STUB: VTCopyMetalDeviceArray called"); 227 + return NULL; 228 + } 229 + 230 + void* VTCopyRenderIDArrayForIORegistryKey(void) 231 + { 232 + if (verbose) puts("STUB: VTCopyRenderIDArrayForIORegistryKey called"); 233 + return NULL; 234 + } 235 + 236 + void* VTCopySupportedPropertyDictionaryForEncoder(void) 237 + { 238 + if (verbose) puts("STUB: VTCopySupportedPropertyDictionaryForEncoder called"); 239 + return NULL; 240 + } 241 + 242 + void* VTCopySupportedPropertyForVideoEncoderID(void) 243 + { 244 + if (verbose) puts("STUB: VTCopySupportedPropertyForVideoEncoderID called"); 245 + return NULL; 246 + } 247 + 248 + void* VTCopyTemporalFilterList(void) 249 + { 250 + if (verbose) puts("STUB: VTCopyTemporalFilterList called"); 251 + return NULL; 252 + } 253 + 254 + void* VTCopyVideoEncoderList(void) 255 + { 256 + if (verbose) puts("STUB: VTCopyVideoEncoderList called"); 257 + return NULL; 258 + } 259 + 260 + void* VTCreateCGImageFromCVPixelBuffer(void) 261 + { 262 + if (verbose) puts("STUB: VTCreateCGImageFromCVPixelBuffer called"); 263 + return NULL; 264 + } 265 + 266 + void* VTCreateCGImageFromIOSurfaceAndAttributes(void) 267 + { 268 + if (verbose) puts("STUB: VTCreateCGImageFromIOSurfaceAndAttributes called"); 269 + return NULL; 270 + } 271 + 272 + void* VTCreateDictionaryRepresentationForMovedRect(void) 273 + { 274 + if (verbose) puts("STUB: VTCreateDictionaryRepresentationForMovedRect called"); 275 + return NULL; 276 + } 277 + 278 + void* VTCreatePixelBufferPoolAttributesWithName(void) 279 + { 280 + if (verbose) puts("STUB: VTCreatePixelBufferPoolAttributesWithName called"); 281 + return NULL; 282 + } 283 + 284 + void* VTDecoderSessionEmitDecodedFrame(void) 285 + { 286 + if (verbose) puts("STUB: VTDecoderSessionEmitDecodedFrame called"); 287 + return NULL; 288 + } 289 + 290 + void* VTDecoderSessionEmitDecodedTile(void) 291 + { 292 + if (verbose) puts("STUB: VTDecoderSessionEmitDecodedTile called"); 293 + return NULL; 294 + } 295 + 296 + void* VTDecoderSessionGetDestinationPixelBufferAttributes(void) 297 + { 298 + if (verbose) puts("STUB: VTDecoderSessionGetDestinationPixelBufferAttributes called"); 299 + return NULL; 300 + } 301 + 302 + void* VTDecoderSessionGetPixelBufferPool(void) 303 + { 304 + if (verbose) puts("STUB: VTDecoderSessionGetPixelBufferPool called"); 305 + return NULL; 306 + } 307 + 308 + void* VTDecoderSessionSetPixelBufferAttributes(void) 309 + { 310 + if (verbose) puts("STUB: VTDecoderSessionSetPixelBufferAttributes called"); 311 + return NULL; 312 + } 313 + 314 + void* VTDecoderSessionTrace(void) 315 + { 316 + if (verbose) puts("STUB: VTDecoderSessionTrace called"); 317 + return NULL; 318 + } 319 + 320 + void* VTDecompressionSessionCanAcceptFormatDescription(void) 321 + { 322 + if (verbose) puts("STUB: VTDecompressionSessionCanAcceptFormatDescription called"); 323 + return NULL; 324 + } 325 + 326 + void* VTDecompressionSessionCopyBlackPixelBuffer(void) 327 + { 328 + if (verbose) puts("STUB: VTDecompressionSessionCopyBlackPixelBuffer called"); 329 + return NULL; 330 + } 331 + 332 + void* VTDecompressionSessionCopyProperty(void) 333 + { 334 + if (verbose) puts("STUB: VTDecompressionSessionCopyProperty called"); 335 + return NULL; 336 + } 337 + 338 + void* VTDecompressionSessionCopySerializableProperties(void) 339 + { 340 + if (verbose) puts("STUB: VTDecompressionSessionCopySerializableProperties called"); 341 + return NULL; 342 + } 343 + 344 + void* VTDecompressionSessionCopySupportedPropertyDictionary(void) 345 + { 346 + if (verbose) puts("STUB: VTDecompressionSessionCopySupportedPropertyDictionary called"); 347 + return NULL; 348 + } 349 + 350 + void* VTDecompressionSessionCreate(void) 351 + { 352 + if (verbose) puts("STUB: VTDecompressionSessionCreate called"); 353 + return NULL; 354 + } 355 + 356 + void* VTDecompressionSessionCreateWithOptions(void) 357 + { 358 + if (verbose) puts("STUB: VTDecompressionSessionCreateWithOptions called"); 359 + return NULL; 360 + } 361 + 362 + void* VTDecompressionSessionDecodeFrame(void) 363 + { 364 + if (verbose) puts("STUB: VTDecompressionSessionDecodeFrame called"); 365 + return NULL; 366 + } 367 + 368 + void* VTDecompressionSessionDecodeFrameWithOutputHandler(void) 369 + { 370 + if (verbose) puts("STUB: VTDecompressionSessionDecodeFrameWithOutputHandler called"); 371 + return NULL; 372 + } 373 + 374 + void* VTDecompressionSessionFinishDelayedFrames(void) 375 + { 376 + if (verbose) puts("STUB: VTDecompressionSessionFinishDelayedFrames called"); 377 + return NULL; 378 + } 379 + 380 + void* VTDecompressionSessionGetMinAndMaxOutputPresentationTimeStampOfFramesBeingDecoded(void) 381 + { 382 + if (verbose) puts("STUB: VTDecompressionSessionGetMinAndMaxOutputPresentationTimeStampOfFramesBeingDecoded called"); 383 + return NULL; 384 + } 385 + 386 + void* VTDecompressionSessionGetMinOutputPresentationTimeStampOfFramesBeingDecoded(void) 387 + { 388 + if (verbose) puts("STUB: VTDecompressionSessionGetMinOutputPresentationTimeStampOfFramesBeingDecoded called"); 389 + return NULL; 390 + } 391 + 392 + void* VTDecompressionSessionGetTypeID(void) 393 + { 394 + if (verbose) puts("STUB: VTDecompressionSessionGetTypeID called"); 395 + return NULL; 396 + } 397 + 398 + void* VTDecompressionSessionInvalidate(void) 399 + { 400 + if (verbose) puts("STUB: VTDecompressionSessionInvalidate called"); 401 + return NULL; 402 + } 403 + 404 + void* VTDecompressionSessionSetProperties(void) 405 + { 406 + if (verbose) puts("STUB: VTDecompressionSessionSetProperties called"); 407 + return NULL; 408 + } 409 + 410 + void* VTDecompressionSessionSetProperty(void) 411 + { 412 + if (verbose) puts("STUB: VTDecompressionSessionSetProperty called"); 413 + return NULL; 414 + } 415 + 416 + void* VTDecompressionSessionWaitForAsynchronousFrames(void) 417 + { 418 + if (verbose) puts("STUB: VTDecompressionSessionWaitForAsynchronousFrames called"); 419 + return NULL; 420 + } 421 + 422 + void* VTDistributedCompressionGetSegmentRanges(void) 423 + { 424 + if (verbose) puts("STUB: VTDistributedCompressionGetSegmentRanges called"); 425 + return NULL; 426 + } 427 + 428 + void* VTDistributedCompressionGetSegmentsToReencode(void) 429 + { 430 + if (verbose) puts("STUB: VTDistributedCompressionGetSegmentsToReencode called"); 431 + return NULL; 432 + } 433 + 434 + void* VTDistributedPreprocessingGetOverlap(void) 435 + { 436 + if (verbose) puts("STUB: VTDistributedPreprocessingGetOverlap called"); 437 + return NULL; 438 + } 439 + 440 + void* VTDoesAnyDeviceSupportIORegistryKey(void) 441 + { 442 + if (verbose) puts("STUB: VTDoesAnyDeviceSupportIORegistryKey called"); 443 + return NULL; 444 + } 445 + 446 + void* VTDoesMetalDeviceSupportIORegistryKey(void) 447 + { 448 + if (verbose) puts("STUB: VTDoesMetalDeviceSupportIORegistryKey called"); 449 + return NULL; 450 + } 451 + 452 + void* VTEncoderPreprocessingSessionEmitPreprocessedFrame(void) 453 + { 454 + if (verbose) puts("STUB: VTEncoderPreprocessingSessionEmitPreprocessedFrame called"); 455 + return NULL; 456 + } 457 + 458 + void* VTEncoderPreprocessingSessionGetResolutionOutputPixelBufferPool(void) 459 + { 460 + if (verbose) puts("STUB: VTEncoderPreprocessingSessionGetResolutionOutputPixelBufferPool called"); 461 + return NULL; 462 + } 463 + 464 + void* VTEncoderPreprocessingSessionSetResolutionOutputPixelBufferAttributes(void) 465 + { 466 + if (verbose) puts("STUB: VTEncoderPreprocessingSessionSetResolutionOutputPixelBufferAttributes called"); 467 + return NULL; 468 + } 469 + 470 + void* VTEncoderPreprocessingSessionSetSourcePixelBufferAttributes(void) 471 + { 472 + if (verbose) puts("STUB: VTEncoderPreprocessingSessionSetSourcePixelBufferAttributes called"); 473 + return NULL; 474 + } 475 + 476 + void* VTEncoderSessionCreateVideoFormatDescription(void) 477 + { 478 + if (verbose) puts("STUB: VTEncoderSessionCreateVideoFormatDescription called"); 479 + return NULL; 480 + } 481 + 482 + void* VTEncoderSessionCreateVideoFormatDescriptionFromHEVCParameterSets(void) 483 + { 484 + if (verbose) puts("STUB: VTEncoderSessionCreateVideoFormatDescriptionFromHEVCParameterSets called"); 485 + return NULL; 486 + } 487 + 488 + void* VTEncoderSessionDequeueDecodeTimeStamp(void) 489 + { 490 + if (verbose) puts("STUB: VTEncoderSessionDequeueDecodeTimeStamp called"); 491 + return NULL; 492 + } 493 + 494 + void* VTEncoderSessionEmitEncodedFrame(void) 495 + { 496 + if (verbose) puts("STUB: VTEncoderSessionEmitEncodedFrame called"); 497 + return NULL; 498 + } 499 + 500 + void* VTEncoderSessionEmitEncodedTile(void) 501 + { 502 + if (verbose) puts("STUB: VTEncoderSessionEmitEncodedTile called"); 503 + return NULL; 504 + } 505 + 506 + void* VTEncoderSessionEnqueuePresentationTimeStamp(void) 507 + { 508 + if (verbose) puts("STUB: VTEncoderSessionEnqueuePresentationTimeStamp called"); 509 + return NULL; 510 + } 511 + 512 + void* VTEncoderSessionSetPixelBufferAttributes(void) 513 + { 514 + if (verbose) puts("STUB: VTEncoderSessionSetPixelBufferAttributes called"); 515 + return NULL; 516 + } 517 + 518 + void* VTEncoderSessionSetTimeRangesForNextPass(void) 519 + { 520 + if (verbose) puts("STUB: VTEncoderSessionSetTimeRangesForNextPass called"); 521 + return NULL; 522 + } 523 + 524 + void* VTFillPixelBufferBorderWithBlack(void) 525 + { 526 + if (verbose) puts("STUB: VTFillPixelBufferBorderWithBlack called"); 527 + return NULL; 528 + } 529 + 530 + void* VTFillPixelBufferWithBlack(void) 531 + { 532 + if (verbose) puts("STUB: VTFillPixelBufferWithBlack called"); 533 + return NULL; 534 + } 535 + 536 + void* VTFrameSiloAddSampleBuffer(void) 537 + { 538 + if (verbose) puts("STUB: VTFrameSiloAddSampleBuffer called"); 539 + return NULL; 540 + } 541 + 542 + void* VTFrameSiloCallBlockForEachSampleBuffer(void) 543 + { 544 + if (verbose) puts("STUB: VTFrameSiloCallBlockForEachSampleBuffer called"); 545 + return NULL; 546 + } 547 + 548 + void* VTFrameSiloCallFunctionForEachSampleBuffer(void) 549 + { 550 + if (verbose) puts("STUB: VTFrameSiloCallFunctionForEachSampleBuffer called"); 551 + return NULL; 552 + } 553 + 554 + void* VTFrameSiloCreate(void) 555 + { 556 + if (verbose) puts("STUB: VTFrameSiloCreate called"); 557 + return NULL; 558 + } 559 + 560 + void* VTFrameSiloGetProgressOfCurrentPass(void) 561 + { 562 + if (verbose) puts("STUB: VTFrameSiloGetProgressOfCurrentPass called"); 563 + return NULL; 564 + } 565 + 566 + void* VTFrameSiloGetTypeID(void) 567 + { 568 + if (verbose) puts("STUB: VTFrameSiloGetTypeID called"); 569 + return NULL; 570 + } 571 + 572 + void* VTFrameSiloInvalidate(void) 573 + { 574 + if (verbose) puts("STUB: VTFrameSiloInvalidate called"); 575 + return NULL; 576 + } 577 + 578 + void* VTFrameSiloSetTimeRangesForNextPass(void) 579 + { 580 + if (verbose) puts("STUB: VTFrameSiloSetTimeRangesForNextPass called"); 581 + return NULL; 582 + } 583 + 584 + void* VTGetGVADecoderAvailability(void) 585 + { 586 + if (verbose) puts("STUB: VTGetGVADecoderAvailability called"); 587 + return NULL; 588 + } 589 + 590 + void* VTGetHEVCCapabilitesForFormatDescription(void) 591 + { 592 + if (verbose) puts("STUB: VTGetHEVCCapabilitesForFormatDescription called"); 593 + return NULL; 594 + } 595 + 596 + void* VTImageRotationSessionCopyProperty(void) 597 + { 598 + if (verbose) puts("STUB: VTImageRotationSessionCopyProperty called"); 599 + return NULL; 600 + } 601 + 602 + void* VTImageRotationSessionCopySerializableProperties(void) 603 + { 604 + if (verbose) puts("STUB: VTImageRotationSessionCopySerializableProperties called"); 605 + return NULL; 606 + } 607 + 608 + void* VTImageRotationSessionCopySupportedPropertyDictionary(void) 609 + { 610 + if (verbose) puts("STUB: VTImageRotationSessionCopySupportedPropertyDictionary called"); 611 + return NULL; 612 + } 613 + 614 + void* VTImageRotationSessionCreate(void) 615 + { 616 + if (verbose) puts("STUB: VTImageRotationSessionCreate called"); 617 + return NULL; 618 + } 619 + 620 + void* VTImageRotationSessionGetTypeID(void) 621 + { 622 + if (verbose) puts("STUB: VTImageRotationSessionGetTypeID called"); 623 + return NULL; 624 + } 625 + 626 + void* VTImageRotationSessionInvalidate(void) 627 + { 628 + if (verbose) puts("STUB: VTImageRotationSessionInvalidate called"); 629 + return NULL; 630 + } 631 + 632 + void* VTImageRotationSessionRelease(void) 633 + { 634 + if (verbose) puts("STUB: VTImageRotationSessionRelease called"); 635 + return NULL; 636 + } 637 + 638 + void* VTImageRotationSessionRetain(void) 639 + { 640 + if (verbose) puts("STUB: VTImageRotationSessionRetain called"); 641 + return NULL; 642 + } 643 + 644 + void* VTImageRotationSessionSetProperties(void) 645 + { 646 + if (verbose) puts("STUB: VTImageRotationSessionSetProperties called"); 647 + return NULL; 648 + } 649 + 650 + void* VTImageRotationSessionSetProperty(void) 651 + { 652 + if (verbose) puts("STUB: VTImageRotationSessionSetProperty called"); 653 + return NULL; 654 + } 655 + 656 + void* VTImageRotationSessionTransferImage(void) 657 + { 658 + if (verbose) puts("STUB: VTImageRotationSessionTransferImage called"); 659 + return NULL; 660 + } 661 + 662 + void* VTImageRotationSessionTransferSubImage(void) 663 + { 664 + if (verbose) puts("STUB: VTImageRotationSessionTransferSubImage called"); 665 + return NULL; 666 + } 667 + 668 + void* VTIsHardwareDecodeSupported(void) 669 + { 670 + if (verbose) puts("STUB: VTIsHardwareDecodeSupported called"); 671 + return NULL; 672 + } 673 + 674 + void* VTIsMetalDeviceExternal(void) 675 + { 676 + if (verbose) puts("STUB: VTIsMetalDeviceExternal called"); 677 + return NULL; 678 + } 679 + 680 + void* VTIsMetalDeviceSlotted(void) 681 + { 682 + if (verbose) puts("STUB: VTIsMetalDeviceSlotted called"); 683 + return NULL; 684 + } 685 + 686 + void* VTMakeMovedRectWithDictionaryRepresentation(void) 687 + { 688 + if (verbose) puts("STUB: VTMakeMovedRectWithDictionaryRepresentation called"); 689 + return NULL; 690 + } 691 + 692 + void* VTMetalTransferSessionCreate(void) 693 + { 694 + if (verbose) puts("STUB: VTMetalTransferSessionCreate called"); 695 + return NULL; 696 + } 697 + 698 + void* VTMetalTransferSessionTransferImageSync(void) 699 + { 700 + if (verbose) puts("STUB: VTMetalTransferSessionTransferImageSync called"); 701 + return NULL; 702 + } 703 + 704 + void* VTMultiPassStorageClose(void) 705 + { 706 + if (verbose) puts("STUB: VTMultiPassStorageClose called"); 707 + return NULL; 708 + } 709 + 710 + void* VTMultiPassStorageCopyDataAtTimeStamp(void) 711 + { 712 + if (verbose) puts("STUB: VTMultiPassStorageCopyDataAtTimeStamp called"); 713 + return NULL; 714 + } 715 + 716 + void* VTMultiPassStorageCopyIdentifier(void) 717 + { 718 + if (verbose) puts("STUB: VTMultiPassStorageCopyIdentifier called"); 719 + return NULL; 720 + } 721 + 722 + void* VTMultiPassStorageCreate(void) 723 + { 724 + if (verbose) puts("STUB: VTMultiPassStorageCreate called"); 725 + return NULL; 726 + } 727 + 728 + void* VTMultiPassStorageGetTimeStamp(void) 729 + { 730 + if (verbose) puts("STUB: VTMultiPassStorageGetTimeStamp called"); 731 + return NULL; 732 + } 733 + 734 + void* VTMultiPassStorageGetTimeStampAndDuration(void) 735 + { 736 + if (verbose) puts("STUB: VTMultiPassStorageGetTimeStampAndDuration called"); 737 + return NULL; 738 + } 739 + 740 + void* VTMultiPassStorageGetTypeID(void) 741 + { 742 + if (verbose) puts("STUB: VTMultiPassStorageGetTypeID called"); 743 + return NULL; 744 + } 745 + 746 + void* VTMultiPassStorageInvalidate(void) 747 + { 748 + if (verbose) puts("STUB: VTMultiPassStorageInvalidate called"); 749 + return NULL; 750 + } 751 + 752 + void* VTMultiPassStorageSetDataAtTimeStamp(void) 753 + { 754 + if (verbose) puts("STUB: VTMultiPassStorageSetDataAtTimeStamp called"); 755 + return NULL; 756 + } 757 + 758 + void* VTMultiPassStorageSetIdentifier(void) 759 + { 760 + if (verbose) puts("STUB: VTMultiPassStorageSetIdentifier called"); 761 + return NULL; 762 + } 763 + 764 + void* VTMultiPassStorageWriteMerged(void) 765 + { 766 + if (verbose) puts("STUB: VTMultiPassStorageWriteMerged called"); 767 + return NULL; 768 + } 769 + 770 + void* VTMultiPassStorageWriteSegment(void) 771 + { 772 + if (verbose) puts("STUB: VTMultiPassStorageWriteSegment called"); 773 + return NULL; 774 + } 775 + 776 + void* VTPixelBufferAttributesMediatorAddLayer(void) 777 + { 778 + if (verbose) puts("STUB: VTPixelBufferAttributesMediatorAddLayer called"); 779 + return NULL; 780 + } 781 + 782 + void* VTPixelBufferAttributesMediatorCopyProperty(void) 783 + { 784 + if (verbose) puts("STUB: VTPixelBufferAttributesMediatorCopyProperty called"); 785 + return NULL; 786 + } 787 + 788 + void* VTPixelBufferAttributesMediatorCreate(void) 789 + { 790 + if (verbose) puts("STUB: VTPixelBufferAttributesMediatorCreate called"); 791 + return NULL; 792 + } 793 + 794 + void* VTPixelBufferAttributesMediatorGetTypeID(void) 795 + { 796 + if (verbose) puts("STUB: VTPixelBufferAttributesMediatorGetTypeID called"); 797 + return NULL; 798 + } 799 + 800 + void* VTPixelBufferAttributesMediatorNotificationBarrier(void) 801 + { 802 + if (verbose) puts("STUB: VTPixelBufferAttributesMediatorNotificationBarrier called"); 803 + return NULL; 804 + } 805 + 806 + void* VTPixelBufferAttributesMediatorRemoveLayer(void) 807 + { 808 + if (verbose) puts("STUB: VTPixelBufferAttributesMediatorRemoveLayer called"); 809 + return NULL; 810 + } 811 + 812 + void* VTPixelBufferAttributesMediatorRemoveRequestedPixelBufferAttributesForKey(void) 813 + { 814 + if (verbose) puts("STUB: VTPixelBufferAttributesMediatorRemoveRequestedPixelBufferAttributesForKey called"); 815 + return NULL; 816 + } 817 + 818 + void* VTPixelBufferAttributesMediatorSetProperty(void) 819 + { 820 + if (verbose) puts("STUB: VTPixelBufferAttributesMediatorSetProperty called"); 821 + return NULL; 822 + } 823 + 824 + void* VTPixelBufferAttributesMediatorSetRequestedPixelBufferAttributesForKey(void) 825 + { 826 + if (verbose) puts("STUB: VTPixelBufferAttributesMediatorSetRequestedPixelBufferAttributesForKey called"); 827 + return NULL; 828 + } 829 + 830 + void* VTPixelBufferConformerCopyBlackPixelBuffer(void) 831 + { 832 + if (verbose) puts("STUB: VTPixelBufferConformerCopyBlackPixelBuffer called"); 833 + return NULL; 834 + } 835 + 836 + void* VTPixelBufferConformerCopyConformedPixelBuffer(void) 837 + { 838 + if (verbose) puts("STUB: VTPixelBufferConformerCopyConformedPixelBuffer called"); 839 + return NULL; 840 + } 841 + 842 + void* VTPixelBufferConformerCreateWithAttributes(void) 843 + { 844 + if (verbose) puts("STUB: VTPixelBufferConformerCreateWithAttributes called"); 845 + return NULL; 846 + } 847 + 848 + void* VTPixelBufferConformerGetAttributes(void) 849 + { 850 + if (verbose) puts("STUB: VTPixelBufferConformerGetAttributes called"); 851 + return NULL; 852 + } 853 + 854 + void* VTPixelBufferConformerGetColorProperties(void) 855 + { 856 + if (verbose) puts("STUB: VTPixelBufferConformerGetColorProperties called"); 857 + return NULL; 858 + } 859 + 860 + void* VTPixelBufferConformerGetTypeID(void) 861 + { 862 + if (verbose) puts("STUB: VTPixelBufferConformerGetTypeID called"); 863 + return NULL; 864 + } 865 + 866 + void* VTPixelBufferConformerIsConformantPixelBuffer(void) 867 + { 868 + if (verbose) puts("STUB: VTPixelBufferConformerIsConformantPixelBuffer called"); 869 + return NULL; 870 + } 871 + 872 + void* VTPixelBufferConformerSetAttributes(void) 873 + { 874 + if (verbose) puts("STUB: VTPixelBufferConformerSetAttributes called"); 875 + return NULL; 876 + } 877 + 878 + void* VTPixelBufferConformerSetColorProperties(void) 879 + { 880 + if (verbose) puts("STUB: VTPixelBufferConformerSetColorProperties called"); 881 + return NULL; 882 + } 883 + 884 + void* VTPixelTransferSessionCanTransfer(void) 885 + { 886 + if (verbose) puts("STUB: VTPixelTransferSessionCanTransfer called"); 887 + return NULL; 888 + } 889 + 890 + void* VTPixelTransferSessionCopyProperty(void) 891 + { 892 + if (verbose) puts("STUB: VTPixelTransferSessionCopyProperty called"); 893 + return NULL; 894 + } 895 + 896 + void* VTPixelTransferSessionCopySerializableProperties(void) 897 + { 898 + if (verbose) puts("STUB: VTPixelTransferSessionCopySerializableProperties called"); 899 + return NULL; 900 + } 901 + 902 + void* VTPixelTransferSessionCopySupportedPropertyDictionary(void) 903 + { 904 + if (verbose) puts("STUB: VTPixelTransferSessionCopySupportedPropertyDictionary called"); 905 + return NULL; 906 + } 907 + 908 + void* VTPixelTransferSessionCreate(void) 909 + { 910 + if (verbose) puts("STUB: VTPixelTransferSessionCreate called"); 911 + return NULL; 912 + } 913 + 914 + void* VTPixelTransferSessionCreateScalingParameters(void) 915 + { 916 + if (verbose) puts("STUB: VTPixelTransferSessionCreateScalingParameters called"); 917 + return NULL; 918 + } 919 + 920 + void* VTPixelTransferSessionGetTypeID(void) 921 + { 922 + if (verbose) puts("STUB: VTPixelTransferSessionGetTypeID called"); 923 + return NULL; 924 + } 925 + 926 + void* VTPixelTransferSessionInvalidate(void) 927 + { 928 + if (verbose) puts("STUB: VTPixelTransferSessionInvalidate called"); 929 + return NULL; 930 + } 931 + 932 + void* VTPixelTransferSessionSetProperties(void) 933 + { 934 + if (verbose) puts("STUB: VTPixelTransferSessionSetProperties called"); 935 + return NULL; 936 + } 937 + 938 + void* VTPixelTransferSessionSetProperty(void) 939 + { 940 + if (verbose) puts("STUB: VTPixelTransferSessionSetProperty called"); 941 + return NULL; 942 + } 943 + 944 + void* VTPixelTransferSessionTransferImage(void) 945 + { 946 + if (verbose) puts("STUB: VTPixelTransferSessionTransferImage called"); 947 + return NULL; 948 + } 949 + 950 + void* VTPreprocessingSessionAddResolution(void) 951 + { 952 + if (verbose) puts("STUB: VTPreprocessingSessionAddResolution called"); 953 + return NULL; 954 + } 955 + 956 + void* VTPreprocessingSessionCompleteFrames(void) 957 + { 958 + if (verbose) puts("STUB: VTPreprocessingSessionCompleteFrames called"); 959 + return NULL; 960 + } 961 + 962 + void* VTPreprocessingSessionCopyProperty(void) 963 + { 964 + if (verbose) puts("STUB: VTPreprocessingSessionCopyProperty called"); 965 + return NULL; 966 + } 967 + 968 + void* VTPreprocessingSessionCopySerializableProperties(void) 969 + { 970 + if (verbose) puts("STUB: VTPreprocessingSessionCopySerializableProperties called"); 971 + return NULL; 972 + } 973 + 974 + void* VTPreprocessingSessionCopySupportedPropertyDictionary(void) 975 + { 976 + if (verbose) puts("STUB: VTPreprocessingSessionCopySupportedPropertyDictionary called"); 977 + return NULL; 978 + } 979 + 980 + void* VTPreprocessingSessionCreate(void) 981 + { 982 + if (verbose) puts("STUB: VTPreprocessingSessionCreate called"); 983 + return NULL; 984 + } 985 + 986 + void* VTPreprocessingSessionGetTypeID(void) 987 + { 988 + if (verbose) puts("STUB: VTPreprocessingSessionGetTypeID called"); 989 + return NULL; 990 + } 991 + 992 + void* VTPreprocessingSessionInvalidate(void) 993 + { 994 + if (verbose) puts("STUB: VTPreprocessingSessionInvalidate called"); 995 + return NULL; 996 + } 997 + 998 + void* VTPreprocessingSessionPreprocessFrame(void) 999 + { 1000 + if (verbose) puts("STUB: VTPreprocessingSessionPreprocessFrame called"); 1001 + return NULL; 1002 + } 1003 + 1004 + void* VTPreprocessingSessionSetProperties(void) 1005 + { 1006 + if (verbose) puts("STUB: VTPreprocessingSessionSetProperties called"); 1007 + return NULL; 1008 + } 1009 + 1010 + void* VTPreprocessingSessionSetProperty(void) 1011 + { 1012 + if (verbose) puts("STUB: VTPreprocessingSessionSetProperty called"); 1013 + return NULL; 1014 + } 1015 + 1016 + void* VTRegisterGVAPixelTransferCapability(void) 1017 + { 1018 + if (verbose) puts("STUB: VTRegisterGVAPixelTransferCapability called"); 1019 + return NULL; 1020 + } 1021 + 1022 + void* VTRegisterPixelTransferCapability(void) 1023 + { 1024 + if (verbose) puts("STUB: VTRegisterPixelTransferCapability called"); 1025 + return NULL; 1026 + } 1027 + 1028 + void* VTRegisterProfessionalVideoWorkflowVideoDecoders(void) 1029 + { 1030 + if (verbose) puts("STUB: VTRegisterProfessionalVideoWorkflowVideoDecoders called"); 1031 + return NULL; 1032 + } 1033 + 1034 + void* VTRegisterProfessionalVideoWorkflowVideoEncoders(void) 1035 + { 1036 + if (verbose) puts("STUB: VTRegisterProfessionalVideoWorkflowVideoEncoders called"); 1037 + return NULL; 1038 + } 1039 + 1040 + void* VTRegisterVideoDecoder(void) 1041 + { 1042 + if (verbose) puts("STUB: VTRegisterVideoDecoder called"); 1043 + return NULL; 1044 + } 1045 + 1046 + void* VTRegisterVideoDecoderBundleDirectory(void) 1047 + { 1048 + if (verbose) puts("STUB: VTRegisterVideoDecoderBundleDirectory called"); 1049 + return NULL; 1050 + } 1051 + 1052 + void* VTRegisterVideoDecoderWithInfo(void) 1053 + { 1054 + if (verbose) puts("STUB: VTRegisterVideoDecoderWithInfo called"); 1055 + return NULL; 1056 + } 1057 + 1058 + void* VTRegisterVideoEncoder(void) 1059 + { 1060 + if (verbose) puts("STUB: VTRegisterVideoEncoder called"); 1061 + return NULL; 1062 + } 1063 + 1064 + void* VTRegisterVideoEncoderBundleDirectory(void) 1065 + { 1066 + if (verbose) puts("STUB: VTRegisterVideoEncoderBundleDirectory called"); 1067 + return NULL; 1068 + } 1069 + 1070 + void* VTRegisterVideoEncoderWithInfo(void) 1071 + { 1072 + if (verbose) puts("STUB: VTRegisterVideoEncoderWithInfo called"); 1073 + return NULL; 1074 + } 1075 + 1076 + void* VTRemoteCompressionServer_ServiceConnectionHandler(void) 1077 + { 1078 + if (verbose) puts("STUB: VTRemoteCompressionServer_ServiceConnectionHandler called"); 1079 + return NULL; 1080 + } 1081 + 1082 + void* VTRemoteDecompressionServer_ServiceEventHandler(void) 1083 + { 1084 + if (verbose) puts("STUB: VTRemoteDecompressionServer_ServiceEventHandler called"); 1085 + return NULL; 1086 + } 1087 + 1088 + void* VTRemoteVideoDecoderGetClassID(void) 1089 + { 1090 + if (verbose) puts("STUB: VTRemoteVideoDecoderGetClassID called"); 1091 + return NULL; 1092 + } 1093 + 1094 + void* VTRemoteVideoEncoderGetClassID(void) 1095 + { 1096 + if (verbose) puts("STUB: VTRemoteVideoEncoderGetClassID called"); 1097 + return NULL; 1098 + } 1099 + 1100 + void* VTSelectAndCreateTemporalFilterInstance(void) 1101 + { 1102 + if (verbose) puts("STUB: VTSelectAndCreateTemporalFilterInstance called"); 1103 + return NULL; 1104 + } 1105 + 1106 + void* VTSelectAndCreateVideoDecoderInstance(void) 1107 + { 1108 + if (verbose) puts("STUB: VTSelectAndCreateVideoDecoderInstance called"); 1109 + return NULL; 1110 + } 1111 + 1112 + void* VTSelectAndCreateVideoEncoderInstance(void) 1113 + { 1114 + if (verbose) puts("STUB: VTSelectAndCreateVideoEncoderInstance called"); 1115 + return NULL; 1116 + } 1117 + 1118 + void* VTSessionCopyProperty(void) 1119 + { 1120 + if (verbose) puts("STUB: VTSessionCopyProperty called"); 1121 + return NULL; 1122 + } 1123 + 1124 + void* VTSessionCopySerializableProperties(void) 1125 + { 1126 + if (verbose) puts("STUB: VTSessionCopySerializableProperties called"); 1127 + return NULL; 1128 + } 1129 + 1130 + void* VTSessionCopySupportedPropertyDictionary(void) 1131 + { 1132 + if (verbose) puts("STUB: VTSessionCopySupportedPropertyDictionary called"); 1133 + return NULL; 1134 + } 1135 + 1136 + void* VTSessionGetCallbacksWithTypeID(void) 1137 + { 1138 + if (verbose) puts("STUB: VTSessionGetCallbacksWithTypeID called"); 1139 + return NULL; 1140 + } 1141 + 1142 + void* VTSessionRegisterCallbacksForTypeID(void) 1143 + { 1144 + if (verbose) puts("STUB: VTSessionRegisterCallbacksForTypeID called"); 1145 + return NULL; 1146 + } 1147 + 1148 + void* VTSessionSetProperties(void) 1149 + { 1150 + if (verbose) puts("STUB: VTSessionSetProperties called"); 1151 + return NULL; 1152 + } 1153 + 1154 + void* VTSessionSetProperty(void) 1155 + { 1156 + if (verbose) puts("STUB: VTSessionSetProperty called"); 1157 + return NULL; 1158 + } 1159 + 1160 + void* VTTemporalFilterPluginGetCMBaseObject(void) 1161 + { 1162 + if (verbose) puts("STUB: VTTemporalFilterPluginGetCMBaseObject called"); 1163 + return NULL; 1164 + } 1165 + 1166 + void* VTTemporalFilterPluginGetClassID(void) 1167 + { 1168 + if (verbose) puts("STUB: VTTemporalFilterPluginGetClassID called"); 1169 + return NULL; 1170 + } 1171 + 1172 + void* VTTemporalFilterPluginGetTypeID(void) 1173 + { 1174 + if (verbose) puts("STUB: VTTemporalFilterPluginGetTypeID called"); 1175 + return NULL; 1176 + } 1177 + 1178 + void* VTTemporalFilterPluginSessionConcludeInputFrame(void) 1179 + { 1180 + if (verbose) puts("STUB: VTTemporalFilterPluginSessionConcludeInputFrame called"); 1181 + return NULL; 1182 + } 1183 + 1184 + void* VTTemporalFilterPluginSessionEmitOutputFrame(void) 1185 + { 1186 + if (verbose) puts("STUB: VTTemporalFilterPluginSessionEmitOutputFrame called"); 1187 + return NULL; 1188 + } 1189 + 1190 + void* VTTemporalFilterPluginSessionGetClientInputPixelBufferAttributesHint(void) 1191 + { 1192 + if (verbose) puts("STUB: VTTemporalFilterPluginSessionGetClientInputPixelBufferAttributesHint called"); 1193 + return NULL; 1194 + } 1195 + 1196 + void* VTTemporalFilterPluginSessionGetClientOutputPixelBufferAttributes(void) 1197 + { 1198 + if (verbose) puts("STUB: VTTemporalFilterPluginSessionGetClientOutputPixelBufferAttributes called"); 1199 + return NULL; 1200 + } 1201 + 1202 + void* VTTemporalFilterPluginSessionGetOutputPixelBufferPool(void) 1203 + { 1204 + if (verbose) puts("STUB: VTTemporalFilterPluginSessionGetOutputPixelBufferPool called"); 1205 + return NULL; 1206 + } 1207 + 1208 + void* VTTemporalFilterPluginSessionSetInputPixelBufferAttributes(void) 1209 + { 1210 + if (verbose) puts("STUB: VTTemporalFilterPluginSessionSetInputPixelBufferAttributes called"); 1211 + return NULL; 1212 + } 1213 + 1214 + void* VTTemporalFilterPluginSessionSetOutputPixelBufferAttributes(void) 1215 + { 1216 + if (verbose) puts("STUB: VTTemporalFilterPluginSessionSetOutputPixelBufferAttributes called"); 1217 + return NULL; 1218 + } 1219 + 1220 + void* VTTemporalFilterSessionCompleteFrames(void) 1221 + { 1222 + if (verbose) puts("STUB: VTTemporalFilterSessionCompleteFrames called"); 1223 + return NULL; 1224 + } 1225 + 1226 + void* VTTemporalFilterSessionCopyProperty(void) 1227 + { 1228 + if (verbose) puts("STUB: VTTemporalFilterSessionCopyProperty called"); 1229 + return NULL; 1230 + } 1231 + 1232 + void* VTTemporalFilterSessionCopySerializableProperties(void) 1233 + { 1234 + if (verbose) puts("STUB: VTTemporalFilterSessionCopySerializableProperties called"); 1235 + return NULL; 1236 + } 1237 + 1238 + void* VTTemporalFilterSessionCopySupportedPropertyDictionary(void) 1239 + { 1240 + if (verbose) puts("STUB: VTTemporalFilterSessionCopySupportedPropertyDictionary called"); 1241 + return NULL; 1242 + } 1243 + 1244 + void* VTTemporalFilterSessionCreate(void) 1245 + { 1246 + if (verbose) puts("STUB: VTTemporalFilterSessionCreate called"); 1247 + return NULL; 1248 + } 1249 + 1250 + void* VTTemporalFilterSessionGetTypeID(void) 1251 + { 1252 + if (verbose) puts("STUB: VTTemporalFilterSessionGetTypeID called"); 1253 + return NULL; 1254 + } 1255 + 1256 + void* VTTemporalFilterSessionInvalidate(void) 1257 + { 1258 + if (verbose) puts("STUB: VTTemporalFilterSessionInvalidate called"); 1259 + return NULL; 1260 + } 1261 + 1262 + void* VTTemporalFilterSessionProcessFrame(void) 1263 + { 1264 + if (verbose) puts("STUB: VTTemporalFilterSessionProcessFrame called"); 1265 + return NULL; 1266 + } 1267 + 1268 + void* VTTemporalFilterSessionSessionSetProperty(void) 1269 + { 1270 + if (verbose) puts("STUB: VTTemporalFilterSessionSessionSetProperty called"); 1271 + return NULL; 1272 + } 1273 + 1274 + void* VTTemporalFilterSessionSetProperties(void) 1275 + { 1276 + if (verbose) puts("STUB: VTTemporalFilterSessionSetProperties called"); 1277 + return NULL; 1278 + } 1279 + 1280 + void* VTTileCompressionSessionCompleteTiles(void) 1281 + { 1282 + if (verbose) puts("STUB: VTTileCompressionSessionCompleteTiles called"); 1283 + return NULL; 1284 + } 1285 + 1286 + void* VTTileCompressionSessionCopyProperty(void) 1287 + { 1288 + if (verbose) puts("STUB: VTTileCompressionSessionCopyProperty called"); 1289 + return NULL; 1290 + } 1291 + 1292 + void* VTTileCompressionSessionCopySerializableProperties(void) 1293 + { 1294 + if (verbose) puts("STUB: VTTileCompressionSessionCopySerializableProperties called"); 1295 + return NULL; 1296 + } 1297 + 1298 + void* VTTileCompressionSessionCopySupportedPropertyDictionary(void) 1299 + { 1300 + if (verbose) puts("STUB: VTTileCompressionSessionCopySupportedPropertyDictionary called"); 1301 + return NULL; 1302 + } 1303 + 1304 + void* VTTileCompressionSessionCreate(void) 1305 + { 1306 + if (verbose) puts("STUB: VTTileCompressionSessionCreate called"); 1307 + return NULL; 1308 + } 1309 + 1310 + void* VTTileCompressionSessionEncodeTile(void) 1311 + { 1312 + if (verbose) puts("STUB: VTTileCompressionSessionEncodeTile called"); 1313 + return NULL; 1314 + } 1315 + 1316 + void* VTTileCompressionSessionGetTypeID(void) 1317 + { 1318 + if (verbose) puts("STUB: VTTileCompressionSessionGetTypeID called"); 1319 + return NULL; 1320 + } 1321 + 1322 + void* VTTileCompressionSessionInvalidate(void) 1323 + { 1324 + if (verbose) puts("STUB: VTTileCompressionSessionInvalidate called"); 1325 + return NULL; 1326 + } 1327 + 1328 + void* VTTileCompressionSessionPrepareToEncodeTiles(void) 1329 + { 1330 + if (verbose) puts("STUB: VTTileCompressionSessionPrepareToEncodeTiles called"); 1331 + return NULL; 1332 + } 1333 + 1334 + void* VTTileCompressionSessionSetProperties(void) 1335 + { 1336 + if (verbose) puts("STUB: VTTileCompressionSessionSetProperties called"); 1337 + return NULL; 1338 + } 1339 + 1340 + void* VTTileCompressionSessionSetProperty(void) 1341 + { 1342 + if (verbose) puts("STUB: VTTileCompressionSessionSetProperty called"); 1343 + return NULL; 1344 + } 1345 + 1346 + void* VTTileDecoderSessionEmitDecodedTile(void) 1347 + { 1348 + if (verbose) puts("STUB: VTTileDecoderSessionEmitDecodedTile called"); 1349 + return NULL; 1350 + } 1351 + 1352 + void* VTTileDecoderSessionSetTileDecodeRequirements(void) 1353 + { 1354 + if (verbose) puts("STUB: VTTileDecoderSessionSetTileDecodeRequirements called"); 1355 + return NULL; 1356 + } 1357 + 1358 + void* VTTileDecompressionSessionCopyProperty(void) 1359 + { 1360 + if (verbose) puts("STUB: VTTileDecompressionSessionCopyProperty called"); 1361 + return NULL; 1362 + } 1363 + 1364 + void* VTTileDecompressionSessionCopySerializableProperties(void) 1365 + { 1366 + if (verbose) puts("STUB: VTTileDecompressionSessionCopySerializableProperties called"); 1367 + return NULL; 1368 + } 1369 + 1370 + void* VTTileDecompressionSessionCopySupportedPropertyDictionary(void) 1371 + { 1372 + if (verbose) puts("STUB: VTTileDecompressionSessionCopySupportedPropertyDictionary called"); 1373 + return NULL; 1374 + } 1375 + 1376 + void* VTTileDecompressionSessionCreate(void) 1377 + { 1378 + if (verbose) puts("STUB: VTTileDecompressionSessionCreate called"); 1379 + return NULL; 1380 + } 1381 + 1382 + void* VTTileDecompressionSessionDecodeTile(void) 1383 + { 1384 + if (verbose) puts("STUB: VTTileDecompressionSessionDecodeTile called"); 1385 + return NULL; 1386 + } 1387 + 1388 + void* VTTileDecompressionSessionFinishDelayedTiles(void) 1389 + { 1390 + if (verbose) puts("STUB: VTTileDecompressionSessionFinishDelayedTiles called"); 1391 + return NULL; 1392 + } 1393 + 1394 + void* VTTileDecompressionSessionGetTypeID(void) 1395 + { 1396 + if (verbose) puts("STUB: VTTileDecompressionSessionGetTypeID called"); 1397 + return NULL; 1398 + } 1399 + 1400 + void* VTTileDecompressionSessionInvalidate(void) 1401 + { 1402 + if (verbose) puts("STUB: VTTileDecompressionSessionInvalidate called"); 1403 + return NULL; 1404 + } 1405 + 1406 + void* VTTileDecompressionSessionSetProperties(void) 1407 + { 1408 + if (verbose) puts("STUB: VTTileDecompressionSessionSetProperties called"); 1409 + return NULL; 1410 + } 1411 + 1412 + void* VTTileDecompressionSessionSetProperty(void) 1413 + { 1414 + if (verbose) puts("STUB: VTTileDecompressionSessionSetProperty called"); 1415 + return NULL; 1416 + } 1417 + 1418 + void* VTTileEncoderSessionCreateVideoFormatDescription(void) 1419 + { 1420 + if (verbose) puts("STUB: VTTileEncoderSessionCreateVideoFormatDescription called"); 1421 + return NULL; 1422 + } 1423 + 1424 + void* VTTileEncoderSessionSetTileAttributes(void) 1425 + { 1426 + if (verbose) puts("STUB: VTTileEncoderSessionSetTileAttributes called"); 1427 + return NULL; 1428 + } 1429 + 1430 + void* VTTileEncoderSessionSetTileEncodeRequirements(void) 1431 + { 1432 + if (verbose) puts("STUB: VTTileEncoderSessionSetTileEncodeRequirements called"); 1433 + return NULL; 1434 + } 1435 + 1436 + void* VTVideoDecoderGetCMBaseObject(void) 1437 + { 1438 + if (verbose) puts("STUB: VTVideoDecoderGetCMBaseObject called"); 1439 + return NULL; 1440 + } 1441 + 1442 + void* VTVideoDecoderGetClassID(void) 1443 + { 1444 + if (verbose) puts("STUB: VTVideoDecoderGetClassID called"); 1445 + return NULL; 1446 + } 1447 + 1448 + void* VTVideoDecoderGetFigBaseObject(void) 1449 + { 1450 + if (verbose) puts("STUB: VTVideoDecoderGetFigBaseObject called"); 1451 + return NULL; 1452 + } 1453 + 1454 + void* VTVideoDecoderGetTypeID(void) 1455 + { 1456 + if (verbose) puts("STUB: VTVideoDecoderGetTypeID called"); 1457 + return NULL; 1458 + } 1459 + 1460 + void* VTVideoEncoderGetCMBaseObject(void) 1461 + { 1462 + if (verbose) puts("STUB: VTVideoEncoderGetCMBaseObject called"); 1463 + return NULL; 1464 + } 1465 + 1466 + void* VTVideoEncoderGetClassID(void) 1467 + { 1468 + if (verbose) puts("STUB: VTVideoEncoderGetClassID called"); 1469 + return NULL; 1470 + } 1471 + 1472 + void* VTVideoEncoderGetFigBaseObject(void) 1473 + { 1474 + if (verbose) puts("STUB: VTVideoEncoderGetFigBaseObject called"); 1475 + return NULL; 1476 + } 1477 + 1478 + void* VTVideoEncoderGetTypeID(void) 1479 + { 1480 + if (verbose) puts("STUB: VTVideoEncoderGetTypeID called"); 1481 + return NULL; 1482 + } 1483 + 1484 + void* VTXPCMessageCopyCMSampleBuffer(void) 1485 + { 1486 + if (verbose) puts("STUB: VTXPCMessageCopyCMSampleBuffer called"); 1487 + return NULL; 1488 + } 1489 + 1490 + void* VTXPCMessageCopyCVPixelBuffer(void) 1491 + { 1492 + if (verbose) puts("STUB: VTXPCMessageCopyCVPixelBuffer called"); 1493 + return NULL; 1494 + } 1495 + 1496 + void* VTXPCMessageCopyVideoFormatDescription(void) 1497 + { 1498 + if (verbose) puts("STUB: VTXPCMessageCopyVideoFormatDescription called"); 1499 + return NULL; 1500 + } 1501 + 1502 + void* VTXPCMessageSetCMSampleBuffer(void) 1503 + { 1504 + if (verbose) puts("STUB: VTXPCMessageSetCMSampleBuffer called"); 1505 + return NULL; 1506 + } 1507 + 1508 + void* VTXPCMessageSetCVPixelBuffer(void) 1509 + { 1510 + if (verbose) puts("STUB: VTXPCMessageSetCVPixelBuffer called"); 1511 + return NULL; 1512 + } 1513 + 1514 + void* VTXPCMessageSetVideoFormatDescription(void) 1515 + { 1516 + if (verbose) puts("STUB: VTXPCMessageSetVideoFormatDescription called"); 1517 + return NULL; 1518 + }
+7
tools/fix-source-perm.sh
··· 1 + #!/bin/bash 2 + 3 + for folder in "$@" 4 + do 5 + find $folder -type d -exec chmod 775 {} \; 6 + find $folder -type f -exec chmod 664 {} \; 7 + done