├── .gitattributes ├── .travis.yml ├── Creator ├── build │ ├── build-vs2017.bat │ ├── build-vs2019.bat │ ├── build.bat │ └── build.sh ├── doc │ └── example-omaf-configuration.json └── src │ ├── .clang-format │ ├── CMakeLists.txt │ ├── async │ ├── CMakeLists.txt │ ├── asyncnode.cpp │ ├── asyncnode.h │ ├── combinenode.cpp │ ├── combinenode.h │ ├── future.cpp │ ├── future.h │ ├── future.icpp │ ├── futureops.h │ ├── futureops.icpp │ ├── graph.h │ ├── graphbase.cpp │ ├── graphbase.h │ ├── mediasteplock.cpp │ ├── mediasteplock.h │ ├── parallelgraph.cpp │ ├── parallelgraph.h │ ├── sequentialgraph.cpp │ ├── sequentialgraph.h │ ├── throttlenode.cpp │ └── throttlenode.h │ ├── buildinfo │ └── buildinfo.h.in │ ├── common │ ├── CMakeLists.txt │ ├── bitgenerator.cpp │ ├── bitgenerator.h │ ├── bitparser.h │ ├── bitparser.icpp │ ├── exceptions.cpp │ ├── exceptions.h │ ├── lazy.h │ ├── lazy.icpp │ ├── optional.h │ ├── rational.h │ ├── utils.cpp │ └── utils.h │ ├── concurrency │ ├── CMakeLists.txt │ ├── threadedpoolprocessor.cpp │ ├── threadedpoolprocessor.h │ ├── threadedworkpool.cpp │ └── threadedworkpool.h │ ├── config │ ├── CMakeLists.txt │ ├── config.cpp │ ├── config.h │ └── config.icpp │ ├── controller │ ├── CMakeLists.txt │ ├── audio.cpp │ ├── audio.h │ ├── codecinfo.cpp │ ├── codecinfo.h │ ├── common.h │ ├── common.icpp │ ├── configreader.h │ ├── controllerbase.cpp │ ├── controllerbase.h │ ├── controllerconfigure.cpp │ ├── controllerconfigure.h │ ├── controllerops.cpp │ ├── controllerops.h │ ├── controllerops.icpp │ ├── controllerparsers.cpp │ ├── controllerparsers.h │ ├── controllerparsers.icpp │ ├── dash.cpp │ ├── dash.h │ ├── dashomaf.cpp │ ├── dashomaf.h │ ├── googlevrvideoinput.cpp │ ├── googlevrvideoinput.h │ ├── mediainput.cpp │ ├── mediainput.h │ ├── mp4vromafinterpolate.cpp │ ├── mp4vromafinterpolate.h │ ├── mp4vromafinterpolate.icpp │ ├── mp4vromafreaders.cpp │ ├── mp4vromafreaders.h │ ├── mp4vrwriter.cpp │ ├── mp4vrwriter.h │ ├── omafvdcontroller.cpp │ ├── omafvdcontroller.h │ ├── omafviconfig.cpp │ ├── omafviconfig.h │ ├── omafvicontroller.cpp │ ├── omafvicontroller.h │ ├── overlays.cpp │ ├── overlays.h │ ├── pipelineclass.h │ ├── pipelinemode.cpp │ ├── pipelinemode.h │ ├── pipelineoutput.cpp │ ├── pipelineoutput.h │ ├── timedmetadata.cpp │ ├── timedmetadata.h │ ├── videoinput.cpp │ ├── videoinput.h │ ├── view.cpp │ ├── view.h │ ├── viewpoints.cpp │ └── viewpoints.h │ ├── jsonlib │ ├── CMakeLists.txt │ ├── json-forwards.hh │ ├── json.cc │ └── json.hh │ ├── log │ ├── CMakeLists.txt │ ├── consolelog.cpp │ ├── consolelog.h │ ├── log.cpp │ ├── log.h │ ├── loglevel.h │ ├── logstream.cpp │ ├── logstream.h │ ├── logstreambuf.cpp │ └── logstreambuf.h │ ├── medialoader │ ├── CMakeLists.txt │ ├── h265loader.cpp │ ├── h265loader.h │ ├── h265memoryinputstream.cpp │ ├── h265memoryinputstream.h │ ├── h265segmentedinputstream.cpp │ ├── h265segmentedinputstream.h │ ├── h265stdistream.cpp │ ├── h265stdistream.h │ ├── medialoader.cpp │ ├── medialoader.h │ ├── mp4loader.cpp │ ├── mp4loader.h │ ├── mp4vrfilestreamfile.cpp │ ├── mp4vrfilestreamfile.h │ ├── mp4vrfilestreamgeneric.cpp │ ├── mp4vrfilestreamgeneric.h │ ├── mp4vrfilestreamlinux.cpp │ └── mp4vrfilestreamlinux.h │ ├── omaf │ ├── CMakeLists.txt │ ├── extractor.h │ ├── omafconfiguratornode.cpp │ ├── omafconfiguratornode.h │ ├── omafproperties.cpp │ ├── omafproperties.h │ ├── omafviewingorientation.cpp │ ├── omafviewingorientation.h │ ├── parser │ │ ├── CMakeLists.txt │ │ ├── bitstream.cpp │ │ ├── bitstream.hpp │ │ ├── h265datastructs.hpp │ │ ├── h265parser.cpp │ │ ├── h265parser.hpp │ │ └── parserinterface.hpp │ ├── tileconfig.h │ ├── tileconfigurations.cpp │ ├── tileconfigurations.h │ ├── tilefilter.cpp │ ├── tilefilter.h │ ├── tileproducer.cpp │ ├── tileproducer.h │ ├── tileproxy.cpp │ ├── tileproxy.h │ ├── tileproxymultires.cpp │ ├── tileproxymultires.h │ ├── tileutil.cpp │ └── tileutil.h │ ├── processor │ ├── CMakeLists.txt │ ├── data.cpp │ ├── data.h │ ├── data.icpp │ ├── debugsave.cpp │ ├── debugsave.h │ ├── debugsink.cpp │ ├── debugsink.h │ ├── filterprocessor.cpp │ ├── filterprocessor.h │ ├── generatorsource.cpp │ ├── generatorsource.h │ ├── meta.cpp │ ├── meta.h │ ├── meta.icpp │ ├── metacapturesink.cpp │ ├── metacapturesink.h │ ├── metagateprocessor.cpp │ ├── metagateprocessor.h │ ├── metamodifyprocessor.cpp │ ├── metamodifyprocessor.h │ ├── noop.cpp │ ├── noop.h │ ├── plugsource.cpp │ ├── plugsource.h │ ├── processor.cpp │ ├── processor.h │ ├── processornodebase.cpp │ ├── processornodebase.h │ ├── sequencesource.cpp │ ├── sequencesource.h │ ├── sink.cpp │ ├── sink.h │ ├── source.cpp │ ├── source.h │ ├── staticmetadatagenerator.cpp │ ├── staticmetadatagenerator.h │ ├── streamfilter.cpp │ ├── streamfilter.h │ ├── streams.cpp │ ├── streams.h │ ├── tagprocessor.h │ └── tagprocessor.icpp │ ├── raw │ ├── CMakeLists.txt │ ├── aacimport.cpp │ └── aacimport.h │ ├── segmenter │ ├── CMakeLists.txt │ ├── metadata.h │ ├── moofcombine.cpp │ ├── moofcombine.h │ ├── save.cpp │ ├── save.h │ ├── segmenter.cpp │ ├── segmenter.h │ ├── segmentercommon.cpp │ ├── segmentercommon.h │ ├── segmenterinit.cpp │ ├── segmenterinit.h │ ├── segmenternonfrag.cpp │ ├── segmenternonfrag.h │ ├── sidxadjuster.cpp │ ├── sidxadjuster.h │ ├── singlefilesave.cpp │ ├── singlefilesave.h │ ├── tagmultitrackidprocessor.cpp │ ├── tagmultitrackidprocessor.h │ ├── tagstreamidprocessor.cpp │ ├── tagstreamidprocessor.h │ ├── tagtrackidprocessor.cpp │ └── tagtrackidprocessor.h │ ├── tiler │ ├── CMakeLists.txt │ ├── tiler.cpp │ └── tiler.h │ └── tool │ ├── CMakeLists.txt │ ├── commandline.cpp │ ├── commandline.h │ ├── commandline.icpp │ ├── localcommandline.cpp │ ├── localcommandline.h │ ├── localcommandline.icpp │ ├── localoptional.cpp │ ├── localoptional.h │ ├── localoptional.icpp │ ├── omafimage.cpp │ ├── omafvd.cpp │ └── omafvi.cpp ├── LICENSE.txt ├── Mp4 ├── build │ ├── android │ │ └── build.sh │ ├── build-android-with-docker.sh │ ├── build-linux-with-docker.sh │ ├── build_win64.bat │ ├── cmake_eclipse.bat │ ├── cmake_win64_visualstudio2013.bat │ ├── cmake_win64_visualstudio2015.bat │ ├── cmake_win64_visualstudio2017_winstore.bat │ └── release.sh └── srcs │ ├── .clang-format │ ├── CMakeLists.txt │ ├── api │ ├── isobmff │ │ ├── commontypes.h │ │ ├── deprecation.h │ │ ├── dynarray.h │ │ ├── mp4vrfileexport.h │ │ ├── optional.h │ │ ├── optional.icpp │ │ ├── union.h │ │ ├── union.icpp │ │ └── unionhelpers.h │ ├── reader │ │ ├── .gitkeep │ │ ├── mp4vrfileallocator.h │ │ ├── mp4vrfiledatatypes.h │ │ ├── mp4vrfilereaderinterface.h │ │ └── mp4vrfilestreaminterface.h │ └── streamsegmenter │ │ ├── .gitkeep │ │ ├── autosegmenter.hpp │ │ ├── exceptions.hpp │ │ ├── frame.hpp │ │ ├── frameproxy.hpp │ │ ├── id.hpp │ │ ├── mpdtree.hpp │ │ ├── optional.hpp │ │ ├── rational.hpp │ │ ├── segmenterapi.hpp │ │ ├── track.hpp │ │ └── union.hpp │ ├── buildinfo │ ├── .gitkeep │ └── buildinfo.hpp.in │ ├── common │ ├── CMakeLists.txt │ ├── alternateitemsgroupbox.cpp │ ├── alternateitemsgroupbox.hpp │ ├── androidhacks.hpp │ ├── audiosampleentrybox.cpp │ ├── audiosampleentrybox.hpp │ ├── avccommondefs.hpp │ ├── avcconfigurationbox.cpp │ ├── avcconfigurationbox.hpp │ ├── avcdecoderconfigrecord.cpp │ ├── avcdecoderconfigrecord.hpp │ ├── avcparser.cpp │ ├── avcparser.hpp │ ├── avcsampleentry.cpp │ ├── avcsampleentry.hpp │ ├── bbox.cpp │ ├── bbox.hpp │ ├── bitstream.cpp │ ├── bitstream.hpp │ ├── brandandcompatiblebrandsbasebox.cpp │ ├── brandandcompatiblebrandsbasebox.hpp │ ├── channellayoutbox.cpp │ ├── channellayoutbox.hpp │ ├── chunkoffsetbox.cpp │ ├── chunkoffsetbox.hpp │ ├── cleanaperturebox.cpp │ ├── cleanaperturebox.hpp │ ├── commontypes.cpp │ ├── compatibleschemetypebox.cpp │ ├── compatibleschemetypebox.hpp │ ├── compositionoffsetbox.cpp │ ├── compositionoffsetbox.hpp │ ├── compositiontodecodebox.cpp │ ├── compositiontodecodebox.hpp │ ├── coverageinformationbox.cpp │ ├── coverageinformationbox.hpp │ ├── customallocator.cpp │ ├── customallocator.hpp │ ├── datainformationbox.cpp │ ├── datainformationbox.hpp │ ├── datareferencebox.cpp │ ├── datareferencebox.hpp │ ├── decodepts.cpp │ ├── decodepts.hpp │ ├── decoderconfigrecord.hpp │ ├── dynamicviewpointsampleentrybox.cpp │ ├── dynamicviewpointsampleentrybox.hpp │ ├── dynarrayimpl.hpp │ ├── editbox.cpp │ ├── editbox.hpp │ ├── elementarystreamdescriptorbox.cpp │ ├── elementarystreamdescriptorbox.hpp │ ├── entitytogroupbox.cpp │ ├── entitytogroupbox.hpp │ ├── filetypebox.cpp │ ├── filetypebox.hpp │ ├── fourccint.cpp │ ├── fourccint.hpp │ ├── fullbox.cpp │ ├── fullbox.hpp │ ├── googlecubemapprojectionbox.cpp │ ├── googlecubemapprojectionbox.hpp │ ├── googleequirectangularprojectionbox.cpp │ ├── googleequirectangularprojectionbox.hpp │ ├── googlenondiegeticaudiobox.cpp │ ├── googlenondiegeticaudiobox.hpp │ ├── googleprojectionbox.cpp │ ├── googleprojectionbox.hpp │ ├── googleprojectiondatabox.cpp │ ├── googleprojectiondatabox.hpp │ ├── googleprojectionheaderbox.cpp │ ├── googleprojectionheaderbox.hpp │ ├── googlespatialaudiobox.cpp │ ├── googlespatialaudiobox.hpp │ ├── googlesphericalvideoheaderbox.cpp │ ├── googlesphericalvideoheaderbox.hpp │ ├── googlesphericalvideov1box.cpp │ ├── googlesphericalvideov1box.hpp │ ├── googlesphericalvideov2box.cpp │ ├── googlesphericalvideov2box.hpp │ ├── googlestereoscopic3dbox.cpp │ ├── googlestereoscopic3dbox.hpp │ ├── groupslistbox.cpp │ ├── groupslistbox.hpp │ ├── handlerbox.cpp │ ├── handlerbox.hpp │ ├── hevccommondefs.hpp │ ├── hevcconfigurationbox.cpp │ ├── hevcconfigurationbox.hpp │ ├── hevcdecoderconfigrecord.cpp │ ├── hevcdecoderconfigrecord.hpp │ ├── hevcsampleentry.cpp │ ├── hevcsampleentry.hpp │ ├── initialviewingorientationsampleentry.cpp │ ├── initialviewingorientationsampleentry.hpp │ ├── initialviewpointsampleentrybox.cpp │ ├── initialviewpointsampleentrybox.hpp │ ├── itemdatabox.cpp │ ├── itemdatabox.hpp │ ├── iteminfobox.cpp │ ├── iteminfobox.hpp │ ├── itemlocationbox.cpp │ ├── itemlocationbox.hpp │ ├── itemprotectionbox.cpp │ ├── itemprotectionbox.hpp │ ├── itemreferencebox.cpp │ ├── itemreferencebox.hpp │ ├── log.cpp │ ├── log.hpp │ ├── mediabox.cpp │ ├── mediabox.hpp │ ├── mediadatabox.cpp │ ├── mediadatabox.hpp │ ├── mediaheaderbox.cpp │ ├── mediaheaderbox.hpp │ ├── mediainformationbox.cpp │ ├── mediainformationbox.hpp │ ├── mediatypedefs.hpp │ ├── metabox.cpp │ ├── metabox.hpp │ ├── metadatasampleentrybox.cpp │ ├── metadatasampleentrybox.hpp │ ├── moviebox.cpp │ ├── moviebox.hpp │ ├── movieextendsbox.cpp │ ├── movieextendsbox.hpp │ ├── movieextendsheaderbox.cpp │ ├── movieextendsheaderbox.hpp │ ├── moviefragmentbox.cpp │ ├── moviefragmentbox.hpp │ ├── moviefragmentheaderbox.cpp │ ├── moviefragmentheaderbox.hpp │ ├── moviefragmentsdatatypes.hpp │ ├── movieheaderbox.cpp │ ├── movieheaderbox.hpp │ ├── mp4audiodecoderconfigrecord.cpp │ ├── mp4audiodecoderconfigrecord.hpp │ ├── mp4audiosampleentrybox.cpp │ ├── mp4audiosampleentrybox.hpp │ ├── mp4visualsampleentrybox.cpp │ ├── mp4visualsampleentrybox.hpp │ ├── nalutil.cpp │ ├── nalutil.hpp │ ├── nullmediaheaderbox.cpp │ ├── nullmediaheaderbox.hpp │ ├── originalformatbox.cpp │ ├── originalformatbox.hpp │ ├── overlayandbackgroundgroupingbox.cpp │ ├── overlayandbackgroundgroupingbox.hpp │ ├── overlayconfigbox.cpp │ ├── overlayconfigbox.hpp │ ├── overlaysampleentrybox.cpp │ ├── overlaysampleentrybox.hpp │ ├── overlayswitchalternativesbox.cpp │ ├── overlayswitchalternativesbox.hpp │ ├── primaryitembox.cpp │ ├── primaryitembox.hpp │ ├── projectedomnivideobox.cpp │ ├── projectedomnivideobox.hpp │ ├── projectionformatbox.cpp │ ├── projectionformatbox.hpp │ ├── protectionschemeinfobox.cpp │ ├── protectionschemeinfobox.hpp │ ├── recommendedviewportinfobox.cpp │ ├── recommendedviewportinfobox.hpp │ ├── recommendedviewportsampleentry.cpp │ ├── recommendedviewportsampleentry.hpp │ ├── regionwisepackingbox.cpp │ ├── regionwisepackingbox.hpp │ ├── restrictedschemeinfobox.cpp │ ├── restrictedschemeinfobox.hpp │ ├── rotationbox.cpp │ ├── rotationbox.hpp │ ├── sampledescriptionbox.cpp │ ├── sampledescriptionbox.hpp │ ├── sampleentrybox.cpp │ ├── sampleentrybox.hpp │ ├── samplegroupdescriptionbox.cpp │ ├── samplegroupdescriptionbox.hpp │ ├── samplegroupentry.cpp │ ├── samplegroupentry.hpp │ ├── samplesizebox.cpp │ ├── samplesizebox.hpp │ ├── sampletablebox.cpp │ ├── sampletablebox.hpp │ ├── sampletochunkbox.cpp │ ├── sampletochunkbox.hpp │ ├── sampletogroupbox.cpp │ ├── sampletogroupbox.hpp │ ├── samplingratebox.cpp │ ├── samplingratebox.hpp │ ├── schemetypebox.cpp │ ├── schemetypebox.hpp │ ├── segmentindexbox.cpp │ ├── segmentindexbox.hpp │ ├── segmenttypebox.cpp │ ├── segmenttypebox.hpp │ ├── smallvector.hpp │ ├── soundmediaheaderbox.cpp │ ├── soundmediaheaderbox.hpp │ ├── spatialrelationship2ddescriptionbox.cpp │ ├── spatialrelationship2ddescriptionbox.hpp │ ├── spatialrelationship2dsourcebox.cpp │ ├── spatialrelationship2dsourcebox.hpp │ ├── sphereregionconfigbox.cpp │ ├── sphereregionconfigbox.hpp │ ├── sphereregionsampleentrybox.cpp │ ├── sphereregionsampleentrybox.hpp │ ├── stereovideobox.cpp │ ├── stereovideobox.hpp │ ├── subpictureregionbox.cpp │ ├── subpictureregionbox.hpp │ ├── syncsamplebox.cpp │ ├── syncsamplebox.hpp │ ├── timetosamplebox.cpp │ ├── timetosamplebox.hpp │ ├── trackbox.cpp │ ├── trackbox.hpp │ ├── trackextendsbox.cpp │ ├── trackextendsbox.hpp │ ├── trackfragmentbasemediadecodetimebox.cpp │ ├── trackfragmentbasemediadecodetimebox.hpp │ ├── trackfragmentbox.cpp │ ├── trackfragmentbox.hpp │ ├── trackfragmentheaderbox.cpp │ ├── trackfragmentheaderbox.hpp │ ├── trackgroupbox.cpp │ ├── trackgroupbox.hpp │ ├── trackgrouptypebox.cpp │ ├── trackgrouptypebox.hpp │ ├── trackheaderbox.cpp │ ├── trackheaderbox.hpp │ ├── trackreferencebox.cpp │ ├── trackreferencebox.hpp │ ├── trackreferencetypebox.cpp │ ├── trackreferencetypebox.hpp │ ├── trackrunbox.cpp │ ├── trackrunbox.hpp │ ├── tracktypebox.cpp │ ├── tracktypebox.hpp │ ├── uribox.cpp │ ├── uribox.hpp │ ├── uriinitbox.cpp │ ├── uriinitbox.hpp │ ├── urimetasampleentrybox.cpp │ ├── urimetasampleentrybox.hpp │ ├── userdatabox.cpp │ ├── userdatabox.hpp │ ├── videomediaheaderbox.cpp │ ├── videomediaheaderbox.hpp │ ├── viewpointentitygroupbox.cpp │ ├── viewpointentitygroupbox.hpp │ ├── visualsampleentrybox.cpp │ ├── visualsampleentrybox.hpp │ ├── writeoncemap.hpp │ ├── xmlbox.cpp │ └── xmlbox.hpp │ ├── jsonlib │ ├── CMakeLists.txt │ ├── json-forwards.hh │ ├── json.cc │ └── json.hh │ ├── reader │ ├── CMakeLists.txt │ ├── mp4vrfiledatatypes.cpp │ ├── mp4vrfiledatatypesinternal.hpp │ ├── mp4vrfilereaderaccessors.cpp │ ├── mp4vrfilereaderimpl.cpp │ ├── mp4vrfilereaderimpl.hpp │ ├── mp4vrfilereaderutil.cpp │ ├── mp4vrfilereaderutil.hpp │ ├── mp4vrfilesegment.cpp │ ├── mp4vrfilesegment.hpp │ ├── mp4vrfilestreamfile.cpp │ ├── mp4vrfilestreamfile.hpp │ ├── mp4vrfilestreamgeneric.cpp │ ├── mp4vrfilestreamgeneric.hpp │ ├── mp4vrfilestreaminterface.cpp │ ├── mp4vrfilestreaminternal.cpp │ ├── mp4vrfilestreaminternal.hpp │ ├── mp4vrfilestreamlinux.cpp │ ├── mp4vrfilestreamlinux.hpp │ ├── mp4vrhvc2extractor.cpp │ └── mp4vrhvc2extractor.hpp │ └── streamsegmenter │ ├── CMakeLists.txt │ ├── autosegmenter.cpp │ ├── autosegmenterimpl.hpp │ ├── block.cpp │ ├── block.hpp │ ├── config.cpp │ ├── config.hpp │ ├── debug.cpp │ ├── debug.hpp │ ├── decodeptsutils.cpp │ ├── decodeptsutils.hpp │ ├── exceptions.cpp │ ├── frame.cpp │ ├── frameproxy.cpp │ ├── memistreambuf.cpp │ ├── memistreambuf.hpp │ ├── mp4access.cpp │ ├── mp4access.hpp │ ├── mpdtree.cpp │ ├── private.hpp │ ├── segmenter.cpp │ ├── segmenter.hpp │ ├── segmenterapi.cpp │ ├── tool.cpp │ ├── track.cpp │ ├── utils.cpp │ └── utils.hpp ├── OpenGLExt ├── KHR │ └── .gitkeep ├── Readme.txt ├── gl │ └── .gitkeep └── wgl │ └── .gitkeep ├── Player ├── .gitkeep ├── CMakeLists.txt ├── CMakeLists_ANDROID.cmake ├── CMakeLists_MSVC.cmake ├── Sources │ ├── .gitkeep │ ├── API │ │ ├── .gitkeep │ │ ├── OMAFIArray.h │ │ ├── OMAFIDataBuffer.h │ │ ├── OMAFPlayer.h │ │ ├── OMAFPlayerDataTypes.h │ │ └── OMAFPlayerPlatformParameters.h │ ├── CMakeLists.txt │ ├── Core │ │ ├── .gitkeep │ │ ├── Foundation │ │ │ ├── .gitkeep │ │ │ ├── Android │ │ │ │ ├── .gitkeep │ │ │ │ ├── NVRAndroid.cpp │ │ │ │ ├── NVRAndroid.h │ │ │ │ ├── NVRAndroidHttpConnection.cpp │ │ │ │ ├── NVRAndroidHttpConnection.h │ │ │ │ ├── NVRAssetManager.cpp │ │ │ │ ├── NVRBandwidthMonitorAndroid.cpp │ │ │ │ ├── NVRBandwidthMonitorAndroid.h │ │ │ │ ├── NVRCompatibility.cpp │ │ │ │ ├── NVRCompatibility.h │ │ │ │ ├── NVRDeviceInfo.cpp │ │ │ │ ├── NVRDiskManager.cpp │ │ │ │ ├── NVRLogger.cpp │ │ │ │ └── NVRStorageManager.cpp │ │ │ ├── NVRAlignment.cpp │ │ │ ├── NVRAlignment.h │ │ │ ├── NVRArray.h │ │ │ ├── NVRArrayImpl.h │ │ │ ├── NVRAssert.cpp │ │ │ ├── NVRAssert.h │ │ │ ├── NVRAssetFileStream.cpp │ │ │ ├── NVRAssetFileStream.h │ │ │ ├── NVRAssetManager.h │ │ │ ├── NVRAtomic.h │ │ │ ├── NVRAtomicBoolean.h │ │ │ ├── NVRAtomicBooleanImpl.h │ │ │ ├── NVRAtomicInteger.h │ │ │ ├── NVRAtomicIntegerImpl.h │ │ │ ├── NVRBandwidthMonitor.cpp │ │ │ ├── NVRBandwidthMonitor.h │ │ │ ├── NVRBase64.cpp │ │ │ ├── NVRBase64.h │ │ │ ├── NVRBuild.h │ │ │ ├── NVRClock.cpp │ │ │ ├── NVRClock.h │ │ │ ├── NVRCompatibility.h │ │ │ ├── NVRConditionVariable.cpp │ │ │ ├── NVRConditionVariable.h │ │ │ ├── NVRConstruct.h │ │ │ ├── NVRDataBuffer.h │ │ │ ├── NVRDataBufferImpl.h │ │ │ ├── NVRDelegate.h │ │ │ ├── NVRDependencies.h │ │ │ ├── NVRDeviceInfo.h │ │ │ ├── NVRDiskFileStream.cpp │ │ │ ├── NVRDiskFileStream.h │ │ │ ├── NVRDiskManager.h │ │ │ ├── NVRElapsedTimer.cpp │ │ │ ├── NVRElapsedTimer.h │ │ │ ├── NVREvent.cpp │ │ │ ├── NVREvent.h │ │ │ ├── NVRFNVHash.h │ │ │ ├── NVRFileStream.cpp │ │ │ ├── NVRFileStream.h │ │ │ ├── NVRFileSystem.cpp │ │ │ ├── NVRFileSystem.h │ │ │ ├── NVRFileUtilities.cpp │ │ │ ├── NVRFileUtilities.h │ │ │ ├── NVRFixedArray.h │ │ │ ├── NVRFixedArrayImpl.h │ │ │ ├── NVRFixedQueue.h │ │ │ ├── NVRFixedQueueImpl.h │ │ │ ├── NVRFixedString.h │ │ │ ├── NVRFixedStringImpl.h │ │ │ ├── NVRHandle.h │ │ │ ├── NVRHandleAllocator.h │ │ │ ├── NVRHashFunctions.cpp │ │ │ ├── NVRHashFunctions.h │ │ │ ├── NVRHashFunctionsImpl.h │ │ │ ├── NVRHashMap.h │ │ │ ├── NVRHashMapImpl.h │ │ │ ├── NVRHttp.cpp │ │ │ ├── NVRHttp.h │ │ │ ├── NVRHttpConnection.h │ │ │ ├── NVRHttpHeaderList.cpp │ │ │ ├── NVRHttpHeaderList.h │ │ │ ├── NVRJsonArray.cpp │ │ │ ├── NVRJsonArray.h │ │ │ ├── NVRJsonObject.cpp │ │ │ ├── NVRJsonObject.h │ │ │ ├── NVRLogger.cpp │ │ │ ├── NVRLogger.h │ │ │ ├── NVRMallocAllocator.cpp │ │ │ ├── NVRMallocAllocator.h │ │ │ ├── NVRMemoryAllocator.cpp │ │ │ ├── NVRMemoryAllocator.h │ │ │ ├── NVRMemorySystem.cpp │ │ │ ├── NVRMemorySystem.h │ │ │ ├── NVRMemoryUtilities.cpp │ │ │ ├── NVRMemoryUtilities.h │ │ │ ├── NVRMutex.cpp │ │ │ ├── NVRMutex.h │ │ │ ├── NVRNew.h │ │ │ ├── NVRNonCopyable.h │ │ │ ├── NVRPair.h │ │ │ ├── NVRPathName.h │ │ │ ├── NVRPerformanceLogger.cpp │ │ │ ├── NVRPerformanceLogger.h │ │ │ ├── NVRRandom.cpp │ │ │ ├── NVRRandom.h │ │ │ ├── NVRReadWriteLock.cpp │ │ │ ├── NVRReadWriteLock.h │ │ │ ├── NVRSampleProfiler.h │ │ │ ├── NVRSampleProfilerImpl.h │ │ │ ├── NVRSecurity.h │ │ │ ├── NVRSemaphore.cpp │ │ │ ├── NVRSemaphore.h │ │ │ ├── NVRSpinlock.cpp │ │ │ ├── NVRSpinlock.h │ │ │ ├── NVRStorageFileStream.cpp │ │ │ ├── NVRStorageFileStream.h │ │ │ ├── NVRStorageManager.h │ │ │ ├── NVRString.cpp │ │ │ ├── NVRString.h │ │ │ ├── NVRStringUtilities.cpp │ │ │ ├── NVRStringUtilities.h │ │ │ ├── NVRThread.cpp │ │ │ ├── NVRThread.h │ │ │ ├── NVRThreadLocalStorage.cpp │ │ │ ├── NVRThreadLocalStorage.h │ │ │ ├── NVRThreadOperation.cpp │ │ │ ├── NVRThreadOperation.h │ │ │ ├── NVRTime.cpp │ │ │ ├── NVRTime.h │ │ │ ├── NVRTraits.h │ │ │ ├── NVRUri.cpp │ │ │ ├── NVRUri.h │ │ │ ├── NVRUriTools.cpp │ │ │ ├── NVRUriTools.h │ │ │ └── Windows │ │ │ │ ├── .gitkeep │ │ │ │ ├── NVRAssetManager.cpp │ │ │ │ ├── NVRBandwidthMonitorWindows.cpp │ │ │ │ ├── NVRBandwidthMonitorWindows.h │ │ │ │ ├── NVRCompatibility.cpp │ │ │ │ ├── NVRCompatibility.h │ │ │ │ ├── NVRDeviceInfo.cpp │ │ │ │ ├── NVRDiskManager.cpp │ │ │ │ ├── NVRHttpConnection.cpp │ │ │ │ ├── NVRLogger.cpp │ │ │ │ └── NVRStorageManager.cpp │ │ ├── Graphics │ │ │ ├── .gitkeep │ │ │ ├── Android │ │ │ │ ├── .gitkeep │ │ │ │ └── NVRDisplay.cpp │ │ │ ├── D3D11 │ │ │ │ ├── .gitkeep │ │ │ │ ├── NVRD3D11Error.h │ │ │ │ ├── NVRD3D11Utilities.cpp │ │ │ │ ├── NVRD3D11Utilities.h │ │ │ │ ├── NVRIndexBufferD3D11.cpp │ │ │ │ ├── NVRIndexBufferD3D11.h │ │ │ │ ├── NVRRenderContextD3D11.cpp │ │ │ │ ├── NVRRenderContextD3D11.h │ │ │ │ ├── NVRRenderTargetD311D.cpp │ │ │ │ ├── NVRRenderTargetD3D11.h │ │ │ │ ├── NVRShaderConstantD3D11.cpp │ │ │ │ ├── NVRShaderConstantD3D11.h │ │ │ │ ├── NVRShaderD3D11.cpp │ │ │ │ ├── NVRShaderD3D11.h │ │ │ │ ├── NVRTextureD3D11.cpp │ │ │ │ ├── NVRTextureD3D11.h │ │ │ │ ├── NVRVertexBufferD3D11.cpp │ │ │ │ └── NVRVertexBufferD3D11.h │ │ │ ├── NVRBlendEquation.h │ │ │ ├── NVRBlendFunction.h │ │ │ ├── NVRBlendState.cpp │ │ │ ├── NVRBlendState.h │ │ │ ├── NVRBufferAccess.h │ │ │ ├── NVRClearMask.h │ │ │ ├── NVRColor.h │ │ │ ├── NVRColorMask.h │ │ │ ├── NVRColorSpace.h │ │ │ ├── NVRComputeBufferAccess.h │ │ │ ├── NVRConfig.h │ │ │ ├── NVRCullMode.h │ │ │ ├── NVRDebugCharacterSet.h │ │ │ ├── NVRDebugMode.h │ │ │ ├── NVRDebugTextLayer.cpp │ │ │ ├── NVRDebugTextLayer.h │ │ │ ├── NVRDependencies.h │ │ │ ├── NVRDepthFunction.h │ │ │ ├── NVRDepthMask.h │ │ │ ├── NVRDepthStencilState.cpp │ │ │ ├── NVRDepthStencilState.h │ │ │ ├── NVRDiscardMask.h │ │ │ ├── NVRDisplay.h │ │ │ ├── NVRFillMode.h │ │ │ ├── NVRFrontFace.h │ │ │ ├── NVRGraphicsAPIDetection.h │ │ │ ├── NVRHandles.h │ │ │ ├── NVRIRenderContext.cpp │ │ │ ├── NVRIRenderContext.h │ │ │ ├── NVRIndexBufferFormat.cpp │ │ │ ├── NVRIndexBufferFormat.h │ │ │ ├── NVRPrimitiveType.h │ │ │ ├── NVRRasterizerState.cpp │ │ │ ├── NVRRasterizerState.h │ │ │ ├── NVRRenderBackend.cpp │ │ │ ├── NVRRenderBackend.h │ │ │ ├── NVRRendererType.h │ │ │ ├── NVRResourceDescriptors.h │ │ │ ├── NVRResourceHandleAllocators.h │ │ │ ├── NVRSamplerState.cpp │ │ │ ├── NVRSamplerState.h │ │ │ ├── NVRScissors.h │ │ │ ├── NVRShaderConstantType.h │ │ │ ├── NVRStencilFunction.h │ │ │ ├── NVRStencilOperation.h │ │ │ ├── NVRStreamBuffer.h │ │ │ ├── NVRTextureAddressMode.h │ │ │ ├── NVRTextureFilterMode.h │ │ │ ├── NVRTextureFormat.cpp │ │ │ ├── NVRTextureFormat.h │ │ │ ├── NVRTextureType.h │ │ │ ├── NVRVertexAttributeFormat.cpp │ │ │ ├── NVRVertexAttributeFormat.h │ │ │ ├── NVRVertexDeclaration.cpp │ │ │ ├── NVRVertexDeclaration.h │ │ │ ├── NVRViewport.h │ │ │ ├── Null │ │ │ │ ├── .gitkeep │ │ │ │ ├── NVRRenderContextNull.cpp │ │ │ │ └── NVRRenderContextNull.h │ │ │ ├── OpenGL │ │ │ │ ├── .gitkeep │ │ │ │ ├── NVRGLCompatibility.h │ │ │ │ ├── NVRGLContext.cpp │ │ │ │ ├── NVRGLContext.h │ │ │ │ ├── NVRGLError.cpp │ │ │ │ ├── NVRGLError.h │ │ │ │ ├── NVRGLExtensionList.h │ │ │ │ ├── NVRGLExtensions.cpp │ │ │ │ ├── NVRGLExtensions.h │ │ │ │ ├── NVRGLUtilities.cpp │ │ │ │ ├── NVRGLUtilities.h │ │ │ │ ├── NVRIndexBufferGL.cpp │ │ │ │ ├── NVRIndexBufferGL.h │ │ │ │ ├── NVRRenderContextGL.cpp │ │ │ │ ├── NVRRenderContextGL.h │ │ │ │ ├── NVRRenderTargetGL.cpp │ │ │ │ ├── NVRRenderTargetGL.h │ │ │ │ ├── NVRShaderConstantGL.cpp │ │ │ │ ├── NVRShaderConstantGL.h │ │ │ │ ├── NVRShaderGL.cpp │ │ │ │ ├── NVRShaderGL.h │ │ │ │ ├── NVRTextureGL.cpp │ │ │ │ ├── NVRTextureGL.h │ │ │ │ ├── NVRVertexBufferGL.cpp │ │ │ │ ├── NVRVertexBufferGL.h │ │ │ │ └── Windows │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── NVRGLFunctions.cpp │ │ │ │ │ ├── NVRGLFunctions.h │ │ │ │ │ └── NVRGLFunctions.inc │ │ │ └── Windows │ │ │ │ ├── .gitkeep │ │ │ │ └── NVRDisplay.cpp │ │ ├── NVREssentials.h │ │ ├── NVRGraphics.h │ │ └── NVRNamespace.h │ ├── Math │ │ ├── .gitkeep │ │ ├── OMAFAxisAngle.h │ │ ├── OMAFColor3.h │ │ ├── OMAFColor4.h │ │ ├── OMAFMath.h │ │ ├── OMAFMathConstants.h │ │ ├── OMAFMathFunctions.h │ │ ├── OMAFMathTypes.h │ │ ├── OMAFMatrix33.h │ │ ├── OMAFMatrix44.h │ │ ├── OMAFPoint.h │ │ ├── OMAFQuaternion.h │ │ ├── OMAFRect.h │ │ ├── OMAFSize.h │ │ ├── OMAFVector2.h │ │ ├── OMAFVector3.h │ │ └── OMAFVector4.h │ ├── Platform │ │ ├── .gitkeep │ │ ├── OMAFCompiler.h │ │ ├── OMAFDataTypes.h │ │ └── OMAFPlatformDetection.h │ ├── Player │ │ ├── .gitkeep │ │ ├── API │ │ │ ├── .gitkeep │ │ │ ├── OMAFDataTypeConversions.cpp │ │ │ ├── OMAFDataTypeConversions.h │ │ │ ├── OMAFPlayerPrivate.cpp │ │ │ └── OMAFPlayerPrivate.h │ │ ├── Audio │ │ │ ├── .gitkeep │ │ │ ├── NVRAACAudioRenderer.cpp │ │ │ ├── NVRAACAudioRenderer.h │ │ │ ├── NVRAudioBackend.h │ │ │ ├── NVRAudioInputBuffer.h │ │ │ ├── NVRAudioRendererAPI.h │ │ │ ├── NVRAudioRendererObserver.h │ │ │ ├── NVRAudioTypes.h │ │ │ ├── NVRNullAudioBackend.cpp │ │ │ ├── NVRNullAudioBackend.h │ │ │ └── WASAPI │ │ │ │ ├── AACDecoder.cpp │ │ │ │ ├── AACDecoder.h │ │ │ │ ├── Context.cpp │ │ │ │ ├── Context.h │ │ │ │ ├── Endpoint.h │ │ │ │ ├── NVRWasapi.cpp │ │ │ │ ├── NVRWasapi.h │ │ │ │ ├── NullDevice.cpp │ │ │ │ ├── NullDevice.h │ │ │ │ ├── WasapiDevice.cpp │ │ │ │ └── WasapiDevice.h │ │ ├── DashProvider │ │ │ ├── .gitkeep │ │ │ ├── NVRDashAdaptationSet.cpp │ │ │ ├── NVRDashAdaptationSet.h │ │ │ ├── NVRDashAdaptationSetAudio.cpp │ │ │ ├── NVRDashAdaptationSetAudio.h │ │ │ ├── NVRDashAdaptationSetExtractor.cpp │ │ │ ├── NVRDashAdaptationSetExtractor.h │ │ │ ├── NVRDashAdaptationSetExtractorDepId.cpp │ │ │ ├── NVRDashAdaptationSetExtractorDepId.h │ │ │ ├── NVRDashAdaptationSetExtractorMR.cpp │ │ │ ├── NVRDashAdaptationSetExtractorMR.h │ │ │ ├── NVRDashAdaptationSetOverlay.cpp │ │ │ ├── NVRDashAdaptationSetOverlay.h │ │ │ ├── NVRDashAdaptationSetOverlayMeta.cpp │ │ │ ├── NVRDashAdaptationSetOverlayMeta.h │ │ │ ├── NVRDashAdaptationSetSubPicture.cpp │ │ │ ├── NVRDashAdaptationSetSubPicture.h │ │ │ ├── NVRDashAdaptationSetTile.cpp │ │ │ ├── NVRDashAdaptationSetTile.h │ │ │ ├── NVRDashAdaptationSetViewportDep.cpp │ │ │ ├── NVRDashAdaptationSetViewportDep.h │ │ │ ├── NVRDashBitrateController.cpp │ │ │ ├── NVRDashBitrateController.h │ │ │ ├── NVRDashDownloadManager.cpp │ │ │ ├── NVRDashDownloadManager.h │ │ │ ├── NVRDashIssueType.h │ │ │ ├── NVRDashLog.h │ │ │ ├── NVRDashMediaSegment.cpp │ │ │ ├── NVRDashMediaSegment.h │ │ │ ├── NVRDashMediaStream.cpp │ │ │ ├── NVRDashMediaStream.h │ │ │ ├── NVRDashOptions.h │ │ │ ├── NVRDashPeriodViewpoint.cpp │ │ │ ├── NVRDashPeriodViewpoint.h │ │ │ ├── NVRDashProvider.cpp │ │ │ ├── NVRDashProvider.h │ │ │ ├── NVRDashRepresentation.cpp │ │ │ ├── NVRDashRepresentation.h │ │ │ ├── NVRDashRepresentationExtractor.cpp │ │ │ ├── NVRDashRepresentationExtractor.h │ │ │ ├── NVRDashRepresentationOverlay.cpp │ │ │ ├── NVRDashRepresentationOverlay.h │ │ │ ├── NVRDashRepresentationTile.cpp │ │ │ ├── NVRDashRepresentationTile.h │ │ │ ├── NVRDashSegmentStream.cpp │ │ │ ├── NVRDashSegmentStream.h │ │ │ ├── NVRDashSegmentStreamOnDemand.cpp │ │ │ ├── NVRDashSegmentStreamOnDemand.h │ │ │ ├── NVRDashSpeedFactorMonitor.cpp │ │ │ ├── NVRDashSpeedFactorMonitor.h │ │ │ ├── NVRDashTemplateStreamDynamic.cpp │ │ │ ├── NVRDashTemplateStreamDynamic.h │ │ │ ├── NVRDashTemplateStreamStatic.cpp │ │ │ ├── NVRDashTemplateStreamStatic.h │ │ │ ├── NVRDashUtils.cpp │ │ │ ├── NVRDashUtils.h │ │ │ ├── NVRDashVideoDownloader.cpp │ │ │ ├── NVRDashVideoDownloader.h │ │ │ ├── NVRDashVideoDownloaderExtractor.cpp │ │ │ ├── NVRDashVideoDownloaderExtractor.h │ │ │ ├── NVRDashVideoDownloaderExtractorDepId.cpp │ │ │ ├── NVRDashVideoDownloaderExtractorDepId.h │ │ │ ├── NVRDashVideoDownloaderExtractorMultiRes.cpp │ │ │ ├── NVRDashVideoDownloaderExtractorMultiRes.h │ │ │ ├── NVRDashViewpointInfo.h │ │ │ ├── NVRMPDAttributes.cpp │ │ │ ├── NVRMPDAttributes.h │ │ │ ├── NVRMPDExtension.cpp │ │ │ ├── NVRMPDExtension.h │ │ │ ├── NVRMPDOmafAttributes.cpp │ │ │ └── NVRMPDOmafAttributes.h │ │ ├── HeifProvider │ │ │ ├── NVRHeifFileStreamer.cpp │ │ │ ├── NVRHeifFileStreamer.h │ │ │ ├── NVRHeifImageStream.cpp │ │ │ ├── NVRHeifImageStream.h │ │ │ ├── NVRHeifMediaStreamManager.cpp │ │ │ ├── NVRHeifMediaStreamManager.h │ │ │ ├── NVRHeifParser.cpp │ │ │ ├── NVRHeifParser.h │ │ │ ├── NVRHeifProvider.cpp │ │ │ └── NVRHeifProvider.h │ │ ├── Media │ │ │ ├── .gitkeep │ │ │ ├── NVRAACAudioStream.h │ │ │ ├── NVRIMediaPacketQueue.h │ │ │ ├── NVRMP4AudioStream.cpp │ │ │ ├── NVRMP4AudioStream.h │ │ │ ├── NVRMP4FileStreamer.cpp │ │ │ ├── NVRMP4FileStreamer.h │ │ │ ├── NVRMP4MediaPacketQueue.h │ │ │ ├── NVRMP4MediaStream.cpp │ │ │ ├── NVRMP4MediaStream.h │ │ │ ├── NVRMP4MediaStreamManager.cpp │ │ │ ├── NVRMP4MediaStreamManager.h │ │ │ ├── NVRMP4Parser.cpp │ │ │ ├── NVRMP4Parser.h │ │ │ ├── NVRMP4ParserDatatypes.h │ │ │ ├── NVRMP4Segment.h │ │ │ ├── NVRMP4SegmentStreamer.cpp │ │ │ ├── NVRMP4SegmentStreamer.h │ │ │ ├── NVRMP4StreamManager.h │ │ │ ├── NVRMP4VideoStream.cpp │ │ │ ├── NVRMP4VideoStream.h │ │ │ ├── NVRMediaFormat.cpp │ │ │ ├── NVRMediaFormat.h │ │ │ ├── NVRMediaInformation.h │ │ │ ├── NVRMediaPacket.cpp │ │ │ ├── NVRMediaPacket.h │ │ │ ├── NVRMediaPacketQueue.cpp │ │ │ ├── NVRMediaPacketQueue.h │ │ │ ├── NVRMediaType.cpp │ │ │ ├── NVRMediaType.h │ │ │ └── NVRMimeType.h │ │ ├── Metadata │ │ │ ├── .gitkeep │ │ │ ├── NVRCubemapDefinitions.h │ │ │ ├── NVRMetadataParser.cpp │ │ │ ├── NVRMetadataParser.h │ │ │ ├── NVROmafMetadataHelper.cpp │ │ │ ├── NVROmafMetadataHelper.h │ │ │ ├── NVRViewpointCoordSysRotation.h │ │ │ ├── NVRViewpointSwitchConfig.h │ │ │ └── NVRViewpointUserAction.h │ │ ├── NVRErrorCodes.h │ │ ├── NVRPlayer.h │ │ ├── NVRSDKPrivate.cpp │ │ ├── Provider │ │ │ ├── .gitkeep │ │ │ ├── NVRCoreProvider.h │ │ │ ├── NVRCoreProviderSources.h │ │ │ ├── NVRMP4VRProvider.cpp │ │ │ ├── NVRMP4VRProvider.h │ │ │ ├── NVRProviderBase.cpp │ │ │ ├── NVRProviderBase.h │ │ │ ├── NVRSynchronizer.cpp │ │ │ ├── NVRSynchronizer.h │ │ │ ├── NVRVideoProvider.cpp │ │ │ └── NVRVideoProvider.h │ │ ├── Renderer │ │ │ ├── .gitkeep │ │ │ ├── NVRCubeMapMesh.cpp │ │ │ ├── NVRCubeMapMesh.h │ │ │ ├── NVRCubeMapRenderer.cpp │ │ │ ├── NVRCubeMapRenderer.h │ │ │ ├── NVREquirectangularMask.cpp │ │ │ ├── NVREquirectangularMask.h │ │ │ ├── NVREquirectangularMesh.cpp │ │ │ ├── NVREquirectangularMesh.h │ │ │ ├── NVREquirectangularRenderer.cpp │ │ │ ├── NVREquirectangularRenderer.h │ │ │ ├── NVREquirectangularTileRenderer.cpp │ │ │ ├── NVREquirectangularTileRenderer.h │ │ │ ├── NVRIdentityRenderer.cpp │ │ │ ├── NVRIdentityRenderer.h │ │ │ ├── NVRLensParameters.h │ │ │ ├── NVROverlayRenderer.cpp │ │ │ ├── NVROverlayRenderer.h │ │ │ ├── NVRRawRenderer.cpp │ │ │ ├── NVRRawRenderer.h │ │ │ ├── NVRRenderingManager.cpp │ │ │ ├── NVRRenderingManager.h │ │ │ ├── NVRRenderingManagerSettings.h │ │ │ ├── NVRVideoRenderer.cpp │ │ │ ├── NVRVideoRenderer.h │ │ │ ├── NVRVideoShader.cpp │ │ │ └── NVRVideoShader.h │ │ ├── VAS │ │ │ ├── .gitkeep │ │ │ ├── NVRLatencyLog.h │ │ │ ├── NVRVASLog.h │ │ │ ├── NVRVASTileContainer.cpp │ │ │ ├── NVRVASTileContainer.h │ │ │ ├── NVRVASTileDepIdPicker.cpp │ │ │ ├── NVRVASTileDepIdPicker.h │ │ │ ├── NVRVASTilePicker.cpp │ │ │ ├── NVRVASTilePicker.h │ │ │ ├── NVRVASTileSetPicker.cpp │ │ │ ├── NVRVASTileSetPicker.h │ │ │ ├── NVRVASViewport.cpp │ │ │ └── NVRVASViewport.h │ │ └── VideoDecoder │ │ │ ├── .gitkeep │ │ │ ├── Android │ │ │ ├── .gitkeep │ │ │ ├── NVRFrameCacheAndroid.cpp │ │ │ ├── NVRFrameCacheAndroid.h │ │ │ ├── NVRMediaCodecDecoder.cpp │ │ │ ├── NVRMediaCodecDecoder.h │ │ │ ├── NVRMediaCodecDecoderHW.cpp │ │ │ ├── NVRMediaCodecDecoderHW.h │ │ │ ├── NVRSurface.cpp │ │ │ ├── NVRSurface.h │ │ │ ├── NVRSurfaceTexture.cpp │ │ │ └── NVRSurfaceTexture.h │ │ │ ├── NVRDecodedFrameGroup.cpp │ │ │ ├── NVRDecodedFrameGroup.h │ │ │ ├── NVRFrameCache.cpp │ │ │ ├── NVRFrameCache.h │ │ │ ├── NVRFreeFrameGroup.cpp │ │ │ ├── NVRFreeFrameGroup.h │ │ │ ├── NVRVideoColorTypes.h │ │ │ ├── NVRVideoDecoderConfig.h │ │ │ ├── NVRVideoDecoderFrame.h │ │ │ ├── NVRVideoDecoderHW.h │ │ │ ├── NVRVideoDecoderManager.cpp │ │ │ ├── NVRVideoDecoderManager.h │ │ │ ├── NVRVideoDecoderTypes.h │ │ │ └── Windows │ │ │ ├── .gitkeep │ │ │ ├── NVRFrameCacheWindows.cpp │ │ │ ├── NVRFrameCacheWindows.h │ │ │ ├── NVRMediaFoundationDecoder.cpp │ │ │ ├── NVRMediaFoundationDecoder.h │ │ │ ├── NVRMediaFoundationDecoderHW.cpp │ │ │ └── NVRMediaFoundationDecoderHW.h │ └── buildinfo.hpp.in ├── VideoPlayback │ ├── Android │ │ └── Handheld │ │ │ ├── Assets │ │ │ ├── omaf_360.heic │ │ │ ├── omaf_360_heic_credits.txt │ │ │ └── place_the_video_file_for_samples_here.txt │ │ │ ├── app │ │ │ ├── CMakeLists.txt │ │ │ ├── app.iml │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── nokia │ │ │ │ │ └── omaf │ │ │ │ │ └── sample │ │ │ │ │ └── videoplayback │ │ │ │ │ └── handheld │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── VideoListActivity.java │ │ │ │ ├── jni │ │ │ │ └── ApplicationJNI.cpp │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── layout │ │ │ │ ├── activity_listview.xml │ │ │ │ └── activity_video_list.xml │ │ │ │ └── values │ │ │ │ ├── attrs.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── libraries │ │ │ ├── common │ │ │ │ └── common.iml │ │ │ └── libraries.iml │ │ │ └── settings.gradle │ └── Windows │ │ └── Monitor_Sample │ │ ├── GlFunctions.inc │ │ ├── Monitor_Sample.rc │ │ ├── Monitor_Sample.sln │ │ ├── Monitor_Sample.vcxproj │ │ ├── Monitor_Sample.vcxproj.filters │ │ ├── Source.cpp │ │ ├── dash-test-1.uri │ │ ├── omaf_360.heic │ │ ├── omaf_360_heic_credits.txt │ │ └── resource.h ├── build-android.sh └── build.bat └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/.gitattributes -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/.travis.yml -------------------------------------------------------------------------------- /Creator/build/build-vs2017.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/build/build-vs2017.bat -------------------------------------------------------------------------------- /Creator/build/build-vs2019.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/build/build-vs2019.bat -------------------------------------------------------------------------------- /Creator/build/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/build/build.bat -------------------------------------------------------------------------------- /Creator/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/build/build.sh -------------------------------------------------------------------------------- /Creator/doc/example-omaf-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/doc/example-omaf-configuration.json -------------------------------------------------------------------------------- /Creator/src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/.clang-format -------------------------------------------------------------------------------- /Creator/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/CMakeLists.txt -------------------------------------------------------------------------------- /Creator/src/async/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/CMakeLists.txt -------------------------------------------------------------------------------- /Creator/src/async/asyncnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/asyncnode.cpp -------------------------------------------------------------------------------- /Creator/src/async/asyncnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/asyncnode.h -------------------------------------------------------------------------------- /Creator/src/async/combinenode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/combinenode.cpp -------------------------------------------------------------------------------- /Creator/src/async/combinenode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/combinenode.h -------------------------------------------------------------------------------- /Creator/src/async/future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/future.cpp -------------------------------------------------------------------------------- /Creator/src/async/future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/future.h -------------------------------------------------------------------------------- /Creator/src/async/future.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/future.icpp -------------------------------------------------------------------------------- /Creator/src/async/futureops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/futureops.h -------------------------------------------------------------------------------- /Creator/src/async/futureops.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/futureops.icpp -------------------------------------------------------------------------------- /Creator/src/async/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/graph.h -------------------------------------------------------------------------------- /Creator/src/async/graphbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/graphbase.cpp -------------------------------------------------------------------------------- /Creator/src/async/graphbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/graphbase.h -------------------------------------------------------------------------------- /Creator/src/async/mediasteplock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/mediasteplock.cpp -------------------------------------------------------------------------------- /Creator/src/async/mediasteplock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/mediasteplock.h -------------------------------------------------------------------------------- /Creator/src/async/parallelgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/parallelgraph.cpp -------------------------------------------------------------------------------- /Creator/src/async/parallelgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/parallelgraph.h -------------------------------------------------------------------------------- /Creator/src/async/sequentialgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/sequentialgraph.cpp -------------------------------------------------------------------------------- /Creator/src/async/sequentialgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/sequentialgraph.h -------------------------------------------------------------------------------- /Creator/src/async/throttlenode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/throttlenode.cpp -------------------------------------------------------------------------------- /Creator/src/async/throttlenode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/async/throttlenode.h -------------------------------------------------------------------------------- /Creator/src/buildinfo/buildinfo.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/buildinfo/buildinfo.h.in -------------------------------------------------------------------------------- /Creator/src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /Creator/src/common/bitgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/common/bitgenerator.cpp -------------------------------------------------------------------------------- /Creator/src/common/bitgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/common/bitgenerator.h -------------------------------------------------------------------------------- /Creator/src/common/bitparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/common/bitparser.h -------------------------------------------------------------------------------- /Creator/src/common/bitparser.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/common/bitparser.icpp -------------------------------------------------------------------------------- /Creator/src/common/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/common/exceptions.cpp -------------------------------------------------------------------------------- /Creator/src/common/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/common/exceptions.h -------------------------------------------------------------------------------- /Creator/src/common/lazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/common/lazy.h -------------------------------------------------------------------------------- /Creator/src/common/lazy.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/common/lazy.icpp -------------------------------------------------------------------------------- /Creator/src/common/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/common/optional.h -------------------------------------------------------------------------------- /Creator/src/common/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/common/rational.h -------------------------------------------------------------------------------- /Creator/src/common/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/common/utils.cpp -------------------------------------------------------------------------------- /Creator/src/common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/common/utils.h -------------------------------------------------------------------------------- /Creator/src/concurrency/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/concurrency/CMakeLists.txt -------------------------------------------------------------------------------- /Creator/src/concurrency/threadedpoolprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/concurrency/threadedpoolprocessor.cpp -------------------------------------------------------------------------------- /Creator/src/concurrency/threadedpoolprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/concurrency/threadedpoolprocessor.h -------------------------------------------------------------------------------- /Creator/src/concurrency/threadedworkpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/concurrency/threadedworkpool.cpp -------------------------------------------------------------------------------- /Creator/src/concurrency/threadedworkpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/concurrency/threadedworkpool.h -------------------------------------------------------------------------------- /Creator/src/config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/config/CMakeLists.txt -------------------------------------------------------------------------------- /Creator/src/config/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/config/config.cpp -------------------------------------------------------------------------------- /Creator/src/config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/config/config.h -------------------------------------------------------------------------------- /Creator/src/config/config.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/config/config.icpp -------------------------------------------------------------------------------- /Creator/src/controller/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/CMakeLists.txt -------------------------------------------------------------------------------- /Creator/src/controller/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/audio.cpp -------------------------------------------------------------------------------- /Creator/src/controller/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/audio.h -------------------------------------------------------------------------------- /Creator/src/controller/codecinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/codecinfo.cpp -------------------------------------------------------------------------------- /Creator/src/controller/codecinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/codecinfo.h -------------------------------------------------------------------------------- /Creator/src/controller/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/common.h -------------------------------------------------------------------------------- /Creator/src/controller/common.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/common.icpp -------------------------------------------------------------------------------- /Creator/src/controller/configreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/configreader.h -------------------------------------------------------------------------------- /Creator/src/controller/controllerbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/controllerbase.cpp -------------------------------------------------------------------------------- /Creator/src/controller/controllerbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/controllerbase.h -------------------------------------------------------------------------------- /Creator/src/controller/controllerconfigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/controllerconfigure.cpp -------------------------------------------------------------------------------- /Creator/src/controller/controllerconfigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/controllerconfigure.h -------------------------------------------------------------------------------- /Creator/src/controller/controllerops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/controllerops.cpp -------------------------------------------------------------------------------- /Creator/src/controller/controllerops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/controllerops.h -------------------------------------------------------------------------------- /Creator/src/controller/controllerops.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/controllerops.icpp -------------------------------------------------------------------------------- /Creator/src/controller/controllerparsers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/controllerparsers.cpp -------------------------------------------------------------------------------- /Creator/src/controller/controllerparsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/controllerparsers.h -------------------------------------------------------------------------------- /Creator/src/controller/controllerparsers.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/controllerparsers.icpp -------------------------------------------------------------------------------- /Creator/src/controller/dash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/dash.cpp -------------------------------------------------------------------------------- /Creator/src/controller/dash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/dash.h -------------------------------------------------------------------------------- /Creator/src/controller/dashomaf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/dashomaf.cpp -------------------------------------------------------------------------------- /Creator/src/controller/dashomaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/dashomaf.h -------------------------------------------------------------------------------- /Creator/src/controller/googlevrvideoinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/googlevrvideoinput.cpp -------------------------------------------------------------------------------- /Creator/src/controller/googlevrvideoinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/googlevrvideoinput.h -------------------------------------------------------------------------------- /Creator/src/controller/mediainput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/mediainput.cpp -------------------------------------------------------------------------------- /Creator/src/controller/mediainput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/mediainput.h -------------------------------------------------------------------------------- /Creator/src/controller/mp4vromafinterpolate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/mp4vromafinterpolate.cpp -------------------------------------------------------------------------------- /Creator/src/controller/mp4vromafinterpolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/mp4vromafinterpolate.h -------------------------------------------------------------------------------- /Creator/src/controller/mp4vromafinterpolate.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/mp4vromafinterpolate.icpp -------------------------------------------------------------------------------- /Creator/src/controller/mp4vromafreaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/mp4vromafreaders.cpp -------------------------------------------------------------------------------- /Creator/src/controller/mp4vromafreaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/mp4vromafreaders.h -------------------------------------------------------------------------------- /Creator/src/controller/mp4vrwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/mp4vrwriter.cpp -------------------------------------------------------------------------------- /Creator/src/controller/mp4vrwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/mp4vrwriter.h -------------------------------------------------------------------------------- /Creator/src/controller/omafvdcontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/omafvdcontroller.cpp -------------------------------------------------------------------------------- /Creator/src/controller/omafvdcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/omafvdcontroller.h -------------------------------------------------------------------------------- /Creator/src/controller/omafviconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/omafviconfig.cpp -------------------------------------------------------------------------------- /Creator/src/controller/omafviconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/omafviconfig.h -------------------------------------------------------------------------------- /Creator/src/controller/omafvicontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/omafvicontroller.cpp -------------------------------------------------------------------------------- /Creator/src/controller/omafvicontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/omafvicontroller.h -------------------------------------------------------------------------------- /Creator/src/controller/overlays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/overlays.cpp -------------------------------------------------------------------------------- /Creator/src/controller/overlays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/overlays.h -------------------------------------------------------------------------------- /Creator/src/controller/pipelineclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/pipelineclass.h -------------------------------------------------------------------------------- /Creator/src/controller/pipelinemode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/pipelinemode.cpp -------------------------------------------------------------------------------- /Creator/src/controller/pipelinemode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/pipelinemode.h -------------------------------------------------------------------------------- /Creator/src/controller/pipelineoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/pipelineoutput.cpp -------------------------------------------------------------------------------- /Creator/src/controller/pipelineoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/pipelineoutput.h -------------------------------------------------------------------------------- /Creator/src/controller/timedmetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/timedmetadata.cpp -------------------------------------------------------------------------------- /Creator/src/controller/timedmetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/timedmetadata.h -------------------------------------------------------------------------------- /Creator/src/controller/videoinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/videoinput.cpp -------------------------------------------------------------------------------- /Creator/src/controller/videoinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/videoinput.h -------------------------------------------------------------------------------- /Creator/src/controller/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/view.cpp -------------------------------------------------------------------------------- /Creator/src/controller/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/view.h -------------------------------------------------------------------------------- /Creator/src/controller/viewpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/viewpoints.cpp -------------------------------------------------------------------------------- /Creator/src/controller/viewpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/controller/viewpoints.h -------------------------------------------------------------------------------- /Creator/src/jsonlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/jsonlib/CMakeLists.txt -------------------------------------------------------------------------------- /Creator/src/jsonlib/json-forwards.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/jsonlib/json-forwards.hh -------------------------------------------------------------------------------- /Creator/src/jsonlib/json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/jsonlib/json.cc -------------------------------------------------------------------------------- /Creator/src/jsonlib/json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/jsonlib/json.hh -------------------------------------------------------------------------------- /Creator/src/log/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/log/CMakeLists.txt -------------------------------------------------------------------------------- /Creator/src/log/consolelog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/log/consolelog.cpp -------------------------------------------------------------------------------- /Creator/src/log/consolelog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/log/consolelog.h -------------------------------------------------------------------------------- /Creator/src/log/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/log/log.cpp -------------------------------------------------------------------------------- /Creator/src/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/log/log.h -------------------------------------------------------------------------------- /Creator/src/log/loglevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/log/loglevel.h -------------------------------------------------------------------------------- /Creator/src/log/logstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/log/logstream.cpp -------------------------------------------------------------------------------- /Creator/src/log/logstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/log/logstream.h -------------------------------------------------------------------------------- /Creator/src/log/logstreambuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/log/logstreambuf.cpp -------------------------------------------------------------------------------- /Creator/src/log/logstreambuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/log/logstreambuf.h -------------------------------------------------------------------------------- /Creator/src/medialoader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/CMakeLists.txt -------------------------------------------------------------------------------- /Creator/src/medialoader/h265loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/h265loader.cpp -------------------------------------------------------------------------------- /Creator/src/medialoader/h265loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/h265loader.h -------------------------------------------------------------------------------- /Creator/src/medialoader/h265memoryinputstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/h265memoryinputstream.cpp -------------------------------------------------------------------------------- /Creator/src/medialoader/h265memoryinputstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/h265memoryinputstream.h -------------------------------------------------------------------------------- /Creator/src/medialoader/h265segmentedinputstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/h265segmentedinputstream.h -------------------------------------------------------------------------------- /Creator/src/medialoader/h265stdistream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/h265stdistream.cpp -------------------------------------------------------------------------------- /Creator/src/medialoader/h265stdistream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/h265stdistream.h -------------------------------------------------------------------------------- /Creator/src/medialoader/medialoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/medialoader.cpp -------------------------------------------------------------------------------- /Creator/src/medialoader/medialoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/medialoader.h -------------------------------------------------------------------------------- /Creator/src/medialoader/mp4loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/mp4loader.cpp -------------------------------------------------------------------------------- /Creator/src/medialoader/mp4loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/mp4loader.h -------------------------------------------------------------------------------- /Creator/src/medialoader/mp4vrfilestreamfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/mp4vrfilestreamfile.cpp -------------------------------------------------------------------------------- /Creator/src/medialoader/mp4vrfilestreamfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/mp4vrfilestreamfile.h -------------------------------------------------------------------------------- /Creator/src/medialoader/mp4vrfilestreamgeneric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/mp4vrfilestreamgeneric.cpp -------------------------------------------------------------------------------- /Creator/src/medialoader/mp4vrfilestreamgeneric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/mp4vrfilestreamgeneric.h -------------------------------------------------------------------------------- /Creator/src/medialoader/mp4vrfilestreamlinux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/mp4vrfilestreamlinux.cpp -------------------------------------------------------------------------------- /Creator/src/medialoader/mp4vrfilestreamlinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/medialoader/mp4vrfilestreamlinux.h -------------------------------------------------------------------------------- /Creator/src/omaf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/CMakeLists.txt -------------------------------------------------------------------------------- /Creator/src/omaf/extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/extractor.h -------------------------------------------------------------------------------- /Creator/src/omaf/omafconfiguratornode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/omafconfiguratornode.cpp -------------------------------------------------------------------------------- /Creator/src/omaf/omafconfiguratornode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/omafconfiguratornode.h -------------------------------------------------------------------------------- /Creator/src/omaf/omafproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/omafproperties.cpp -------------------------------------------------------------------------------- /Creator/src/omaf/omafproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/omafproperties.h -------------------------------------------------------------------------------- /Creator/src/omaf/omafviewingorientation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/omafviewingorientation.cpp -------------------------------------------------------------------------------- /Creator/src/omaf/omafviewingorientation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/omafviewingorientation.h -------------------------------------------------------------------------------- /Creator/src/omaf/parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/parser/CMakeLists.txt -------------------------------------------------------------------------------- /Creator/src/omaf/parser/bitstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/parser/bitstream.cpp -------------------------------------------------------------------------------- /Creator/src/omaf/parser/bitstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/parser/bitstream.hpp -------------------------------------------------------------------------------- /Creator/src/omaf/parser/h265datastructs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/parser/h265datastructs.hpp -------------------------------------------------------------------------------- /Creator/src/omaf/parser/h265parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/parser/h265parser.cpp -------------------------------------------------------------------------------- /Creator/src/omaf/parser/h265parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/parser/h265parser.hpp -------------------------------------------------------------------------------- /Creator/src/omaf/parser/parserinterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/parser/parserinterface.hpp -------------------------------------------------------------------------------- /Creator/src/omaf/tileconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/tileconfig.h -------------------------------------------------------------------------------- /Creator/src/omaf/tileconfigurations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/tileconfigurations.cpp -------------------------------------------------------------------------------- /Creator/src/omaf/tileconfigurations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/tileconfigurations.h -------------------------------------------------------------------------------- /Creator/src/omaf/tilefilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/tilefilter.cpp -------------------------------------------------------------------------------- /Creator/src/omaf/tilefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/tilefilter.h -------------------------------------------------------------------------------- /Creator/src/omaf/tileproducer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/tileproducer.cpp -------------------------------------------------------------------------------- /Creator/src/omaf/tileproducer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/tileproducer.h -------------------------------------------------------------------------------- /Creator/src/omaf/tileproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/tileproxy.cpp -------------------------------------------------------------------------------- /Creator/src/omaf/tileproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/tileproxy.h -------------------------------------------------------------------------------- /Creator/src/omaf/tileproxymultires.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/tileproxymultires.cpp -------------------------------------------------------------------------------- /Creator/src/omaf/tileproxymultires.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/tileproxymultires.h -------------------------------------------------------------------------------- /Creator/src/omaf/tileutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/tileutil.cpp -------------------------------------------------------------------------------- /Creator/src/omaf/tileutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/omaf/tileutil.h -------------------------------------------------------------------------------- /Creator/src/processor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/CMakeLists.txt -------------------------------------------------------------------------------- /Creator/src/processor/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/data.cpp -------------------------------------------------------------------------------- /Creator/src/processor/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/data.h -------------------------------------------------------------------------------- /Creator/src/processor/data.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/data.icpp -------------------------------------------------------------------------------- /Creator/src/processor/debugsave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/debugsave.cpp -------------------------------------------------------------------------------- /Creator/src/processor/debugsave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/debugsave.h -------------------------------------------------------------------------------- /Creator/src/processor/debugsink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/debugsink.cpp -------------------------------------------------------------------------------- /Creator/src/processor/debugsink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/debugsink.h -------------------------------------------------------------------------------- /Creator/src/processor/filterprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/filterprocessor.cpp -------------------------------------------------------------------------------- /Creator/src/processor/filterprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/filterprocessor.h -------------------------------------------------------------------------------- /Creator/src/processor/generatorsource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/generatorsource.cpp -------------------------------------------------------------------------------- /Creator/src/processor/generatorsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/generatorsource.h -------------------------------------------------------------------------------- /Creator/src/processor/meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/meta.cpp -------------------------------------------------------------------------------- /Creator/src/processor/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/meta.h -------------------------------------------------------------------------------- /Creator/src/processor/meta.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/meta.icpp -------------------------------------------------------------------------------- /Creator/src/processor/metacapturesink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/metacapturesink.cpp -------------------------------------------------------------------------------- /Creator/src/processor/metacapturesink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/metacapturesink.h -------------------------------------------------------------------------------- /Creator/src/processor/metagateprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/metagateprocessor.cpp -------------------------------------------------------------------------------- /Creator/src/processor/metagateprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/metagateprocessor.h -------------------------------------------------------------------------------- /Creator/src/processor/metamodifyprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/metamodifyprocessor.cpp -------------------------------------------------------------------------------- /Creator/src/processor/metamodifyprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/metamodifyprocessor.h -------------------------------------------------------------------------------- /Creator/src/processor/noop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/noop.cpp -------------------------------------------------------------------------------- /Creator/src/processor/noop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/noop.h -------------------------------------------------------------------------------- /Creator/src/processor/plugsource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/plugsource.cpp -------------------------------------------------------------------------------- /Creator/src/processor/plugsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/plugsource.h -------------------------------------------------------------------------------- /Creator/src/processor/processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/processor.cpp -------------------------------------------------------------------------------- /Creator/src/processor/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/processor.h -------------------------------------------------------------------------------- /Creator/src/processor/processornodebase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/processornodebase.cpp -------------------------------------------------------------------------------- /Creator/src/processor/processornodebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/processornodebase.h -------------------------------------------------------------------------------- /Creator/src/processor/sequencesource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/sequencesource.cpp -------------------------------------------------------------------------------- /Creator/src/processor/sequencesource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/sequencesource.h -------------------------------------------------------------------------------- /Creator/src/processor/sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/sink.cpp -------------------------------------------------------------------------------- /Creator/src/processor/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/sink.h -------------------------------------------------------------------------------- /Creator/src/processor/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/source.cpp -------------------------------------------------------------------------------- /Creator/src/processor/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/source.h -------------------------------------------------------------------------------- /Creator/src/processor/staticmetadatagenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/staticmetadatagenerator.cpp -------------------------------------------------------------------------------- /Creator/src/processor/staticmetadatagenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/staticmetadatagenerator.h -------------------------------------------------------------------------------- /Creator/src/processor/streamfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/streamfilter.cpp -------------------------------------------------------------------------------- /Creator/src/processor/streamfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/streamfilter.h -------------------------------------------------------------------------------- /Creator/src/processor/streams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/streams.cpp -------------------------------------------------------------------------------- /Creator/src/processor/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/streams.h -------------------------------------------------------------------------------- /Creator/src/processor/tagprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/tagprocessor.h -------------------------------------------------------------------------------- /Creator/src/processor/tagprocessor.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/processor/tagprocessor.icpp -------------------------------------------------------------------------------- /Creator/src/raw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/raw/CMakeLists.txt -------------------------------------------------------------------------------- /Creator/src/raw/aacimport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/raw/aacimport.cpp -------------------------------------------------------------------------------- /Creator/src/raw/aacimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/raw/aacimport.h -------------------------------------------------------------------------------- /Creator/src/segmenter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/CMakeLists.txt -------------------------------------------------------------------------------- /Creator/src/segmenter/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/metadata.h -------------------------------------------------------------------------------- /Creator/src/segmenter/moofcombine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/moofcombine.cpp -------------------------------------------------------------------------------- /Creator/src/segmenter/moofcombine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/moofcombine.h -------------------------------------------------------------------------------- /Creator/src/segmenter/save.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/save.cpp -------------------------------------------------------------------------------- /Creator/src/segmenter/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/save.h -------------------------------------------------------------------------------- /Creator/src/segmenter/segmenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/segmenter.cpp -------------------------------------------------------------------------------- /Creator/src/segmenter/segmenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/segmenter.h -------------------------------------------------------------------------------- /Creator/src/segmenter/segmentercommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/segmentercommon.cpp -------------------------------------------------------------------------------- /Creator/src/segmenter/segmentercommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/segmentercommon.h -------------------------------------------------------------------------------- /Creator/src/segmenter/segmenterinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/segmenterinit.cpp -------------------------------------------------------------------------------- /Creator/src/segmenter/segmenterinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/segmenterinit.h -------------------------------------------------------------------------------- /Creator/src/segmenter/segmenternonfrag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/segmenternonfrag.cpp -------------------------------------------------------------------------------- /Creator/src/segmenter/segmenternonfrag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/segmenternonfrag.h -------------------------------------------------------------------------------- /Creator/src/segmenter/sidxadjuster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/sidxadjuster.cpp -------------------------------------------------------------------------------- /Creator/src/segmenter/sidxadjuster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/sidxadjuster.h -------------------------------------------------------------------------------- /Creator/src/segmenter/singlefilesave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/singlefilesave.cpp -------------------------------------------------------------------------------- /Creator/src/segmenter/singlefilesave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/singlefilesave.h -------------------------------------------------------------------------------- /Creator/src/segmenter/tagmultitrackidprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/tagmultitrackidprocessor.cpp -------------------------------------------------------------------------------- /Creator/src/segmenter/tagmultitrackidprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/tagmultitrackidprocessor.h -------------------------------------------------------------------------------- /Creator/src/segmenter/tagstreamidprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/tagstreamidprocessor.cpp -------------------------------------------------------------------------------- /Creator/src/segmenter/tagstreamidprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/tagstreamidprocessor.h -------------------------------------------------------------------------------- /Creator/src/segmenter/tagtrackidprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/tagtrackidprocessor.cpp -------------------------------------------------------------------------------- /Creator/src/segmenter/tagtrackidprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/segmenter/tagtrackidprocessor.h -------------------------------------------------------------------------------- /Creator/src/tiler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/tiler/CMakeLists.txt -------------------------------------------------------------------------------- /Creator/src/tiler/tiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/tiler/tiler.cpp -------------------------------------------------------------------------------- /Creator/src/tiler/tiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/tiler/tiler.h -------------------------------------------------------------------------------- /Creator/src/tool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/tool/CMakeLists.txt -------------------------------------------------------------------------------- /Creator/src/tool/commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/tool/commandline.cpp -------------------------------------------------------------------------------- /Creator/src/tool/commandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/tool/commandline.h -------------------------------------------------------------------------------- /Creator/src/tool/commandline.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/tool/commandline.icpp -------------------------------------------------------------------------------- /Creator/src/tool/localcommandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/tool/localcommandline.cpp -------------------------------------------------------------------------------- /Creator/src/tool/localcommandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/tool/localcommandline.h -------------------------------------------------------------------------------- /Creator/src/tool/localcommandline.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/tool/localcommandline.icpp -------------------------------------------------------------------------------- /Creator/src/tool/localoptional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/tool/localoptional.cpp -------------------------------------------------------------------------------- /Creator/src/tool/localoptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/tool/localoptional.h -------------------------------------------------------------------------------- /Creator/src/tool/localoptional.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/tool/localoptional.icpp -------------------------------------------------------------------------------- /Creator/src/tool/omafimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/tool/omafimage.cpp -------------------------------------------------------------------------------- /Creator/src/tool/omafvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/tool/omafvd.cpp -------------------------------------------------------------------------------- /Creator/src/tool/omafvi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Creator/src/tool/omafvi.cpp -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Mp4/build/android/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/build/android/build.sh -------------------------------------------------------------------------------- /Mp4/build/build-android-with-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/build/build-android-with-docker.sh -------------------------------------------------------------------------------- /Mp4/build/build-linux-with-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/build/build-linux-with-docker.sh -------------------------------------------------------------------------------- /Mp4/build/build_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/build/build_win64.bat -------------------------------------------------------------------------------- /Mp4/build/cmake_eclipse.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/build/cmake_eclipse.bat -------------------------------------------------------------------------------- /Mp4/build/cmake_win64_visualstudio2013.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/build/cmake_win64_visualstudio2013.bat -------------------------------------------------------------------------------- /Mp4/build/cmake_win64_visualstudio2015.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/build/cmake_win64_visualstudio2015.bat -------------------------------------------------------------------------------- /Mp4/build/cmake_win64_visualstudio2017_winstore.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/build/cmake_win64_visualstudio2017_winstore.bat -------------------------------------------------------------------------------- /Mp4/build/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/build/release.sh -------------------------------------------------------------------------------- /Mp4/srcs/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/.clang-format -------------------------------------------------------------------------------- /Mp4/srcs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/CMakeLists.txt -------------------------------------------------------------------------------- /Mp4/srcs/api/isobmff/commontypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/isobmff/commontypes.h -------------------------------------------------------------------------------- /Mp4/srcs/api/isobmff/deprecation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/isobmff/deprecation.h -------------------------------------------------------------------------------- /Mp4/srcs/api/isobmff/dynarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/isobmff/dynarray.h -------------------------------------------------------------------------------- /Mp4/srcs/api/isobmff/mp4vrfileexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/isobmff/mp4vrfileexport.h -------------------------------------------------------------------------------- /Mp4/srcs/api/isobmff/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/isobmff/optional.h -------------------------------------------------------------------------------- /Mp4/srcs/api/isobmff/optional.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/isobmff/optional.icpp -------------------------------------------------------------------------------- /Mp4/srcs/api/isobmff/union.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/isobmff/union.h -------------------------------------------------------------------------------- /Mp4/srcs/api/isobmff/union.icpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/isobmff/union.icpp -------------------------------------------------------------------------------- /Mp4/srcs/api/isobmff/unionhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/isobmff/unionhelpers.h -------------------------------------------------------------------------------- /Mp4/srcs/api/reader/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Mp4/srcs/api/reader/mp4vrfileallocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/reader/mp4vrfileallocator.h -------------------------------------------------------------------------------- /Mp4/srcs/api/reader/mp4vrfiledatatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/reader/mp4vrfiledatatypes.h -------------------------------------------------------------------------------- /Mp4/srcs/api/reader/mp4vrfilereaderinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/reader/mp4vrfilereaderinterface.h -------------------------------------------------------------------------------- /Mp4/srcs/api/reader/mp4vrfilestreaminterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/reader/mp4vrfilestreaminterface.h -------------------------------------------------------------------------------- /Mp4/srcs/api/streamsegmenter/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Mp4/srcs/api/streamsegmenter/autosegmenter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/streamsegmenter/autosegmenter.hpp -------------------------------------------------------------------------------- /Mp4/srcs/api/streamsegmenter/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/streamsegmenter/exceptions.hpp -------------------------------------------------------------------------------- /Mp4/srcs/api/streamsegmenter/frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/streamsegmenter/frame.hpp -------------------------------------------------------------------------------- /Mp4/srcs/api/streamsegmenter/frameproxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/streamsegmenter/frameproxy.hpp -------------------------------------------------------------------------------- /Mp4/srcs/api/streamsegmenter/id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/streamsegmenter/id.hpp -------------------------------------------------------------------------------- /Mp4/srcs/api/streamsegmenter/mpdtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/streamsegmenter/mpdtree.hpp -------------------------------------------------------------------------------- /Mp4/srcs/api/streamsegmenter/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/streamsegmenter/optional.hpp -------------------------------------------------------------------------------- /Mp4/srcs/api/streamsegmenter/rational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/streamsegmenter/rational.hpp -------------------------------------------------------------------------------- /Mp4/srcs/api/streamsegmenter/segmenterapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/streamsegmenter/segmenterapi.hpp -------------------------------------------------------------------------------- /Mp4/srcs/api/streamsegmenter/track.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/streamsegmenter/track.hpp -------------------------------------------------------------------------------- /Mp4/srcs/api/streamsegmenter/union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/api/streamsegmenter/union.hpp -------------------------------------------------------------------------------- /Mp4/srcs/buildinfo/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Mp4/srcs/buildinfo/buildinfo.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/buildinfo/buildinfo.hpp.in -------------------------------------------------------------------------------- /Mp4/srcs/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/CMakeLists.txt -------------------------------------------------------------------------------- /Mp4/srcs/common/alternateitemsgroupbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/alternateitemsgroupbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/alternateitemsgroupbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/alternateitemsgroupbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/androidhacks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/androidhacks.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/audiosampleentrybox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/audiosampleentrybox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/audiosampleentrybox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/audiosampleentrybox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/avccommondefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/avccommondefs.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/avcconfigurationbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/avcconfigurationbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/avcconfigurationbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/avcconfigurationbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/avcdecoderconfigrecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/avcdecoderconfigrecord.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/avcdecoderconfigrecord.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/avcdecoderconfigrecord.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/avcparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/avcparser.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/avcparser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/avcparser.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/avcsampleentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/avcsampleentry.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/avcsampleentry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/avcsampleentry.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/bbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/bbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/bbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/bbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/bitstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/bitstream.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/bitstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/bitstream.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/brandandcompatiblebrandsbasebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/brandandcompatiblebrandsbasebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/brandandcompatiblebrandsbasebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/brandandcompatiblebrandsbasebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/channellayoutbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/channellayoutbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/channellayoutbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/channellayoutbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/chunkoffsetbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/chunkoffsetbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/chunkoffsetbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/chunkoffsetbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/cleanaperturebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/cleanaperturebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/cleanaperturebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/cleanaperturebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/commontypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/commontypes.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/compatibleschemetypebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/compatibleschemetypebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/compatibleschemetypebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/compatibleschemetypebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/compositionoffsetbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/compositionoffsetbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/compositionoffsetbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/compositionoffsetbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/compositiontodecodebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/compositiontodecodebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/compositiontodecodebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/compositiontodecodebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/coverageinformationbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/coverageinformationbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/coverageinformationbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/coverageinformationbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/customallocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/customallocator.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/customallocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/customallocator.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/datainformationbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/datainformationbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/datainformationbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/datainformationbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/datareferencebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/datareferencebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/datareferencebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/datareferencebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/decodepts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/decodepts.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/decodepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/decodepts.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/decoderconfigrecord.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/decoderconfigrecord.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/dynamicviewpointsampleentrybox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/dynamicviewpointsampleentrybox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/dynamicviewpointsampleentrybox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/dynamicviewpointsampleentrybox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/dynarrayimpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/dynarrayimpl.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/editbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/editbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/editbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/editbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/elementarystreamdescriptorbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/elementarystreamdescriptorbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/elementarystreamdescriptorbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/elementarystreamdescriptorbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/entitytogroupbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/entitytogroupbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/entitytogroupbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/entitytogroupbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/filetypebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/filetypebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/filetypebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/filetypebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/fourccint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/fourccint.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/fourccint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/fourccint.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/fullbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/fullbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/fullbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/fullbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googlecubemapprojectionbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googlecubemapprojectionbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googlecubemapprojectionbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googlecubemapprojectionbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googlenondiegeticaudiobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googlenondiegeticaudiobox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googlenondiegeticaudiobox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googlenondiegeticaudiobox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googleprojectionbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googleprojectionbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googleprojectionbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googleprojectionbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googleprojectiondatabox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googleprojectiondatabox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googleprojectiondatabox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googleprojectiondatabox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googleprojectionheaderbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googleprojectionheaderbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googleprojectionheaderbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googleprojectionheaderbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googlespatialaudiobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googlespatialaudiobox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googlespatialaudiobox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googlespatialaudiobox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googlesphericalvideoheaderbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googlesphericalvideoheaderbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googlesphericalvideoheaderbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googlesphericalvideoheaderbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googlesphericalvideov1box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googlesphericalvideov1box.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googlesphericalvideov1box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googlesphericalvideov1box.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googlesphericalvideov2box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googlesphericalvideov2box.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googlesphericalvideov2box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googlesphericalvideov2box.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googlestereoscopic3dbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googlestereoscopic3dbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/googlestereoscopic3dbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/googlestereoscopic3dbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/groupslistbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/groupslistbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/groupslistbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/groupslistbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/handlerbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/handlerbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/handlerbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/handlerbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/hevccommondefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/hevccommondefs.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/hevcconfigurationbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/hevcconfigurationbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/hevcconfigurationbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/hevcconfigurationbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/hevcdecoderconfigrecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/hevcdecoderconfigrecord.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/hevcdecoderconfigrecord.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/hevcdecoderconfigrecord.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/hevcsampleentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/hevcsampleentry.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/hevcsampleentry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/hevcsampleentry.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/initialviewpointsampleentrybox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/initialviewpointsampleentrybox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/initialviewpointsampleentrybox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/initialviewpointsampleentrybox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/itemdatabox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/itemdatabox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/itemdatabox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/itemdatabox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/iteminfobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/iteminfobox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/iteminfobox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/iteminfobox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/itemlocationbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/itemlocationbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/itemlocationbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/itemlocationbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/itemprotectionbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/itemprotectionbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/itemprotectionbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/itemprotectionbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/itemreferencebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/itemreferencebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/itemreferencebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/itemreferencebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/log.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/log.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/mediabox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/mediabox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/mediabox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/mediabox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/mediadatabox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/mediadatabox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/mediadatabox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/mediadatabox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/mediaheaderbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/mediaheaderbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/mediaheaderbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/mediaheaderbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/mediainformationbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/mediainformationbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/mediainformationbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/mediainformationbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/mediatypedefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/mediatypedefs.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/metabox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/metabox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/metabox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/metabox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/metadatasampleentrybox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/metadatasampleentrybox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/metadatasampleentrybox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/metadatasampleentrybox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/moviebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/moviebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/moviebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/moviebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/movieextendsbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/movieextendsbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/movieextendsbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/movieextendsbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/movieextendsheaderbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/movieextendsheaderbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/movieextendsheaderbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/movieextendsheaderbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/moviefragmentbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/moviefragmentbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/moviefragmentbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/moviefragmentbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/moviefragmentheaderbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/moviefragmentheaderbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/moviefragmentheaderbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/moviefragmentheaderbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/moviefragmentsdatatypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/moviefragmentsdatatypes.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/movieheaderbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/movieheaderbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/movieheaderbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/movieheaderbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/mp4audiodecoderconfigrecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/mp4audiodecoderconfigrecord.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/mp4audiodecoderconfigrecord.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/mp4audiodecoderconfigrecord.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/mp4audiosampleentrybox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/mp4audiosampleentrybox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/mp4audiosampleentrybox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/mp4audiosampleentrybox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/mp4visualsampleentrybox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/mp4visualsampleentrybox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/mp4visualsampleentrybox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/mp4visualsampleentrybox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/nalutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/nalutil.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/nalutil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/nalutil.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/nullmediaheaderbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/nullmediaheaderbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/nullmediaheaderbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/nullmediaheaderbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/originalformatbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/originalformatbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/originalformatbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/originalformatbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/overlayandbackgroundgroupingbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/overlayandbackgroundgroupingbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/overlayandbackgroundgroupingbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/overlayandbackgroundgroupingbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/overlayconfigbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/overlayconfigbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/overlayconfigbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/overlayconfigbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/overlaysampleentrybox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/overlaysampleentrybox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/overlaysampleentrybox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/overlaysampleentrybox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/overlayswitchalternativesbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/overlayswitchalternativesbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/overlayswitchalternativesbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/overlayswitchalternativesbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/primaryitembox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/primaryitembox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/primaryitembox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/primaryitembox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/projectedomnivideobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/projectedomnivideobox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/projectedomnivideobox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/projectedomnivideobox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/projectionformatbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/projectionformatbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/projectionformatbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/projectionformatbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/protectionschemeinfobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/protectionschemeinfobox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/protectionschemeinfobox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/protectionschemeinfobox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/recommendedviewportinfobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/recommendedviewportinfobox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/recommendedviewportinfobox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/recommendedviewportinfobox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/recommendedviewportsampleentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/recommendedviewportsampleentry.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/recommendedviewportsampleentry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/recommendedviewportsampleentry.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/regionwisepackingbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/regionwisepackingbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/regionwisepackingbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/regionwisepackingbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/restrictedschemeinfobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/restrictedschemeinfobox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/restrictedschemeinfobox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/restrictedschemeinfobox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/rotationbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/rotationbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/rotationbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/rotationbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/sampledescriptionbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/sampledescriptionbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/sampledescriptionbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/sampledescriptionbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/sampleentrybox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/sampleentrybox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/sampleentrybox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/sampleentrybox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/samplegroupdescriptionbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/samplegroupdescriptionbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/samplegroupdescriptionbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/samplegroupdescriptionbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/samplegroupentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/samplegroupentry.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/samplegroupentry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/samplegroupentry.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/samplesizebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/samplesizebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/samplesizebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/samplesizebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/sampletablebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/sampletablebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/sampletablebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/sampletablebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/sampletochunkbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/sampletochunkbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/sampletochunkbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/sampletochunkbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/sampletogroupbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/sampletogroupbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/sampletogroupbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/sampletogroupbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/samplingratebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/samplingratebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/samplingratebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/samplingratebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/schemetypebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/schemetypebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/schemetypebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/schemetypebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/segmentindexbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/segmentindexbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/segmentindexbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/segmentindexbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/segmenttypebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/segmenttypebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/segmenttypebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/segmenttypebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/smallvector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/smallvector.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/soundmediaheaderbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/soundmediaheaderbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/soundmediaheaderbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/soundmediaheaderbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/spatialrelationship2dsourcebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/spatialrelationship2dsourcebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/spatialrelationship2dsourcebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/spatialrelationship2dsourcebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/sphereregionconfigbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/sphereregionconfigbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/sphereregionconfigbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/sphereregionconfigbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/sphereregionsampleentrybox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/sphereregionsampleentrybox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/sphereregionsampleentrybox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/sphereregionsampleentrybox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/stereovideobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/stereovideobox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/stereovideobox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/stereovideobox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/subpictureregionbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/subpictureregionbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/subpictureregionbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/subpictureregionbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/syncsamplebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/syncsamplebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/syncsamplebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/syncsamplebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/timetosamplebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/timetosamplebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/timetosamplebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/timetosamplebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackextendsbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackextendsbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackextendsbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackextendsbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackfragmentbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackfragmentbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackfragmentbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackfragmentbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackfragmentheaderbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackfragmentheaderbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackfragmentheaderbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackfragmentheaderbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackgroupbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackgroupbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackgroupbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackgroupbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackgrouptypebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackgrouptypebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackgrouptypebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackgrouptypebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackheaderbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackheaderbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackheaderbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackheaderbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackreferencebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackreferencebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackreferencebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackreferencebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackreferencetypebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackreferencetypebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackreferencetypebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackreferencetypebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackrunbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackrunbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/trackrunbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/trackrunbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/tracktypebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/tracktypebox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/tracktypebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/tracktypebox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/uribox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/uribox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/uribox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/uribox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/uriinitbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/uriinitbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/uriinitbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/uriinitbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/urimetasampleentrybox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/urimetasampleentrybox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/urimetasampleentrybox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/urimetasampleentrybox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/userdatabox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/userdatabox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/userdatabox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/userdatabox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/videomediaheaderbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/videomediaheaderbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/videomediaheaderbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/videomediaheaderbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/viewpointentitygroupbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/viewpointentitygroupbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/viewpointentitygroupbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/viewpointentitygroupbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/visualsampleentrybox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/visualsampleentrybox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/visualsampleentrybox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/visualsampleentrybox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/writeoncemap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/writeoncemap.hpp -------------------------------------------------------------------------------- /Mp4/srcs/common/xmlbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/xmlbox.cpp -------------------------------------------------------------------------------- /Mp4/srcs/common/xmlbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/common/xmlbox.hpp -------------------------------------------------------------------------------- /Mp4/srcs/jsonlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/jsonlib/CMakeLists.txt -------------------------------------------------------------------------------- /Mp4/srcs/jsonlib/json-forwards.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/jsonlib/json-forwards.hh -------------------------------------------------------------------------------- /Mp4/srcs/jsonlib/json.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/jsonlib/json.cc -------------------------------------------------------------------------------- /Mp4/srcs/jsonlib/json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/jsonlib/json.hh -------------------------------------------------------------------------------- /Mp4/srcs/reader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/CMakeLists.txt -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfiledatatypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfiledatatypes.cpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfiledatatypesinternal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfiledatatypesinternal.hpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfilereaderaccessors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfilereaderaccessors.cpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfilereaderimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfilereaderimpl.cpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfilereaderimpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfilereaderimpl.hpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfilereaderutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfilereaderutil.cpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfilereaderutil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfilereaderutil.hpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfilesegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfilesegment.cpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfilesegment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfilesegment.hpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfilestreamfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfilestreamfile.cpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfilestreamfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfilestreamfile.hpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfilestreamgeneric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfilestreamgeneric.cpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfilestreamgeneric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfilestreamgeneric.hpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfilestreaminterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfilestreaminterface.cpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfilestreaminternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfilestreaminternal.cpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfilestreaminternal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfilestreaminternal.hpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfilestreamlinux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfilestreamlinux.cpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrfilestreamlinux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrfilestreamlinux.hpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrhvc2extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrhvc2extractor.cpp -------------------------------------------------------------------------------- /Mp4/srcs/reader/mp4vrhvc2extractor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/reader/mp4vrhvc2extractor.hpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/CMakeLists.txt -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/autosegmenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/autosegmenter.cpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/autosegmenterimpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/autosegmenterimpl.hpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/block.cpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/block.hpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/config.cpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/config.hpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/debug.cpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/debug.hpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/decodeptsutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/decodeptsutils.cpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/decodeptsutils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/decodeptsutils.hpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/exceptions.cpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/frame.cpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/frameproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/frameproxy.cpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/memistreambuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/memistreambuf.cpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/memistreambuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/memistreambuf.hpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/mp4access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/mp4access.cpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/mp4access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/mp4access.hpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/mpdtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/mpdtree.cpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/private.hpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/segmenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/segmenter.cpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/segmenter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/segmenter.hpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/segmenterapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/segmenterapi.cpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/tool.cpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/track.cpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/utils.cpp -------------------------------------------------------------------------------- /Mp4/srcs/streamsegmenter/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Mp4/srcs/streamsegmenter/utils.hpp -------------------------------------------------------------------------------- /OpenGLExt/KHR/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenGLExt/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/OpenGLExt/Readme.txt -------------------------------------------------------------------------------- /OpenGLExt/gl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenGLExt/wgl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/CMakeLists.txt -------------------------------------------------------------------------------- /Player/CMakeLists_ANDROID.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/CMakeLists_ANDROID.cmake -------------------------------------------------------------------------------- /Player/CMakeLists_MSVC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/CMakeLists_MSVC.cmake -------------------------------------------------------------------------------- /Player/Sources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/API/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/API/OMAFIArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/API/OMAFIArray.h -------------------------------------------------------------------------------- /Player/Sources/API/OMAFIDataBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/API/OMAFIDataBuffer.h -------------------------------------------------------------------------------- /Player/Sources/API/OMAFPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/API/OMAFPlayer.h -------------------------------------------------------------------------------- /Player/Sources/API/OMAFPlayerDataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/API/OMAFPlayerDataTypes.h -------------------------------------------------------------------------------- /Player/Sources/API/OMAFPlayerPlatformParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/API/OMAFPlayerPlatformParameters.h -------------------------------------------------------------------------------- /Player/Sources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/CMakeLists.txt -------------------------------------------------------------------------------- /Player/Sources/Core/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/Android/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRAlignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRAlignment.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRAlignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRAlignment.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRArray.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRArrayImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRArrayImpl.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRAssert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRAssert.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRAssert.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRAssetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRAssetManager.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRAtomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRAtomic.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRAtomicBoolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRAtomicBoolean.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRAtomicInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRAtomicInteger.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRBase64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRBase64.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRBase64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRBase64.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRBuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRBuild.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRClock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRClock.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRClock.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRCompatibility.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRConstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRConstruct.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRDataBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRDataBuffer.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRDelegate.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRDependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRDependencies.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRDeviceInfo.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRDiskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRDiskManager.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRElapsedTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRElapsedTimer.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVREvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVREvent.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVREvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVREvent.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRFNVHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRFNVHash.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRFileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRFileStream.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRFileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRFileStream.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRFileSystem.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRFileSystem.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRFileUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRFileUtilities.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRFixedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRFixedArray.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRFixedQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRFixedQueue.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRFixedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRFixedString.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRHandle.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRHashFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRHashFunctions.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRHashMap.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRHashMapImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRHashMapImpl.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRHttp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRHttp.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRHttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRHttp.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRJsonArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRJsonArray.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRJsonArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRJsonArray.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRJsonObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRJsonObject.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRJsonObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRJsonObject.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRLogger.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRLogger.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRMemorySystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRMemorySystem.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRMutex.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRMutex.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRNew.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRNonCopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRNonCopyable.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRPair.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRPathName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRPathName.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRRandom.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRRandom.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRReadWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRReadWriteLock.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRSecurity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRSecurity.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRSemaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRSemaphore.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRSemaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRSemaphore.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRSpinlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRSpinlock.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRSpinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRSpinlock.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRString.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRString.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRThread.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRThread.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRTime.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRTime.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRTraits.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRUri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRUri.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRUri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRUri.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRUriTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRUriTools.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/NVRUriTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Foundation/NVRUriTools.h -------------------------------------------------------------------------------- /Player/Sources/Core/Foundation/Windows/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/Android/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/D3D11/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRBlendEquation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRBlendEquation.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRBlendFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRBlendFunction.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRBlendState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRBlendState.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRBlendState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRBlendState.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRBufferAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRBufferAccess.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRClearMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRClearMask.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRColor.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRColorMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRColorMask.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRColorSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRColorSpace.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRConfig.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRCullMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRCullMode.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRDebugMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRDebugMode.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRDebugTextLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRDebugTextLayer.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRDependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRDependencies.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRDepthFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRDepthFunction.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRDepthMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRDepthMask.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRDiscardMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRDiscardMask.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRDisplay.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRFillMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRFillMode.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRFrontFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRFrontFace.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRHandles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRHandles.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRIRenderContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRIRenderContext.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRPrimitiveType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRPrimitiveType.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRRasterizerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRRasterizerState.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRRenderBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRRenderBackend.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRRenderBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRRenderBackend.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRRendererType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRRendererType.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRSamplerState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRSamplerState.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRSamplerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRSamplerState.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRScissors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRScissors.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRStencilFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRStencilFunction.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRStreamBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRStreamBuffer.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRTextureFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRTextureFormat.cpp -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRTextureFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRTextureFormat.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRTextureType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRTextureType.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/NVRViewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/NVRViewport.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/Null/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/OpenGL/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/OpenGL/NVRGLError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/OpenGL/NVRGLError.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/OpenGL/NVRShaderGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/Graphics/OpenGL/NVRShaderGL.h -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/OpenGL/Windows/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Core/Graphics/Windows/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Core/NVREssentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/NVREssentials.h -------------------------------------------------------------------------------- /Player/Sources/Core/NVRGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/NVRGraphics.h -------------------------------------------------------------------------------- /Player/Sources/Core/NVRNamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Core/NVRNamespace.h -------------------------------------------------------------------------------- /Player/Sources/Math/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Math/OMAFAxisAngle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Math/OMAFAxisAngle.h -------------------------------------------------------------------------------- /Player/Sources/Math/OMAFColor3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Math/OMAFColor3.h -------------------------------------------------------------------------------- /Player/Sources/Math/OMAFColor4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Math/OMAFColor4.h -------------------------------------------------------------------------------- /Player/Sources/Math/OMAFMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Math/OMAFMath.h -------------------------------------------------------------------------------- /Player/Sources/Math/OMAFMathConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Math/OMAFMathConstants.h -------------------------------------------------------------------------------- /Player/Sources/Math/OMAFMathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Math/OMAFMathFunctions.h -------------------------------------------------------------------------------- /Player/Sources/Math/OMAFMathTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Math/OMAFMathTypes.h -------------------------------------------------------------------------------- /Player/Sources/Math/OMAFMatrix33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Math/OMAFMatrix33.h -------------------------------------------------------------------------------- /Player/Sources/Math/OMAFMatrix44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Math/OMAFMatrix44.h -------------------------------------------------------------------------------- /Player/Sources/Math/OMAFPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Math/OMAFPoint.h -------------------------------------------------------------------------------- /Player/Sources/Math/OMAFQuaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Math/OMAFQuaternion.h -------------------------------------------------------------------------------- /Player/Sources/Math/OMAFRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Math/OMAFRect.h -------------------------------------------------------------------------------- /Player/Sources/Math/OMAFSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Math/OMAFSize.h -------------------------------------------------------------------------------- /Player/Sources/Math/OMAFVector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Math/OMAFVector2.h -------------------------------------------------------------------------------- /Player/Sources/Math/OMAFVector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Math/OMAFVector3.h -------------------------------------------------------------------------------- /Player/Sources/Math/OMAFVector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Math/OMAFVector4.h -------------------------------------------------------------------------------- /Player/Sources/Platform/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Platform/OMAFCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Platform/OMAFCompiler.h -------------------------------------------------------------------------------- /Player/Sources/Platform/OMAFDataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Platform/OMAFDataTypes.h -------------------------------------------------------------------------------- /Player/Sources/Platform/OMAFPlatformDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Platform/OMAFPlatformDetection.h -------------------------------------------------------------------------------- /Player/Sources/Player/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Player/API/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Player/API/OMAFPlayerPrivate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/API/OMAFPlayerPrivate.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/API/OMAFPlayerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/API/OMAFPlayerPrivate.h -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/NVRAACAudioRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Audio/NVRAACAudioRenderer.h -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/NVRAudioBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Audio/NVRAudioBackend.h -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/NVRAudioInputBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Audio/NVRAudioInputBuffer.h -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/NVRAudioRendererAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Audio/NVRAudioRendererAPI.h -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/NVRAudioTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Audio/NVRAudioTypes.h -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/NVRNullAudioBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Audio/NVRNullAudioBackend.h -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/WASAPI/AACDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Audio/WASAPI/AACDecoder.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/WASAPI/AACDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Audio/WASAPI/AACDecoder.h -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/WASAPI/Context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Audio/WASAPI/Context.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/WASAPI/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Audio/WASAPI/Context.h -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/WASAPI/Endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Audio/WASAPI/Endpoint.h -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/WASAPI/NVRWasapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Audio/WASAPI/NVRWasapi.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/WASAPI/NVRWasapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Audio/WASAPI/NVRWasapi.h -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/WASAPI/NullDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Audio/WASAPI/NullDevice.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/WASAPI/NullDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Audio/WASAPI/NullDevice.h -------------------------------------------------------------------------------- /Player/Sources/Player/Audio/WASAPI/WasapiDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Audio/WASAPI/WasapiDevice.h -------------------------------------------------------------------------------- /Player/Sources/Player/DashProvider/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Player/DashProvider/NVRDashLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/DashProvider/NVRDashLog.h -------------------------------------------------------------------------------- /Player/Sources/Player/DashProvider/NVRDashUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/DashProvider/NVRDashUtils.h -------------------------------------------------------------------------------- /Player/Sources/Player/Media/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRAACAudioStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRAACAudioStream.h -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMP4AudioStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMP4AudioStream.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMP4AudioStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMP4AudioStream.h -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMP4FileStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMP4FileStreamer.h -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMP4MediaStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMP4MediaStream.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMP4MediaStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMP4MediaStream.h -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMP4Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMP4Parser.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMP4Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMP4Parser.h -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMP4Segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMP4Segment.h -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMP4StreamManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMP4StreamManager.h -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMP4VideoStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMP4VideoStream.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMP4VideoStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMP4VideoStream.h -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMediaFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMediaFormat.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMediaFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMediaFormat.h -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMediaInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMediaInformation.h -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMediaPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMediaPacket.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMediaPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMediaPacket.h -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMediaPacketQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMediaPacketQueue.h -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMediaType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMediaType.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMediaType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMediaType.h -------------------------------------------------------------------------------- /Player/Sources/Player/Media/NVRMimeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Media/NVRMimeType.h -------------------------------------------------------------------------------- /Player/Sources/Player/Metadata/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Player/NVRErrorCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/NVRErrorCodes.h -------------------------------------------------------------------------------- /Player/Sources/Player/NVRPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/NVRPlayer.h -------------------------------------------------------------------------------- /Player/Sources/Player/NVRSDKPrivate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/NVRSDKPrivate.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/Provider/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Player/Provider/NVRCoreProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Provider/NVRCoreProvider.h -------------------------------------------------------------------------------- /Player/Sources/Player/Provider/NVRMP4VRProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Provider/NVRMP4VRProvider.h -------------------------------------------------------------------------------- /Player/Sources/Player/Provider/NVRProviderBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Provider/NVRProviderBase.h -------------------------------------------------------------------------------- /Player/Sources/Player/Provider/NVRSynchronizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Provider/NVRSynchronizer.h -------------------------------------------------------------------------------- /Player/Sources/Player/Provider/NVRVideoProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Provider/NVRVideoProvider.h -------------------------------------------------------------------------------- /Player/Sources/Player/Renderer/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Player/Renderer/NVRCubeMapMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Renderer/NVRCubeMapMesh.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/Renderer/NVRCubeMapMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Renderer/NVRCubeMapMesh.h -------------------------------------------------------------------------------- /Player/Sources/Player/Renderer/NVRRawRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Renderer/NVRRawRenderer.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/Renderer/NVRRawRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Renderer/NVRRawRenderer.h -------------------------------------------------------------------------------- /Player/Sources/Player/Renderer/NVRVideoRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Renderer/NVRVideoRenderer.h -------------------------------------------------------------------------------- /Player/Sources/Player/Renderer/NVRVideoShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Renderer/NVRVideoShader.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/Renderer/NVRVideoShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/Renderer/NVRVideoShader.h -------------------------------------------------------------------------------- /Player/Sources/Player/VAS/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Player/VAS/NVRLatencyLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/VAS/NVRLatencyLog.h -------------------------------------------------------------------------------- /Player/Sources/Player/VAS/NVRVASLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/VAS/NVRVASLog.h -------------------------------------------------------------------------------- /Player/Sources/Player/VAS/NVRVASTileContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/VAS/NVRVASTileContainer.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/VAS/NVRVASTileContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/VAS/NVRVASTileContainer.h -------------------------------------------------------------------------------- /Player/Sources/Player/VAS/NVRVASTileDepIdPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/VAS/NVRVASTileDepIdPicker.h -------------------------------------------------------------------------------- /Player/Sources/Player/VAS/NVRVASTilePicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/VAS/NVRVASTilePicker.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/VAS/NVRVASTilePicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/VAS/NVRVASTilePicker.h -------------------------------------------------------------------------------- /Player/Sources/Player/VAS/NVRVASTileSetPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/VAS/NVRVASTileSetPicker.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/VAS/NVRVASTileSetPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/VAS/NVRVASTileSetPicker.h -------------------------------------------------------------------------------- /Player/Sources/Player/VAS/NVRVASViewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/VAS/NVRVASViewport.cpp -------------------------------------------------------------------------------- /Player/Sources/Player/VAS/NVRVASViewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/Player/VAS/NVRVASViewport.h -------------------------------------------------------------------------------- /Player/Sources/Player/VideoDecoder/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Player/VideoDecoder/Android/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/Player/VideoDecoder/Windows/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/Sources/buildinfo.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/Sources/buildinfo.hpp.in -------------------------------------------------------------------------------- /Player/VideoPlayback/Android/Handheld/Assets/place_the_video_file_for_samples_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Player/VideoPlayback/Android/Handheld/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/VideoPlayback/Android/Handheld/app/app.iml -------------------------------------------------------------------------------- /Player/VideoPlayback/Android/Handheld/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/VideoPlayback/Android/Handheld/gradlew -------------------------------------------------------------------------------- /Player/VideoPlayback/Android/Handheld/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/VideoPlayback/Android/Handheld/gradlew.bat -------------------------------------------------------------------------------- /Player/VideoPlayback/Windows/Monitor_Sample/dash-test-1.uri: -------------------------------------------------------------------------------- 1 | http://localhost:3001/c22-v2-lv/omafv2.mpd -------------------------------------------------------------------------------- /Player/build-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/build-android.sh -------------------------------------------------------------------------------- /Player/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/Player/build.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokiatech/omaf/HEAD/README.md --------------------------------------------------------------------------------