├── License.md ├── README.md ├── example ├── bin │ └── data │ │ └── .gitkeep ├── icon.rc ├── ofxDSHapVideoPlayerExample.sln ├── ofxDSHapVideoPlayerExample.vcxproj ├── ofxDSHapVideoPlayerExample.vcxproj.filters ├── ofxDSHapVideoPlayerExample.vcxproj.user └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── libs └── External │ ├── DirectShow │ └── BaseClasses │ │ ├── amextra.cpp │ │ ├── amextra.h │ │ ├── amfilter.cpp │ │ ├── amfilter.h │ │ ├── amvideo.cpp │ │ ├── arithutil.cpp │ │ ├── baseclasses.vcproj │ │ ├── cache.h │ │ ├── checkbmi.h │ │ ├── combase.cpp │ │ ├── combase.h │ │ ├── cprop.cpp │ │ ├── cprop.h │ │ ├── ctlutil.cpp │ │ ├── ctlutil.h │ │ ├── ddmm.cpp │ │ ├── ddmm.h │ │ ├── dllentry.cpp │ │ ├── dllsetup.cpp │ │ ├── dllsetup.h │ │ ├── dxmperf.h │ │ ├── fourcc.h │ │ ├── measure.h │ │ ├── msgthrd.h │ │ ├── mtype.cpp │ │ ├── mtype.h │ │ ├── outputq.cpp │ │ ├── outputq.h │ │ ├── perflog.cpp │ │ ├── perflog.h │ │ ├── perfstruct.h │ │ ├── pstream.cpp │ │ ├── pstream.h │ │ ├── pullpin.cpp │ │ ├── pullpin.h │ │ ├── refclock.cpp │ │ ├── refclock.h │ │ ├── reftime.h │ │ ├── renbase.cpp │ │ ├── renbase.h │ │ ├── schedule.cpp │ │ ├── schedule.h │ │ ├── seekpt.cpp │ │ ├── seekpt.h │ │ ├── source.cpp │ │ ├── source.h │ │ ├── streams.h │ │ ├── strmctl.cpp │ │ ├── strmctl.h │ │ ├── sysclock.cpp │ │ ├── sysclock.h │ │ ├── transfrm.cpp │ │ ├── transfrm.h │ │ ├── transip.cpp │ │ ├── transip.h │ │ ├── videoctl.cpp │ │ ├── videoctl.h │ │ ├── vtrans.cpp │ │ ├── vtrans.h │ │ ├── winctrl.cpp │ │ ├── winctrl.h │ │ ├── winutil.cpp │ │ ├── winutil.h │ │ ├── wxdebug.cpp │ │ ├── wxdebug.h │ │ ├── wxlist.cpp │ │ ├── wxlist.h │ │ ├── wxutil.cpp │ │ └── wxutil.h │ └── snappy │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── aclocal.m4 │ ├── autogen.sh │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── format_description.txt │ ├── framing_format.txt │ ├── install-sh │ ├── ltmain.sh │ ├── missing │ ├── snappy-c.cc │ ├── snappy-c.h │ ├── snappy-internal.h │ ├── snappy-sinksource.cc │ ├── snappy-sinksource.h │ ├── snappy-stubs-internal.cc │ ├── snappy-stubs-internal.h │ ├── snappy-stubs-public.h │ ├── snappy-stubs-public.h.in │ ├── snappy-vs2008.vcproj │ ├── snappy.cc │ └── snappy.h └── src ├── DSShared.h ├── DSUncompressedSampleGrabber.cpp ├── DSUncompressedSampleGrabber.h ├── HapShared.h ├── ofxDSHapVideoPlayer.cpp └── ofxDSHapVideoPlayer.h /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/README.md -------------------------------------------------------------------------------- /example/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/example/icon.rc -------------------------------------------------------------------------------- /example/ofxDSHapVideoPlayerExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/example/ofxDSHapVideoPlayerExample.sln -------------------------------------------------------------------------------- /example/ofxDSHapVideoPlayerExample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/example/ofxDSHapVideoPlayerExample.vcxproj -------------------------------------------------------------------------------- /example/ofxDSHapVideoPlayerExample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/example/ofxDSHapVideoPlayerExample.vcxproj.filters -------------------------------------------------------------------------------- /example/ofxDSHapVideoPlayerExample.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/example/ofxDSHapVideoPlayerExample.vcxproj.user -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/example/src/ofApp.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/amextra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/amextra.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/amextra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/amextra.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/amfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/amfilter.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/amfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/amfilter.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/amvideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/amvideo.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/arithutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/arithutil.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/baseclasses.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/baseclasses.vcproj -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/cache.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/checkbmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/checkbmi.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/combase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/combase.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/combase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/combase.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/cprop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/cprop.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/cprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/cprop.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/ctlutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/ctlutil.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/ctlutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/ctlutil.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/ddmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/ddmm.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/ddmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/ddmm.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/dllentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/dllentry.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/dllsetup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/dllsetup.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/dllsetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/dllsetup.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/dxmperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/dxmperf.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/fourcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/fourcc.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/measure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/measure.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/msgthrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/msgthrd.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/mtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/mtype.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/mtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/mtype.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/outputq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/outputq.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/outputq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/outputq.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/perflog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/perflog.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/perflog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/perflog.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/perfstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/perfstruct.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/pstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/pstream.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/pstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/pstream.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/pullpin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/pullpin.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/pullpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/pullpin.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/refclock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/refclock.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/refclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/refclock.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/reftime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/reftime.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/renbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/renbase.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/renbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/renbase.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/schedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/schedule.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/schedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/schedule.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/seekpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/seekpt.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/seekpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/seekpt.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/source.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/source.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/streams.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/strmctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/strmctl.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/strmctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/strmctl.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/sysclock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/sysclock.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/sysclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/sysclock.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/transfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/transfrm.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/transfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/transfrm.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/transip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/transip.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/transip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/transip.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/videoctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/videoctl.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/videoctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/videoctl.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/vtrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/vtrans.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/vtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/vtrans.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/winctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/winctrl.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/winctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/winctrl.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/winutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/winutil.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/winutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/winutil.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/wxdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/wxdebug.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/wxdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/wxdebug.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/wxlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/wxlist.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/wxlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/wxlist.h -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/wxutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/wxutil.cpp -------------------------------------------------------------------------------- /libs/External/DirectShow/BaseClasses/wxutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/DirectShow/BaseClasses/wxutil.h -------------------------------------------------------------------------------- /libs/External/snappy/AUTHORS: -------------------------------------------------------------------------------- 1 | opensource@google.com 2 | -------------------------------------------------------------------------------- /libs/External/snappy/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/COPYING -------------------------------------------------------------------------------- /libs/External/snappy/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/ChangeLog -------------------------------------------------------------------------------- /libs/External/snappy/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/INSTALL -------------------------------------------------------------------------------- /libs/External/snappy/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/Makefile.am -------------------------------------------------------------------------------- /libs/External/snappy/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/Makefile.in -------------------------------------------------------------------------------- /libs/External/snappy/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/NEWS -------------------------------------------------------------------------------- /libs/External/snappy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/README -------------------------------------------------------------------------------- /libs/External/snappy/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/aclocal.m4 -------------------------------------------------------------------------------- /libs/External/snappy/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/autogen.sh -------------------------------------------------------------------------------- /libs/External/snappy/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/config.guess -------------------------------------------------------------------------------- /libs/External/snappy/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/config.h -------------------------------------------------------------------------------- /libs/External/snappy/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/config.h.in -------------------------------------------------------------------------------- /libs/External/snappy/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/config.sub -------------------------------------------------------------------------------- /libs/External/snappy/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/configure -------------------------------------------------------------------------------- /libs/External/snappy/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/configure.ac -------------------------------------------------------------------------------- /libs/External/snappy/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/depcomp -------------------------------------------------------------------------------- /libs/External/snappy/format_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/format_description.txt -------------------------------------------------------------------------------- /libs/External/snappy/framing_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/framing_format.txt -------------------------------------------------------------------------------- /libs/External/snappy/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/install-sh -------------------------------------------------------------------------------- /libs/External/snappy/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/ltmain.sh -------------------------------------------------------------------------------- /libs/External/snappy/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/missing -------------------------------------------------------------------------------- /libs/External/snappy/snappy-c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/snappy-c.cc -------------------------------------------------------------------------------- /libs/External/snappy/snappy-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/snappy-c.h -------------------------------------------------------------------------------- /libs/External/snappy/snappy-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/snappy-internal.h -------------------------------------------------------------------------------- /libs/External/snappy/snappy-sinksource.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/snappy-sinksource.cc -------------------------------------------------------------------------------- /libs/External/snappy/snappy-sinksource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/snappy-sinksource.h -------------------------------------------------------------------------------- /libs/External/snappy/snappy-stubs-internal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/snappy-stubs-internal.cc -------------------------------------------------------------------------------- /libs/External/snappy/snappy-stubs-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/snappy-stubs-internal.h -------------------------------------------------------------------------------- /libs/External/snappy/snappy-stubs-public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/snappy-stubs-public.h -------------------------------------------------------------------------------- /libs/External/snappy/snappy-stubs-public.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/snappy-stubs-public.h.in -------------------------------------------------------------------------------- /libs/External/snappy/snappy-vs2008.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/snappy-vs2008.vcproj -------------------------------------------------------------------------------- /libs/External/snappy/snappy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/snappy.cc -------------------------------------------------------------------------------- /libs/External/snappy/snappy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/libs/External/snappy/snappy.h -------------------------------------------------------------------------------- /src/DSShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/src/DSShared.h -------------------------------------------------------------------------------- /src/DSUncompressedSampleGrabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/src/DSUncompressedSampleGrabber.cpp -------------------------------------------------------------------------------- /src/DSUncompressedSampleGrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/src/DSUncompressedSampleGrabber.h -------------------------------------------------------------------------------- /src/HapShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/src/HapShared.h -------------------------------------------------------------------------------- /src/ofxDSHapVideoPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/src/ofxDSHapVideoPlayer.cpp -------------------------------------------------------------------------------- /src/ofxDSHapVideoPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondstory/ofxDSHapVideoPlayer/HEAD/src/ofxDSHapVideoPlayer.h --------------------------------------------------------------------------------