pyobjc-framework-AVFoundation 10.1__tar.gz → 11.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyobjc_framework_avfoundation-11.0/Lib/AVFoundation/__init__.py +297 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/Lib/AVFoundation/_metadata.py +1029 -18
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/Lib/pyobjc_framework_AVFoundation.egg-info/PKG-INFO +8 -8
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/Lib/pyobjc_framework_AVFoundation.egg-info/SOURCES.txt +14 -8
- pyobjc_framework_avfoundation-11.0/Lib/pyobjc_framework_AVFoundation.egg-info/pyobjc-build-info.txt +3 -0
- pyobjc_framework_avfoundation-11.0/Lib/pyobjc_framework_AVFoundation.egg-info/requires.txt +5 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/License.txt +1 -1
- pyobjc_framework_avfoundation-11.0/Modules/_AVFoundation.m +71 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/Modules/_AVFoundation_AVAudioBuffer.m +3 -3
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/Modules/_AVFoundation_inlines.m +50 -17
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/Modules/_AVFoundation_protocols.m +11 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/Modules/pyobjc-api.h +1 -1
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/Modules/pyobjc-compat.h +80 -5
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PKG-INFO +8 -8
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avassetdownloadtask.py +10 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avassetimagegenerator.py +9 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avassetplaybackassistant.py +6 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avassetresourceloader.py +10 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudioapplication.py +20 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudioenvironmentnode.py +10 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiosessiontypes.py +14 -0
- pyobjc_framework_avfoundation-11.0/PyObjCTest/test_avcapturecontrol.py +9 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcapturedevice.py +40 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcapturefileoutput.py +23 -0
- pyobjc_framework_avfoundation-11.0/PyObjCTest/test_avcaptureindexpicker.py +16 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcaptureinput.py +24 -1
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcapturephotooutput.py +37 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcapturesession.py +15 -1
- pyobjc_framework_avfoundation-11.0/PyObjCTest/test_avcaptureslider.py +10 -0
- pyobjc_framework_avfoundation-11.0/PyObjCTest/test_avcapturesystemexposurebiasslider.py +12 -0
- pyobjc_framework_avfoundation-11.0/PyObjCTest/test_avcapturesystemzoomslider.py +10 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcomposition.py +6 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcontentkeysession.py +5 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_averror.py +3 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avmediaformat.py +4 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avmetadataformat.py +6 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avmetadataidentifiers.py +7 -0
- pyobjc_framework_avfoundation-11.0/PyObjCTest/test_avmetrics.py +33 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avplayerinterstitialeventcontroller.py +19 -0
- pyobjc_framework_avfoundation-11.0/PyObjCTest/test_avplayeritemintegratedtimeline.py +57 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avplayeritemoutput.py +18 -5
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avsamplebufferdisplaylayer.py +13 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avsamplebuffervideorenderer.py +12 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avvideocomposition.py +6 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avvideosettings.py +6 -0
- pyobjc_framework_avfoundation-11.0/metadata/AVFoundation.fwinfo +5655 -0
- pyobjc_framework_avfoundation-11.0/metadata/metadata.ini +49 -0
- pyobjc-framework-AVFoundation-10.1/metadata/raw/arm64-14.2.fwinfo → pyobjc_framework_avfoundation-11.0/metadata/raw/arm64-14.5.fwinfo +437 -4
- pyobjc_framework_avfoundation-11.0/metadata/raw/arm64-15.0.fwinfo +16595 -0
- pyobjc-framework-AVFoundation-10.1/metadata/raw/arm64-14.0.fwinfo → pyobjc_framework_avfoundation-11.0/metadata/raw/arm64-15.2.fwinfo +6224 -365
- pyobjc-framework-AVFoundation-10.1/metadata/raw/x86_64-14.2.fwinfo → pyobjc_framework_avfoundation-11.0/metadata/raw/x86_64-14.5.fwinfo +437 -4
- pyobjc_framework_avfoundation-11.0/metadata/raw/x86_64-15.0.fwinfo +16595 -0
- pyobjc-framework-AVFoundation-10.1/metadata/raw/x86_64-14.0.fwinfo → pyobjc_framework_avfoundation-11.0/metadata/raw/x86_64-15.2.fwinfo +6224 -365
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/pyobjc_setup.py +121 -27
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/setup.py +1 -4
- pyobjc-framework-AVFoundation-10.1/Lib/AVFoundation/__init__.py +0 -37
- pyobjc-framework-AVFoundation-10.1/Lib/pyobjc_framework_AVFoundation.egg-info/requires.txt +0 -5
- pyobjc-framework-AVFoundation-10.1/Modules/_AVFoundation.m +0 -40
- pyobjc-framework-AVFoundation-10.1/metadata/AVFoundation.fwinfo +0 -3698
- pyobjc-framework-AVFoundation-10.1/metadata/metadata.ini +0 -5
- pyobjc-framework-AVFoundation-10.1/metadata/raw/arm64-12.1.fwinfo +0 -49293
- pyobjc-framework-AVFoundation-10.1/metadata/raw/arm64-13.0.fwinfo +0 -52027
- pyobjc-framework-AVFoundation-10.1/metadata/raw/x86_64-12.1.fwinfo +0 -49293
- pyobjc-framework-AVFoundation-10.1/metadata/raw/x86_64-13.0.fwinfo +0 -52027
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/Lib/pyobjc_framework_AVFoundation.egg-info/dependency_links.txt +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/Lib/pyobjc_framework_AVFoundation.egg-info/not-zip-safe +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/Lib/pyobjc_framework_AVFoundation.egg-info/top_level.txt +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/MANIFEST.in +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/__init__.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avanimation.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avasset.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avassetcache.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avassetexportsession.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avassetreader.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avassetreaderoutput.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avassetsegmentreport.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avassetstoragemanager.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avassettrack.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avassettrackgroup.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avassettracksegment.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avassetvariant.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avassetwriter.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avassetwriterinput.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avasynchronouskeyvalueloading.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiobuffer.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiochannellayout.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudioconverter.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudioengine.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiofile.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudioformat.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudioionode.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiomix.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiomixing.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudionode.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudioplayer.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudioplayernode.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudioprocessingsettings.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiorecorder.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudioroutingarbiter.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiosequencer.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiosession.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiosetting.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiosettings.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiosink.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiosourcenode.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiotime.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiotypes.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiounit.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiounitcomponent.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiouniteffect.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiouniteq.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiounitgenerator.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiounitreverb.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiounitsampler.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiounittimeeffect.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avaudiounittimeffect.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcameracalibrationdata.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcaption.py +0 -0
- /pyobjc-framework-AVFoundation-10.1/PyObjCTest/test_AVCaptionConversionValidator.py → /pyobjc_framework_avfoundation-11.0/PyObjCTest/test_avcaptionconversionvalidator.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcaptionformatconformer.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcaptionrenderer.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcaptionsettings.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcaptureaudiodataoutput.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcapturedeskviewapplication.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcaptureoutput.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcapturereactions.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcapturesessionpreset.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcapturestillimageoutput.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcapturevideodataoutput.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcapturevideopreviewlayer.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcompositiontrack.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avcompositiontracksegment.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avdepthdata.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avexternalstoragedevice.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avfoundation.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avgeometry.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avmediaselection.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avmediaselectiongroup.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avmetadataitem.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avmetadataobject.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avmidiplayer.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avmovie.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avmovietrack.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avmusicevents.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avoutputsettingsassistant.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avoutputsettingsassistent.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avplaybackcoordinator.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avplayer.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avplayeritem.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avplayeritemmediadatacollector.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avplayeritemprotectedcontentaddition.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avplayeritemprotectedcontentadditions.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avplayeritemtrack.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avplayerlayer.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avplayerlooper.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avplayeroutput.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avportraitmatte.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avqueuedsamplebufferrendering.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avroutedetector.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avsamplebufferaudiorenderer.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avsamplebuffergenerator.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avsamplebufferrendersynchronizer.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avsamplecursor.py +0 -0
- /pyobjc-framework-AVFoundation-10.1/PyObjCTest/test_AVSemanticSegmentationMatte.py → /pyobjc_framework_avfoundation-11.0/PyObjCTest/test_avsemanticsegmentationmatte.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avspeechsynthesis.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avspeechsynthesisprovider.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avutilities.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/PyObjCTest/test_avvideocompositing.py +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/metadata/raw/arm64-12.3.fwinfo +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/metadata/raw/arm64-13.3.fwinfo +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/metadata/raw/x86_64-10.10.fwinfo +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/metadata/raw/x86_64-10.13.fwinfo +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/metadata/raw/x86_64-10.14.fwinfo +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/metadata/raw/x86_64-10.15.fwinfo +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/metadata/raw/x86_64-10.16.fwinfo +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/metadata/raw/x86_64-12.3.fwinfo +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/metadata/raw/x86_64-13.3.fwinfo +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/pyproject.toml +0 -0
- {pyobjc-framework-AVFoundation-10.1 → pyobjc_framework_avfoundation-11.0}/setup.cfg +0 -0
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Python mapping for the AVFoundation framework.
|
|
3
|
+
|
|
4
|
+
This module does not contain docstrings for the wrapped code, check Apple's
|
|
5
|
+
documentation for details on how to use these functions and classes.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def _setup():
|
|
10
|
+
import sys
|
|
11
|
+
|
|
12
|
+
import CoreAudio
|
|
13
|
+
import CoreMedia
|
|
14
|
+
import Foundation
|
|
15
|
+
import objc
|
|
16
|
+
from . import _AVFoundation, _metadata
|
|
17
|
+
from ._inlines import _inline_list_
|
|
18
|
+
|
|
19
|
+
dir_func, getattr_func = objc.createFrameworkDirAndGetattr(
|
|
20
|
+
name="AVFoundation",
|
|
21
|
+
frameworkIdentifier="com.apple.avfoundation",
|
|
22
|
+
frameworkPath=objc.pathForFramework(
|
|
23
|
+
"/System/Library/Frameworks/AVFoundation.framework"
|
|
24
|
+
),
|
|
25
|
+
globals_dict=globals(),
|
|
26
|
+
inline_list=_inline_list_,
|
|
27
|
+
parents=(_AVFoundation, CoreAudio, CoreMedia, Foundation),
|
|
28
|
+
metadict=_metadata.__dict__,
|
|
29
|
+
)
|
|
30
|
+
|
|
31
|
+
globals()["__dir__"] = dir_func
|
|
32
|
+
globals()["__getattr__"] = getattr_func
|
|
33
|
+
|
|
34
|
+
for cls, sel in (
|
|
35
|
+
("AVAssetDownloadTask", b"originalRequest"),
|
|
36
|
+
("AVAssetDownloadTask", b"currentRequest"),
|
|
37
|
+
("AVAssetDownloadTask", b"response"),
|
|
38
|
+
("AVAggregateAssetDownloadTask", b"originalRequest"),
|
|
39
|
+
("AVAggregateAssetDownloadTask", b"currentRequest"),
|
|
40
|
+
("AVAggregateAssetDownloadTask", b"response"),
|
|
41
|
+
("AVAssetDownloadURLSession", b"sharedSession"),
|
|
42
|
+
("AVAssetDownloadURLSession", b"sessionWithConfiguration:"),
|
|
43
|
+
("AVAssetDownloadURLSession", b"sessionWithConfiguration:delegate:"),
|
|
44
|
+
("AVAssetDownloadURLSession", b"dataTaskWithRequest:"),
|
|
45
|
+
("AVAssetDownloadURLSession", b"dataTaskWithURL:"),
|
|
46
|
+
("AVAssetDownloadURLSession", b"uploadTaskWithRequest:fromFile:"),
|
|
47
|
+
("AVAssetDownloadURLSession", b"uploadTaskWithRequest:fromData:"),
|
|
48
|
+
("AVAssetDownloadURLSession", b"uploadTaskWithStreamedRequest:"),
|
|
49
|
+
("AVAssetDownloadURLSession", b"downloadTaskWithRequest:"),
|
|
50
|
+
("AVAssetDownloadURLSession", b"downloadTaskWithURL:"),
|
|
51
|
+
("AVAssetDownloadURLSession", b"downloadTaskWithResumeData:"),
|
|
52
|
+
("AVAssetDownloadURLSession", b"dataTaskWithRequest:completionHandler:"),
|
|
53
|
+
("AVAssetDownloadURLSession", b"dataTaskWithURL:completionHandler:"),
|
|
54
|
+
(
|
|
55
|
+
"AVAssetDownloadURLSession",
|
|
56
|
+
b"uploadTaskWithRequest:fromFile:completionHandler:",
|
|
57
|
+
),
|
|
58
|
+
(
|
|
59
|
+
"AVAssetDownloadURLSession",
|
|
60
|
+
b"uploadTaskWithRequest:fromData:completionHandler:",
|
|
61
|
+
),
|
|
62
|
+
("AVAssetDownloadURLSession", b"downloadTaskWithRequest:completionHandler:"),
|
|
63
|
+
("AVAssetDownloadURLSession", b"downloadTaskWithURL:completionHandler:"),
|
|
64
|
+
("AVAssetDownloadURLSession", b"downloadTaskWithResumeData:completionHandler:"),
|
|
65
|
+
("AVAudioSourceNode", b"init"),
|
|
66
|
+
("AVAudioChannelLayout", b"init"),
|
|
67
|
+
("AVAudioEnvironmentDistanceAttenuationParameters", b"init"),
|
|
68
|
+
("AVAudioEnvironmentReverbParameters", b"init"),
|
|
69
|
+
("AVAudioSinkNode", b"init"),
|
|
70
|
+
("AVAudioConnectionPoint", b"init"),
|
|
71
|
+
("AVAudioApplication", b"init"),
|
|
72
|
+
("AVSpeechSynthesisProviderVoice", b"init"),
|
|
73
|
+
("AVSpeechSynthesisProviderVoice", b"new"),
|
|
74
|
+
("AVSpeechSynthesisProviderRequest", b"init"),
|
|
75
|
+
("AVSpeechSynthesisProviderRequest", b"new"),
|
|
76
|
+
("AVAudioRoutingArbiter", b"init"),
|
|
77
|
+
("AVAudioRoutingArbiter", b"new"),
|
|
78
|
+
("AVAudioInputNode", b"init"),
|
|
79
|
+
("AVAudioOutputNode", b"init"),
|
|
80
|
+
("AVAudioUnitEQFilterParameters", b"init"),
|
|
81
|
+
("AVAudioMixingDestination", b"init"),
|
|
82
|
+
("AVAssetCache", b"init"),
|
|
83
|
+
("AVAssetCache", b"new"),
|
|
84
|
+
("AVAssetPlaybackAssistant", b"init"),
|
|
85
|
+
("AVAssetPlaybackAssistant", b"new"),
|
|
86
|
+
("AVCaptureInput", b"init"),
|
|
87
|
+
("AVCaptureInput", b"new"),
|
|
88
|
+
("AVCaptureInputPort", b"init"),
|
|
89
|
+
("AVCaptureInputPort", b"new"),
|
|
90
|
+
("AVAssetDownloadTask", b"init"),
|
|
91
|
+
("AVAssetDownloadTask", b"new"),
|
|
92
|
+
("AVAssetDownloadConfiguration", b"init"),
|
|
93
|
+
("AVAssetDownloadConfiguration", b"new"),
|
|
94
|
+
("AVAggregateAssetDownloadTask", b"init"),
|
|
95
|
+
("AVAggregateAssetDownloadTask", b"new"),
|
|
96
|
+
("AVAssetDownloadURLSession", b"init"),
|
|
97
|
+
("AVAssetDownloadURLSession", b"new"),
|
|
98
|
+
("AVAssetWriterInput", b"init"),
|
|
99
|
+
("AVAssetWriterInput", b"new"),
|
|
100
|
+
("AVAssetWriterInputPassDescription", b"init"),
|
|
101
|
+
("AVAssetWriterInputPassDescription", b"new"),
|
|
102
|
+
("AVAssetWriterInputPixelBufferAdaptor", b"init"),
|
|
103
|
+
("AVAssetWriterInputPixelBufferAdaptor", b"new"),
|
|
104
|
+
("AVAssetWriterInputTaggedPixelBufferGroupAdaptor", b"init"),
|
|
105
|
+
("AVAssetWriterInputTaggedPixelBufferGroupAdaptor", b"new"),
|
|
106
|
+
("AVAssetWriterInputMetadataAdaptor", b"init"),
|
|
107
|
+
("AVAssetWriterInputMetadataAdaptor", b"new"),
|
|
108
|
+
("AVAssetWriterInputCaptionAdaptor", b"init"),
|
|
109
|
+
("AVAssetWriterInputCaptionAdaptor", b"new"),
|
|
110
|
+
("AVAssetWriter", b"init"),
|
|
111
|
+
("AVAssetWriter", b"new"),
|
|
112
|
+
("AVAssetWriterInputGroup", b"init"),
|
|
113
|
+
("AVAssetWriterInputGroup", b"new"),
|
|
114
|
+
("AVPortraitEffectsMatte", b"init"),
|
|
115
|
+
("AVPortraitEffectsMatte", b"new"),
|
|
116
|
+
("AVSampleCursor", b"init"),
|
|
117
|
+
("AVSampleCursor", b"new"),
|
|
118
|
+
("AVAssetImageGenerator", b"init"),
|
|
119
|
+
("AVAssetImageGenerator", b"new"),
|
|
120
|
+
("AVAssetVariant", b"init"),
|
|
121
|
+
("AVAssetVariant", b"new"),
|
|
122
|
+
("AVAssetVariantVideoAttributes", b"init"),
|
|
123
|
+
("AVAssetVariantVideoAttributes", b"new"),
|
|
124
|
+
("AVAssetVariantVideoLayoutAttributes", b"init"),
|
|
125
|
+
("AVAssetVariantVideoLayoutAttributes", b"new"),
|
|
126
|
+
("AVAssetVariantAudioAttributes", b"init"),
|
|
127
|
+
("AVAssetVariantAudioAttributes", b"new"),
|
|
128
|
+
("AVAssetVariantQualifier", b"init"),
|
|
129
|
+
("AVAssetVariantQualifier", b"new"),
|
|
130
|
+
("AVCoordinatedPlaybackSuspension", b"init"),
|
|
131
|
+
("AVCoordinatedPlaybackSuspension", b"new"),
|
|
132
|
+
("AVPlaybackCoordinator", b"init"),
|
|
133
|
+
("AVPlaybackCoordinator", b"new"),
|
|
134
|
+
("AVPlayerPlaybackCoordinator", b"init"),
|
|
135
|
+
("AVPlayerPlaybackCoordinator", b"new"),
|
|
136
|
+
("AVDelegatingPlaybackCoordinatorPlaybackControlCommand", b"init"),
|
|
137
|
+
("AVDelegatingPlaybackCoordinatorPlaybackControlCommand", b"new"),
|
|
138
|
+
("AVDelegatingPlaybackCoordinatorPlayCommand", b"init"),
|
|
139
|
+
("AVDelegatingPlaybackCoordinatorPlayCommand", b"new"),
|
|
140
|
+
("AVDelegatingPlaybackCoordinatorBufferingCommand", b"init"),
|
|
141
|
+
("AVDelegatingPlaybackCoordinatorBufferingCommand", b"new"),
|
|
142
|
+
("AVDelegatingPlaybackCoordinatorPauseCommand", b"init"),
|
|
143
|
+
("AVDelegatingPlaybackCoordinatorPauseCommand", b"new"),
|
|
144
|
+
("AVDelegatingPlaybackCoordinatorSeekCommand", b"init"),
|
|
145
|
+
("AVDelegatingPlaybackCoordinatorSeekCommand", b"new"),
|
|
146
|
+
("AVCaptionConversionValidator", b"init"),
|
|
147
|
+
("AVCaptionConversionValidator", b"new"),
|
|
148
|
+
("AVCaptionConversionWarning", b"init"),
|
|
149
|
+
("AVCaptionConversionWarning", b"new"),
|
|
150
|
+
("AVCaptionConversionAdjustment", b"init"),
|
|
151
|
+
("AVCaptionConversionAdjustment", b"new"),
|
|
152
|
+
("AVCaptionConversionTimeRangeAdjustment", b"init"),
|
|
153
|
+
("AVCaptionConversionTimeRangeAdjustment", b"new"),
|
|
154
|
+
("AVAssetTrackSegment", b"init"),
|
|
155
|
+
("AVAssetTrackSegment", b"new"),
|
|
156
|
+
("AVTextStyleRule", b"init"),
|
|
157
|
+
("AVTextStyleRule", b"new"),
|
|
158
|
+
("AVCaptureDataOutputSynchronizer", b"init"),
|
|
159
|
+
("AVCaptureDataOutputSynchronizer", b"new"),
|
|
160
|
+
("AVCaptureSynchronizedDataCollection", b"init"),
|
|
161
|
+
("AVCaptureSynchronizedDataCollection", b"new"),
|
|
162
|
+
("AVCaptureSynchronizedData", b"init"),
|
|
163
|
+
("AVCaptureSynchronizedData", b"new"),
|
|
164
|
+
("AVURLAsset", b"init"),
|
|
165
|
+
("AVURLAsset", b"new"),
|
|
166
|
+
("AVAssetSegmentReport", b"init"),
|
|
167
|
+
("AVAssetSegmentReport", b"new"),
|
|
168
|
+
("AVAssetSegmentTrackReport", b"init"),
|
|
169
|
+
("AVAssetSegmentTrackReport", b"new"),
|
|
170
|
+
("AVAssetSegmentReportSampleInformation", b"init"),
|
|
171
|
+
("AVAssetSegmentReportSampleInformation", b"new"),
|
|
172
|
+
("AVAssetReaderTrackOutput", b"init"),
|
|
173
|
+
("AVAssetReaderTrackOutput", b"new"),
|
|
174
|
+
("AVAssetReaderAudioMixOutput", b"init"),
|
|
175
|
+
("AVAssetReaderAudioMixOutput", b"new"),
|
|
176
|
+
("AVAssetReaderVideoCompositionOutput", b"init"),
|
|
177
|
+
("AVAssetReaderVideoCompositionOutput", b"new"),
|
|
178
|
+
("AVAssetReaderOutputMetadataAdaptor", b"init"),
|
|
179
|
+
("AVAssetReaderOutputMetadataAdaptor", b"new"),
|
|
180
|
+
("AVAssetReaderOutputCaptionAdaptor", b"init"),
|
|
181
|
+
("AVAssetReaderOutputCaptionAdaptor", b"new"),
|
|
182
|
+
("AVAssetReaderSampleReferenceOutput", b"init"),
|
|
183
|
+
("AVAssetReaderSampleReferenceOutput", b"new"),
|
|
184
|
+
("AVSemanticSegmentationMatte", b"init"),
|
|
185
|
+
("AVSemanticSegmentationMatte", b"new"),
|
|
186
|
+
("AVContentKeySession", b"init"),
|
|
187
|
+
("AVContentKeySession", b"new"),
|
|
188
|
+
("AVCaptureConnection", b"init"),
|
|
189
|
+
("AVCaptureConnection", b"new"),
|
|
190
|
+
("AVCaptureAudioChannel", b"init"),
|
|
191
|
+
("AVCaptureAudioChannel", b"new"),
|
|
192
|
+
("AVCaptureBracketedStillImageSettings", b"init"),
|
|
193
|
+
("AVCaptureBracketedStillImageSettings", b"new"),
|
|
194
|
+
("AVCaptureOutput", b"init"),
|
|
195
|
+
("AVCaptureOutput", b"new"),
|
|
196
|
+
("AVPlayerLooper", b"init"),
|
|
197
|
+
("AVPlayerLooper", b"new"),
|
|
198
|
+
("AVExternalStorageDevice", b"init"),
|
|
199
|
+
("AVExternalStorageDevice", b"new"),
|
|
200
|
+
("AVExternalStorageDeviceDiscoverySession", b"init"),
|
|
201
|
+
("AVExternalStorageDeviceDiscoverySession", b"new"),
|
|
202
|
+
("AVCameraCalibrationData", b"init"),
|
|
203
|
+
("AVCameraCalibrationData", b"new"),
|
|
204
|
+
("AVVideoPerformanceMetrics", b"init"),
|
|
205
|
+
("AVVideoPerformanceMetrics", b"new"),
|
|
206
|
+
("AVCaptionRendererScene", b"init"),
|
|
207
|
+
("AVCaptionRendererScene", b"new"),
|
|
208
|
+
("AVOutputSettingsAssistant", b"init"),
|
|
209
|
+
("AVOutputSettingsAssistant", b"new"),
|
|
210
|
+
("AVCaptureSystemPressureState", b"init"),
|
|
211
|
+
("AVCaptureSystemPressureState", b"new"),
|
|
212
|
+
("AVPlayerVideoOutput", b"init"),
|
|
213
|
+
("AVPlayerVideoOutput", b"new"),
|
|
214
|
+
("AVVideoOutputSpecification", b"init"),
|
|
215
|
+
("AVVideoOutputSpecification", b"new"),
|
|
216
|
+
("AVPlayerVideoOutputConfiguration", b"init"),
|
|
217
|
+
("AVPlayerVideoOutputConfiguration", b"new"),
|
|
218
|
+
("AVCapturePhotoOutputReadinessCoordinator", b"init"),
|
|
219
|
+
("AVCapturePhotoOutputReadinessCoordinator", b"new"),
|
|
220
|
+
("AVCaptureResolvedPhotoSettings", b"init"),
|
|
221
|
+
("AVCaptureResolvedPhotoSettings", b"new"),
|
|
222
|
+
("AVCapturePhoto", b"init"),
|
|
223
|
+
("AVCapturePhoto", b"new"),
|
|
224
|
+
("AVCaptureDeferredPhotoProxy", b"init"),
|
|
225
|
+
("AVCaptureDeferredPhotoProxy", b"new"),
|
|
226
|
+
("AVAssetReader", b"init"),
|
|
227
|
+
("AVAssetReader", b"new"),
|
|
228
|
+
("AVMetadataObject", b"init"),
|
|
229
|
+
("AVMetadataObject", b"new"),
|
|
230
|
+
("AVSampleBufferGenerator", b"init"),
|
|
231
|
+
("AVSampleBufferGenerator", b"new"),
|
|
232
|
+
("AVSampleBufferRequest", b"init"),
|
|
233
|
+
("AVSampleBufferRequest", b"new"),
|
|
234
|
+
("AVSampleBufferGeneratorBatch", b"init"),
|
|
235
|
+
("AVSampleBufferGeneratorBatch", b"new"),
|
|
236
|
+
("AVMediaDataStorage", b"init"),
|
|
237
|
+
("AVMediaDataStorage", b"new"),
|
|
238
|
+
("AVAssetExportSession", b"init"),
|
|
239
|
+
("AVAssetExportSession", b"new"),
|
|
240
|
+
("AVPlayerInterstitialEvent", b"init"),
|
|
241
|
+
("AVPlayerInterstitialEvent", b"new"),
|
|
242
|
+
("AVCaption", b"init"),
|
|
243
|
+
("AVCaption", b"new"),
|
|
244
|
+
("AVCaptionRuby", b"init"),
|
|
245
|
+
("AVCaptionRuby", b"new"),
|
|
246
|
+
("AVAssetTrack", b"init"),
|
|
247
|
+
("AVAssetTrack", b"new"),
|
|
248
|
+
("AVCaptionFormatConformer", b"init"),
|
|
249
|
+
("AVCaptionFormatConformer", b"new"),
|
|
250
|
+
("AVCaptureDevice", b"init"),
|
|
251
|
+
("AVCaptureDevice", b"new"),
|
|
252
|
+
("AVCaptureDeviceDiscoverySession", b"init"),
|
|
253
|
+
("AVCaptureDeviceDiscoverySession", b"new"),
|
|
254
|
+
("AVCaptureDeviceRotationCoordinator", b"init"),
|
|
255
|
+
("AVCaptureDeviceRotationCoordinator", b"new"),
|
|
256
|
+
("AVFrameRateRange", b"init"),
|
|
257
|
+
("AVFrameRateRange", b"new"),
|
|
258
|
+
("AVZoomRange", b"init"),
|
|
259
|
+
("AVZoomRange", b"new"),
|
|
260
|
+
("AVCaptureDeviceFormat", b"init"),
|
|
261
|
+
("AVCaptureDeviceFormat", b"new"),
|
|
262
|
+
("AVCaptureDeviceInputSource", b"init"),
|
|
263
|
+
("AVCaptureDeviceInputSource", b"new"),
|
|
264
|
+
("AVPlayerItem", b"init"),
|
|
265
|
+
("AVPlayerItem", b"new"),
|
|
266
|
+
("AVPlayerItemAccessLog", b"init"),
|
|
267
|
+
("AVPlayerItemAccessLog", b"new"),
|
|
268
|
+
("AVPlayerItemErrorLog", b"init"),
|
|
269
|
+
("AVPlayerItemAccessLogEvent", b"new"),
|
|
270
|
+
("AVPlayerItemAccessLogEvent", b"init"),
|
|
271
|
+
("AVPlayerItemErrorLogEvent", b"new"),
|
|
272
|
+
("AVPlayerItemErrorLogEvent", b"init"),
|
|
273
|
+
("AVAssetResourceLoader", b"new"),
|
|
274
|
+
("AVAssetResourceLoader", b"init"),
|
|
275
|
+
("AVAssetResourceLoadingRequestor", b"new"),
|
|
276
|
+
("AVAssetResourceLoadingRequestor", b"init"),
|
|
277
|
+
("AVAssetResourceLoadingRequest", b"new"),
|
|
278
|
+
("AVAssetResourceLoadingRequest", b"init"),
|
|
279
|
+
("AVAssetResourceLoadingContentInformationRequest", b"new"),
|
|
280
|
+
("AVAssetResourceLoadingContentInformationRequest", b"init"),
|
|
281
|
+
("AVAssetResourceLoadingDataRequest", b"new"),
|
|
282
|
+
("AVAssetResourceLoadingDataRequest", b"init"),
|
|
283
|
+
("AVContinuityDevice", b"new"),
|
|
284
|
+
("AVContinuityDevice", b"init"),
|
|
285
|
+
("AVDepthData", b"new"),
|
|
286
|
+
("AVDepthData", b"init"),
|
|
287
|
+
("AVCaptureSession", b"new"),
|
|
288
|
+
("AVCaptureSession", b"init"),
|
|
289
|
+
("AVExposureBiasRange", b"new"),
|
|
290
|
+
("AVExposureBiasRange", b"init"),
|
|
291
|
+
):
|
|
292
|
+
objc.registerUnavailableMethod(cls, sel)
|
|
293
|
+
|
|
294
|
+
del sys.modules["AVFoundation._metadata"]
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
globals().pop("_setup")()
|