├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── SDK ├── build_macosx_and_ios.py └── libtheoraplayer_sdk │ ├── LICENSE.txt │ └── README.txt ├── android-studio └── demos │ ├── .gitignore │ ├── .idea │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml │ ├── build.gradle │ ├── dummy │ ├── .gitignore │ ├── CMakeLists.txt │ ├── build.gradle │ └── src │ │ └── main │ │ └── AndroidManifest.xml │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── demos ├── ObjModel.cpp ├── ObjModel.h ├── OpenAL_AudioInterface.cpp ├── OpenAL_AudioInterface.h ├── basecode │ ├── glut │ │ └── glut_basecode.cpp │ ├── ios │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Default-568h@2x.png │ │ ├── Default-Landscape.png │ │ ├── Default-Landscape@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Info.plist │ │ ├── Shaders │ │ │ ├── Shader.fsh │ │ │ └── Shader.vsh │ │ ├── ViewController.h │ │ ├── ViewController.mm │ │ ├── ViewController_iPad.xib │ │ ├── ViewController_iPhone.xib │ │ ├── main.cpp │ │ └── main.mm │ └── util │ │ ├── objcUtil.h │ │ ├── objcUtil.mm │ │ ├── util.cpp │ │ └── util.h ├── demo_basecode.h ├── dependencies │ └── win32 │ │ ├── glext │ │ └── GL │ │ │ ├── glext.h │ │ │ └── wglext.h │ │ ├── glut │ │ ├── include │ │ │ └── GL │ │ │ │ └── glut.h │ │ └── lib │ │ │ ├── glut32.dll │ │ │ └── glut32.lib │ │ └── openal │ │ ├── include │ │ └── AL │ │ │ ├── al.h │ │ │ └── alc.h │ │ └── lib │ │ ├── OpenAL32.dll │ │ └── OpenAL32.lib ├── media │ ├── GreenTest.mp4 │ ├── GreenTest.ogv │ ├── YUVTest.mp4 │ ├── YUVTest.ogv │ ├── brawe │ │ ├── brawe_E.mp4 │ │ ├── brawe_E.ogv │ │ ├── brawe_N.mp4 │ │ ├── brawe_N.ogv │ │ ├── brawe_NE.mp4 │ │ ├── brawe_NE.ogv │ │ ├── brawe_NW.mp4 │ │ ├── brawe_NW.ogv │ │ ├── brawe_S.mp4 │ │ ├── brawe_S.ogv │ │ ├── brawe_SE.mp4 │ │ ├── brawe_SE.ogv │ │ ├── brawe_SW.mp4 │ │ ├── brawe_SW.ogv │ │ ├── brawe_W.mp4 │ │ └── brawe_W.ogv │ ├── bunny.mp4 │ ├── bunny.ogv │ ├── bunny.webm │ ├── button1.tga │ ├── button10.tga │ ├── button2.tga │ ├── button3.tga │ ├── button4.tga │ ├── button5.tga │ ├── button6.tga │ ├── button7.tga │ ├── button8.tga │ ├── button9.tga │ ├── copyright.txt │ ├── environment_mapping │ │ ├── room256.mp4 │ │ ├── room256.ogv │ │ └── teapot.obj │ ├── konqi.mp4 │ ├── konqi.ogv │ ├── lighting │ │ ├── camera.txt │ │ ├── diffuse_map.tga │ │ ├── lighting.mp4 │ │ ├── lighting.ogv │ │ └── room.obj │ ├── lightmap │ │ ├── diffuse_map.tga │ │ ├── light1.mp4 │ │ ├── light1.ogv │ │ ├── light2.mp4 │ │ ├── light2.ogv │ │ ├── light3.mp4 │ │ ├── light3.ogv │ │ └── room.obj │ ├── locv │ │ ├── locv_back.tga │ │ ├── locv_birds.tga │ │ ├── locv_branch.tga │ │ ├── locv_bush.tga │ │ ├── locv_clouds.tga │ │ ├── locv_eve.mp4 │ │ ├── locv_eve.ogv │ │ ├── locv_main.tga │ │ └── locv_water.ogv │ ├── parallax │ │ ├── diffuse_map.tga │ │ ├── normal_mapping.frag │ │ ├── normal_mapping.vert │ │ ├── parallax.mp4 │ │ ├── parallax.ogv │ │ ├── parallax_mapping.frag │ │ ├── parallax_mapping.vert │ │ ├── per_pixel_lighting.frag │ │ └── per_pixel_lighting.vert │ ├── room.mp4 │ ├── room.ogv │ ├── sample.mp4 │ ├── sample.ogv │ ├── short.mp4 │ ├── short.ogv │ ├── titan.mp4 │ ├── titan.ogv │ └── tv_room │ │ ├── chair1.obj │ │ ├── chair1.tga │ │ ├── chair2.obj │ │ ├── chair2.tga │ │ ├── room.obj │ │ ├── room.tga │ │ ├── table.obj │ │ ├── table.tga │ │ ├── tv.obj │ │ └── tv.tga ├── opengl_demos │ ├── demo_av.cpp │ ├── demo_av.h │ ├── demo_composite.cpp │ ├── demo_composite.h │ ├── demo_environment.cpp │ ├── demo_environment.h │ ├── demo_glutPlayer.cpp │ ├── demo_glutPlayer.h │ ├── demo_lightMap.cpp │ ├── demo_lightMap.h │ ├── demo_lighting.cpp │ ├── demo_lighting.h │ ├── demo_menu.cpp │ ├── demo_menu.h │ ├── demo_multiple.cpp │ ├── demo_multiple.h │ ├── demo_seek.cpp │ ├── demo_seek.h │ ├── demo_spriteAnimation.cpp │ ├── demo_spriteAnimation.h │ ├── demo_tv.cpp │ └── demo_tv.h ├── tga.cpp └── tga.h ├── libffmpeg ├── README.txt ├── doc │ ├── developer.html │ ├── examples │ │ ├── Makefile │ │ ├── README │ │ ├── avio_dir_cmd.c │ │ ├── avio_reading.c │ │ ├── decoding_encoding.c │ │ ├── demuxing_decoding.c │ │ ├── extract_mvs.c │ │ ├── filter_audio.c │ │ ├── filtering_audio.c │ │ ├── filtering_video.c │ │ ├── http_multiclient.c │ │ ├── metadata.c │ │ ├── muxing.c │ │ ├── qsvdec.c │ │ ├── remuxing.c │ │ ├── resampling_audio.c │ │ ├── scaling_video.c │ │ ├── transcode_aac.c │ │ └── transcoding.c │ ├── faq.html │ ├── fate.html │ ├── ffmpeg-all.html │ ├── ffmpeg-bitstream-filters.html │ ├── ffmpeg-codecs.html │ ├── ffmpeg-devices.html │ ├── ffmpeg-filters.html │ ├── ffmpeg-formats.html │ ├── ffmpeg-protocols.html │ ├── ffmpeg-resampler.html │ ├── ffmpeg-scaler.html │ ├── ffmpeg-utils.html │ ├── ffmpeg.html │ ├── ffplay-all.html │ ├── ffplay.html │ ├── ffprobe-all.html │ ├── ffprobe.html │ ├── general.html │ ├── git-howto.html │ ├── libavcodec.html │ ├── libavdevice.html │ ├── libavfilter.html │ ├── libavformat.html │ ├── libavutil.html │ ├── libswresample.html │ ├── libswscale.html │ ├── nut.html │ └── platform.html ├── include │ ├── libavcodec │ │ ├── avcodec.h │ │ ├── avdct.h │ │ ├── avfft.h │ │ ├── d3d11va.h │ │ ├── dirac.h │ │ ├── dv_profile.h │ │ ├── dxva2.h │ │ ├── jni.h │ │ ├── qsv.h │ │ ├── vaapi.h │ │ ├── vda.h │ │ ├── vdpau.h │ │ ├── version.h │ │ ├── videotoolbox.h │ │ ├── vorbis_parser.h │ │ └── xvmc.h │ ├── libavdevice │ │ ├── avdevice.h │ │ └── version.h │ ├── libavfilter │ │ ├── avfilter.h │ │ ├── avfiltergraph.h │ │ ├── buffersink.h │ │ ├── buffersrc.h │ │ └── version.h │ ├── libavformat │ │ ├── avformat.h │ │ ├── avio.h │ │ └── version.h │ ├── libavutil │ │ ├── adler32.h │ │ ├── aes.h │ │ ├── aes_ctr.h │ │ ├── attributes.h │ │ ├── audio_fifo.h │ │ ├── avassert.h │ │ ├── avconfig.h │ │ ├── avstring.h │ │ ├── avutil.h │ │ ├── base64.h │ │ ├── blowfish.h │ │ ├── bprint.h │ │ ├── bswap.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast5.h │ │ ├── channel_layout.h │ │ ├── common.h │ │ ├── cpu.h │ │ ├── crc.h │ │ ├── des.h │ │ ├── dict.h │ │ ├── display.h │ │ ├── downmix_info.h │ │ ├── error.h │ │ ├── eval.h │ │ ├── ffversion.h │ │ ├── fifo.h │ │ ├── file.h │ │ ├── frame.h │ │ ├── hash.h │ │ ├── hmac.h │ │ ├── hwcontext.h │ │ ├── hwcontext_cuda.h │ │ ├── hwcontext_vdpau.h │ │ ├── imgutils.h │ │ ├── intfloat.h │ │ ├── intreadwrite.h │ │ ├── lfg.h │ │ ├── log.h │ │ ├── lzo.h │ │ ├── macros.h │ │ ├── mastering_display_metadata.h │ │ ├── mathematics.h │ │ ├── md5.h │ │ ├── mem.h │ │ ├── motion_vector.h │ │ ├── murmur3.h │ │ ├── opt.h │ │ ├── parseutils.h │ │ ├── pixdesc.h │ │ ├── pixelutils.h │ │ ├── pixfmt.h │ │ ├── random_seed.h │ │ ├── rational.h │ │ ├── rc4.h │ │ ├── replaygain.h │ │ ├── ripemd.h │ │ ├── samplefmt.h │ │ ├── sha.h │ │ ├── sha512.h │ │ ├── stereo3d.h │ │ ├── tea.h │ │ ├── threadmessage.h │ │ ├── time.h │ │ ├── timecode.h │ │ ├── timestamp.h │ │ ├── tree.h │ │ ├── twofish.h │ │ ├── version.h │ │ └── xtea.h │ ├── libpostproc │ │ ├── postprocess.h │ │ └── version.h │ ├── libswresample │ │ ├── swresample.h │ │ └── version.h │ └── libswscale │ │ ├── swscale.h │ │ └── version.h ├── lib │ ├── avcodec-57.def │ ├── avcodec.lib │ ├── avdevice-57.def │ ├── avdevice.lib │ ├── avfilter-6.def │ ├── avfilter.lib │ ├── avformat-57.def │ ├── avformat.lib │ ├── avutil-55.def │ ├── avutil.lib │ ├── postproc-54.def │ ├── postproc.lib │ ├── swresample-2.def │ ├── swresample.lib │ ├── swscale-4.def │ └── swscale.lib └── licenses │ ├── bzip2.txt │ ├── fontconfig.txt │ ├── freetype.txt │ ├── frei0r.txt │ ├── gme.txt │ ├── gnutls.txt │ ├── lame.txt │ ├── libass.txt │ ├── libbluray.txt │ ├── libbs2b.txt │ ├── libcaca.txt │ ├── libgsm.txt │ ├── libiconv.txt │ ├── libilbc.txt │ ├── libmfx.txt │ ├── libmodplug.txt │ ├── libtheora.txt │ ├── libvorbis.txt │ ├── libvpx.txt │ ├── libwebp.txt │ ├── opencore-amr.txt │ ├── openjpeg.txt │ ├── opus.txt │ ├── rtmpdump.txt │ ├── schroedinger.txt │ ├── snappy.txt │ ├── soxr.txt │ ├── speex.txt │ ├── twolame.txt │ ├── vid.stab.txt │ ├── vo-amrwbenc.txt │ ├── wavpack.txt │ ├── x264.txt │ ├── x265.txt │ ├── xavs.txt │ ├── xvid.txt │ ├── xz.txt │ ├── zimg.txt │ └── zlib.txt ├── libtheoraplayer_vs2012.sln ├── libtheoraplayer_vs2013.sln ├── libtheoraplayer_vs2015.sln ├── msvc ├── vs2012 │ ├── opengl_demos.vcxproj │ ├── opengl_demos.vcxproj.filters │ └── props-demos │ │ ├── build-defaults.props │ │ ├── configuration.props │ │ ├── configurations.props │ │ └── default.props ├── vs2013 │ ├── opengl_demos.vcxproj │ ├── opengl_demos.vcxproj.filters │ └── props-demos │ │ ├── build-defaults.props │ │ ├── configuration.props │ │ ├── configurations.props │ │ └── default.props └── vs2015 │ ├── avcodec-57.dll │ ├── avdevice-57.dll │ ├── avfilter-6.dll │ ├── avformat-57.dll │ ├── avutil-55.dll │ ├── opengl_demos.vcxproj │ ├── opengl_demos.vcxproj.filters │ ├── postproc-54.dll │ ├── props-demos │ ├── build-defaults.props │ ├── configuration.props │ ├── configurations.props │ └── default.props │ ├── swresample-2.dll │ └── swscale-4.dll ├── ogg ├── COPYING ├── android-studio │ └── lib │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ └── src │ │ └── main │ │ └── AndroidManifest.xml ├── include │ └── ogg │ │ ├── config_types.h │ │ ├── config_types.h.in │ │ ├── ogg.h │ │ └── os_types.h ├── libtheoraplayer-readme.txt ├── macosx │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── Info.plist │ └── Ogg.xcodeproj │ │ └── project.pbxproj ├── msvc │ ├── vs2012 │ │ ├── libogg.vcxproj │ │ └── props │ │ │ ├── configuration.props │ │ │ └── default.props │ ├── vs2013-winp8 │ │ ├── libogg.vcxproj │ │ └── props │ │ │ ├── configuration.props │ │ │ └── default.props │ ├── vs2013-winrt │ │ ├── libogg.vcxproj │ │ └── props │ │ │ ├── configuration.props │ │ │ └── default.props │ ├── vs2013 │ │ ├── libogg.vcxproj │ │ └── props │ │ │ ├── configuration.props │ │ │ └── default.props │ └── vs2015 │ │ ├── libogg.vcxproj │ │ └── props │ │ ├── configuration.props │ │ └── default.props ├── src │ ├── bitwise.c │ └── framing.c ├── win32 │ ├── VS2008 │ │ ├── libogg_dynamic.sln │ │ ├── libogg_dynamic.vcproj │ │ ├── libogg_static.sln │ │ └── libogg_static.vcproj │ ├── VS2010 │ │ ├── libogg_dynamic.sln │ │ ├── libogg_dynamic.vcxproj │ │ ├── libogg_static.sln │ │ └── libogg_static.vcxproj │ ├── VS2012-WinRT │ │ ├── libogg_dynamic.sln │ │ └── libogg_dynamic.vcxproj │ ├── VS2012 │ │ ├── libogg_dynamic.sln │ │ ├── libogg_dynamic.vcxproj │ │ ├── libogg_static.sln │ │ └── libogg_static.vcxproj │ └── ogg.def └── xcconfig │ ├── Mac.xcconfig │ └── iOS.xcconfig ├── scripts ├── api.doxygen ├── doxygen_mainpage.h ├── logo.xcf └── logo_256.png ├── theora ├── COPYING ├── android-studio │ ├── lib-hltypes │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── AndroidManifest.xml │ └── lib │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ └── src │ │ └── main │ │ └── AndroidManifest.xml ├── include │ └── theora │ │ ├── codec.h │ │ ├── theora.h │ │ ├── theoradec.h │ │ └── theoraenc.h ├── lib │ ├── Version_script │ ├── Version_script-dec │ ├── Version_script-enc │ ├── analyze.c │ ├── apiwrapper.c │ ├── apiwrapper.h │ ├── arm │ │ ├── arm2gnu.pl │ │ ├── armbits.asm │ │ ├── armbits.h │ │ ├── armbits.s │ │ ├── armcpu.c │ │ ├── armcpu.h │ │ ├── armenc.c │ │ ├── armenc.h │ │ ├── armencfrag.s │ │ ├── armenquant.s │ │ ├── armfrag.asm │ │ ├── armfrag.s │ │ ├── armidct.asm │ │ ├── armidct.s │ │ ├── armint.h │ │ ├── armloop.asm │ │ ├── armloop.s │ │ ├── armopts-gnu.s │ │ ├── armopts.s │ │ ├── armopts.s.in │ │ └── armstate.c │ ├── arm_android_studio │ │ ├── armbits.asm │ │ ├── armbits.h │ │ ├── armcpu.c │ │ ├── armcpu.h │ │ ├── armenc.c │ │ ├── armenc.h │ │ ├── armfrag.asm │ │ ├── armidct.asm │ │ ├── armint.h │ │ ├── armloop.asm │ │ └── armstate.c │ ├── arm_llvm │ │ ├── armbits.asm │ │ ├── armbits.h │ │ ├── armcpu.c │ │ ├── armcpu.h │ │ ├── armenc.c │ │ ├── armenc.h │ │ ├── armfrag.asm │ │ ├── armidct.asm │ │ ├── armint.h │ │ ├── armloop.asm │ │ └── armstate.c │ ├── arm_llvm_android │ │ ├── armbits.asm │ │ ├── armbits.h │ │ ├── armcpu.c │ │ ├── armcpu.h │ │ ├── armenc.c │ │ ├── armenc.h │ │ ├── armfrag.asm │ │ ├── armidct.asm │ │ ├── armint.h │ │ ├── armloop.asm │ │ └── armstate.c │ ├── bitpack.c │ ├── bitpack.h │ ├── c64x │ │ ├── c64xdec.c │ │ ├── c64xdec.h │ │ ├── c64xfrag.c │ │ ├── c64xidct.c │ │ ├── c64xint.h │ │ └── c64xstate.c │ ├── collect.c │ ├── collect.h │ ├── dct.h │ ├── decapiwrapper.c │ ├── decinfo.c │ ├── decint.h │ ├── decode.c │ ├── defexp.awk │ ├── dequant.c │ ├── dequant.h │ ├── encapiwrapper.c │ ├── encfrag.c │ ├── encinfo.c │ ├── encint.h │ ├── encode.c │ ├── encoder_disabled.c │ ├── enquant.c │ ├── enquant.h │ ├── fdct.c │ ├── fragment.c │ ├── huffdec.c │ ├── huffdec.h │ ├── huffenc.c │ ├── huffenc.h │ ├── huffman.h │ ├── idct.c │ ├── info.c │ ├── internal.c │ ├── internal.h │ ├── mathops.c │ ├── mathops.h │ ├── mcenc.c │ ├── modedec.h │ ├── ocintrin.h │ ├── quant.c │ ├── quant.h │ ├── rate.c │ ├── state.c │ ├── state.h │ ├── theora.def │ ├── theora.exp │ ├── theoradec.exp │ ├── theoraenc.exp │ ├── tokenize.c │ ├── x86 │ │ ├── mmxencfrag.c │ │ ├── mmxfdct.c │ │ ├── mmxfrag.c │ │ ├── mmxidct.c │ │ ├── mmxloop.h │ │ ├── mmxstate.c │ │ ├── sse2encfrag.c │ │ ├── sse2fdct.c │ │ ├── sse2idct.c │ │ ├── sse2trans.h │ │ ├── x86cpu.c │ │ ├── x86cpu.h │ │ ├── x86enc.c │ │ ├── x86enc.h │ │ ├── x86enquant.c │ │ ├── x86int.h │ │ ├── x86state.c │ │ └── x86zigzag.h │ └── x86_vc │ │ ├── mmxencfrag.c │ │ ├── mmxfdct.c │ │ ├── mmxfrag.c │ │ ├── mmxidct.c │ │ ├── mmxloop.h │ │ ├── mmxstate.c │ │ ├── x86cpu.c │ │ ├── x86cpu.h │ │ ├── x86enc.c │ │ ├── x86enc.h │ │ ├── x86int.h │ │ ├── x86state.c │ │ └── x86zigzag.h ├── libtheoraplayer-readme.txt ├── macosx │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── Info.plist │ └── Theora.xcodeproj │ │ └── project.pbxproj ├── msvc │ ├── vs2015-uwp │ │ ├── libtheora.vcxproj │ │ ├── libtheora.vcxproj.filters │ │ └── props │ │ │ ├── configuration.props │ │ │ └── default.props │ └── vs2015 │ │ ├── libtheora.vcxproj │ │ ├── libtheora.vcxproj.filters │ │ └── props │ │ ├── configuration.props │ │ └── default.props ├── win32 │ ├── VS2008 │ │ ├── libogg.vsprops │ │ ├── libtheora │ │ │ ├── libtheora_dynamic.vcproj │ │ │ └── libtheora_static.vcproj │ │ ├── libtheora_dynamic.sln │ │ ├── libtheora_static.sln │ │ └── libvorbis.vsprops │ ├── VS2010 │ │ ├── libogg.props │ │ ├── libtheora │ │ │ ├── libtheora_dynamic.vcxproj │ │ │ └── libtheora_static.vcxproj │ │ ├── libtheora_dynamic.sln │ │ ├── libtheora_static.sln │ │ └── libvorbis.props │ ├── VS2012-WinRT │ │ ├── libogg.props │ │ ├── libtheora │ │ │ ├── libtheora_dynamic.vcxproj │ │ │ └── libtheora_dynamic.vcxproj.filters │ │ ├── libtheora_dynamic.sln │ │ └── libvorbis.props │ ├── VS2012 │ │ ├── libogg.props │ │ ├── libtheora │ │ │ ├── libtheora_dynamic.vcxproj │ │ │ ├── libtheora_dynamic.vcxproj.filters │ │ │ └── libtheora_static.vcxproj │ │ ├── libtheora_dynamic.sln │ │ ├── libtheora_static.sln │ │ └── libvorbis.props │ ├── build_theora_static.bat │ ├── build_theora_static_debug.bat │ ├── getopt.c │ ├── getopt1.c │ ├── getopt_win.h │ └── theora_static.dsp └── xcconfig │ ├── Mac.xcconfig │ └── iOS.xcconfig ├── theoraplayer ├── Info.plist ├── android-studio │ ├── generic │ │ ├── CMakeLists.txt │ │ ├── c.gradle │ │ ├── cpp.gradle │ │ ├── createObb.gradle │ │ ├── default.gradle │ │ └── native.gradle │ ├── lib-hltypes │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ └── AndroidManifest.xml │ └── lib │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ └── src │ │ └── main │ │ └── AndroidManifest.xml ├── fileproperties.rc ├── include │ └── theoraplayer │ │ ├── AudioInterface.h │ │ ├── AudioInterfaceFactory.h │ │ ├── AudioPacketQueue.h │ │ ├── DataSource.h │ │ ├── Exception.h │ │ ├── FileDataSource.h │ │ ├── FrameQueue.h │ │ ├── Manager.h │ │ ├── MemoryDataSource.h │ │ ├── PixelTransform.h │ │ ├── Timer.h │ │ ├── VideoClip.h │ │ ├── VideoFrame.h │ │ ├── theoraplayer.h │ │ └── theoraplayerExport.h ├── msvc │ ├── vs2015-uwp │ │ ├── libtheoraplayer.vcxproj │ │ ├── libtheoraplayer.vcxproj.filters │ │ ├── props-generic │ │ │ ├── build-defaults.props │ │ │ ├── configurations.props │ │ │ ├── platform-ARM.props │ │ │ ├── platform-Win32.props │ │ │ ├── platform-x64.props │ │ │ └── system.props │ │ └── props │ │ │ ├── configuration.props │ │ │ └── default.props │ └── vs2015 │ │ ├── libtheoraplayer.vcxproj │ │ ├── libtheoraplayer.vcxproj.filters │ │ ├── props-generic │ │ ├── build-defaults.props │ │ ├── configurations.props │ │ ├── platform-Android-x86.props │ │ ├── platform-Android.props │ │ ├── platform-Win32.props │ │ ├── platform-x64.props │ │ └── system.props │ │ └── props │ │ ├── configuration.props │ │ └── default.props ├── plugins │ ├── clipavfoundation │ │ ├── Info.plist │ │ ├── clipavfoundation.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── fileproperties.rc │ │ ├── include │ │ │ └── clipavfoundation │ │ │ │ ├── clipavfoundation.h │ │ │ │ └── clipavfoundationExport.h │ │ ├── msvc │ │ │ └── vs2015 │ │ │ │ ├── libclipavfoundation.vcxproj │ │ │ │ ├── libclipavfoundation.vcxproj.filters │ │ │ │ └── props │ │ │ │ ├── configuration.props │ │ │ │ └── default.props │ │ ├── src │ │ │ ├── Utility.cpp │ │ │ ├── Utility.h │ │ │ ├── VideoClip.h │ │ │ ├── VideoClip.mm │ │ │ └── clipavfoundation.cpp │ │ └── xcconfig │ │ │ ├── Mac.xcconfig │ │ │ └── iOS.xcconfig │ ├── clipffmpeg │ │ ├── Info.plist │ │ ├── clipffmpeg.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── fileproperties.rc │ │ ├── include │ │ │ └── clipffmpeg │ │ │ │ ├── clipffmpeg.h │ │ │ │ └── clipffmpegExport.h │ │ ├── msvc │ │ │ └── vs2015 │ │ │ │ ├── libclipffmpeg.vcxproj │ │ │ │ ├── libclipffmpeg.vcxproj.filters │ │ │ │ └── props │ │ │ │ ├── configuration.props │ │ │ │ └── default.props │ │ ├── src │ │ │ ├── Utility.cpp │ │ │ ├── Utility.h │ │ │ ├── VideoClip.cpp │ │ │ ├── VideoClip.h │ │ │ └── clipffmpeg.cpp │ │ └── xcconfig │ │ │ ├── Mac.xcconfig │ │ │ └── iOS.xcconfig │ └── clipwebm │ │ ├── Info.plist │ │ ├── clipwebm.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── fileproperties.rc │ │ ├── include │ │ └── clipwebm │ │ │ ├── clipwebm.h │ │ │ └── clipwebmExport.h │ │ ├── msvc │ │ └── vs2015 │ │ │ ├── libclipwebm.vcxproj │ │ │ ├── libclipwebm.vcxproj.filters │ │ │ └── props │ │ │ ├── configuration.props │ │ │ └── default.props │ │ ├── src │ │ ├── MkvReader.cpp │ │ ├── MkvReader.h │ │ ├── Utility.cpp │ │ ├── Utility.h │ │ ├── VideoClip.cpp │ │ ├── VideoClip.h │ │ ├── clipwebm.cpp │ │ ├── webmdec.cc │ │ └── webmdec.h │ │ └── xcconfig │ │ ├── Mac.xcconfig │ │ └── iOS.xcconfig ├── src │ ├── AudioInterface.cpp │ ├── AudioInterfaceFactory.cpp │ ├── AudioPacketQueue.cpp │ ├── DataSource.cpp │ ├── Exception.cpp │ ├── FileDataSource.cpp │ ├── FrameQueue.cpp │ ├── Manager.cpp │ ├── MemoryDataSource.cpp │ ├── Mutex.cpp │ ├── Mutex.h │ ├── Thread.cpp │ ├── Thread.h │ ├── Timer.cpp │ ├── Utility.cpp │ ├── Utility.h │ ├── VideoClip.cpp │ ├── VideoFrame.cpp │ ├── WorkerThread.cpp │ ├── WorkerThread.h │ ├── YUV │ │ ├── C │ │ │ ├── yuv420_grey_c.c │ │ │ ├── yuv420_rgb_c.c │ │ │ └── yuv420_yuv_c.c │ │ ├── android │ │ │ ├── cpu-features.c │ │ │ └── cpu-features.h │ │ ├── libyuv │ │ │ ├── LICENSE │ │ │ ├── LICENSE_THIRD_PARTY │ │ │ ├── include │ │ │ │ ├── libyuv.h │ │ │ │ └── libyuv │ │ │ │ │ ├── basic_types.h │ │ │ │ │ ├── compare.h │ │ │ │ │ ├── compare_row.h │ │ │ │ │ ├── convert.h │ │ │ │ │ ├── convert_argb.h │ │ │ │ │ ├── convert_from.h │ │ │ │ │ ├── convert_from_argb.h │ │ │ │ │ ├── cpu_id.h │ │ │ │ │ ├── macros_msa.h │ │ │ │ │ ├── mjpeg_decoder.h │ │ │ │ │ ├── planar_functions.h │ │ │ │ │ ├── rotate.h │ │ │ │ │ ├── rotate_argb.h │ │ │ │ │ ├── rotate_row.h │ │ │ │ │ ├── row.h │ │ │ │ │ ├── scale.h │ │ │ │ │ ├── scale_argb.h │ │ │ │ │ ├── scale_row.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── video_common.h │ │ │ ├── libtheoraplayer-readme.txt │ │ │ ├── src │ │ │ │ ├── compare.cc │ │ │ │ ├── compare_common.cc │ │ │ │ ├── compare_gcc.cc │ │ │ │ ├── compare_neon.cc │ │ │ │ ├── compare_neon64.cc │ │ │ │ ├── compare_posix.cc │ │ │ │ ├── compare_win.cc │ │ │ │ ├── convert.cc │ │ │ │ ├── convert_argb.cc │ │ │ │ ├── convert_from.cc │ │ │ │ ├── convert_from_argb.cc │ │ │ │ ├── convert_jpeg.cc │ │ │ │ ├── convert_to_argb.cc │ │ │ │ ├── convert_to_i420.cc │ │ │ │ ├── cpu_id.cc │ │ │ │ ├── mjpeg_decoder.cc │ │ │ │ ├── mjpeg_validate.cc │ │ │ │ ├── planar_functions.cc │ │ │ │ ├── rotate.cc │ │ │ │ ├── rotate_any.cc │ │ │ │ ├── rotate_argb.cc │ │ │ │ ├── rotate_common.cc │ │ │ │ ├── rotate_dspr2.cc │ │ │ │ ├── rotate_gcc.cc │ │ │ │ ├── rotate_mips.cc │ │ │ │ ├── rotate_msa.cc │ │ │ │ ├── rotate_neon.cc │ │ │ │ ├── rotate_neon64.cc │ │ │ │ ├── rotate_win.cc │ │ │ │ ├── row_any.cc │ │ │ │ ├── row_common.cc │ │ │ │ ├── row_dspr2.cc │ │ │ │ ├── row_gcc.cc │ │ │ │ ├── row_mips.cc │ │ │ │ ├── row_msa.cc │ │ │ │ ├── row_neon.cc │ │ │ │ ├── row_neon64.cc │ │ │ │ ├── row_posix.cc │ │ │ │ ├── row_win.cc │ │ │ │ ├── scale.cc │ │ │ │ ├── scale_any.cc │ │ │ │ ├── scale_argb.cc │ │ │ │ ├── scale_common.cc │ │ │ │ ├── scale_dspr2.cc │ │ │ │ ├── scale_gcc.cc │ │ │ │ ├── scale_mips.cc │ │ │ │ ├── scale_msa.cc │ │ │ │ ├── scale_neon.cc │ │ │ │ ├── scale_neon64.cc │ │ │ │ ├── scale_posix.cc │ │ │ │ ├── scale_win.cc │ │ │ │ └── video_common.cc │ │ │ ├── yuv_libyuv.c │ │ │ └── yuv_libyuv.h │ │ ├── yuv_util.c │ │ └── yuv_util.h │ ├── formats │ │ └── Theora │ │ │ ├── VideoClip_Theora.cpp │ │ │ └── VideoClip_Theora.h │ └── theoraplayer.cpp ├── theoraplayer.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── xcconfig │ ├── Mac.xcconfig │ └── iOS.xcconfig ├── tremor ├── COPYING ├── Tremor.xcodeproj │ └── project.pbxproj ├── android-studio │ └── lib │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ └── src │ │ └── main │ │ └── AndroidManifest.xml ├── asm_arm.h ├── backends.h ├── block.c ├── block.h ├── codebook.c ├── codebook.h ├── codec_internal.h ├── config_types.h ├── floor0.c ├── floor1.c ├── info.c ├── ivorbiscodec.h ├── ivorbisfile.h ├── libtheoraplayer-readme.txt ├── lsp_lookup.h ├── mapping0.c ├── mdct.c ├── mdct.h ├── mdct_lookup.h ├── misc.h ├── msvc │ ├── vs2012 │ │ ├── libtremor.vcxproj │ │ ├── libtremor.vcxproj.filters │ │ └── props │ │ │ ├── configuration.props │ │ │ └── default.props │ ├── vs2013 │ │ ├── libtremor.vcxproj │ │ ├── libtremor.vcxproj.filters │ │ └── props │ │ │ ├── configuration.props │ │ │ └── default.props │ └── vs2015 │ │ ├── libtremor.vcxproj │ │ ├── libtremor.vcxproj.filters │ │ └── props │ │ ├── configuration.props │ │ └── default.props ├── os.h ├── registry.c ├── registry.h ├── res012.c ├── sharedbook.c ├── synthesis.c ├── vorbisfile.c ├── win32 │ └── VS2012 │ │ └── libtremor │ │ ├── libtremor.vcxproj │ │ └── libtremor.vcxproj.filters ├── window.c ├── window.h ├── window_lookup.h └── xcconfig │ ├── Mac.xcconfig │ └── iOS.xcconfig ├── vorbis ├── COPYING ├── include │ └── vorbis │ │ ├── codec.h │ │ ├── vorbisenc.h │ │ └── vorbisfile.h ├── lib │ ├── analysis.c │ ├── backends.h │ ├── barkmel.c │ ├── bitrate.c │ ├── bitrate.h │ ├── block.c │ ├── books │ │ ├── coupled │ │ │ ├── res_books_51.h │ │ │ └── res_books_stereo.h │ │ ├── floor │ │ │ └── floor_books.h │ │ └── uncoupled │ │ │ └── res_books_uncoupled.h │ ├── codebook.c │ ├── codebook.h │ ├── codec_internal.h │ ├── envelope.c │ ├── envelope.h │ ├── floor0.c │ ├── floor1.c │ ├── highlevel.h │ ├── info.c │ ├── lookup.c │ ├── lookup.h │ ├── lookup_data.h │ ├── lookups.pl │ ├── lpc.c │ ├── lpc.h │ ├── lsp.c │ ├── lsp.h │ ├── mapping0.c │ ├── masking.h │ ├── mdct.c │ ├── mdct.h │ ├── misc.h │ ├── modes │ │ ├── floor_all.h │ │ ├── psych_11.h │ │ ├── psych_16.h │ │ ├── psych_44.h │ │ ├── psych_8.h │ │ ├── residue_16.h │ │ ├── residue_44.h │ │ ├── residue_44p51.h │ │ ├── residue_44u.h │ │ ├── residue_8.h │ │ ├── setup_11.h │ │ ├── setup_16.h │ │ ├── setup_22.h │ │ ├── setup_32.h │ │ ├── setup_44.h │ │ ├── setup_44p51.h │ │ ├── setup_44u.h │ │ ├── setup_8.h │ │ └── setup_X.h │ ├── os.h │ ├── psy.c │ ├── psy.h │ ├── psytune.c │ ├── registry.c │ ├── registry.h │ ├── res0.c │ ├── scales.h │ ├── sharedbook.c │ ├── smallft.c │ ├── smallft.h │ ├── synthesis.c │ ├── tone.c │ ├── vorbisenc.c │ ├── vorbisfile.c │ ├── window.c │ └── window.h ├── libtheoraplayer-readme.txt ├── macosx │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── Info.plist │ └── Vorbis.xcodeproj │ │ └── project.pbxproj ├── msvc │ ├── vs2012 │ │ ├── libvorbis.vcxproj │ │ ├── libvorbisfile.vcxproj │ │ └── props │ │ │ ├── configuration.props │ │ │ └── default.props │ ├── vs2013-winp8 │ │ ├── libvorbis.vcxproj │ │ ├── libvorbisfile.vcxproj │ │ └── props │ │ │ ├── configuration.props │ │ │ └── default.props │ ├── vs2013-winrt │ │ ├── libvorbis.vcxproj │ │ ├── libvorbisfile.vcxproj │ │ └── props │ │ │ ├── configuration.props │ │ │ └── default.props │ ├── vs2013 │ │ ├── libvorbis.vcxproj │ │ ├── libvorbisfile.vcxproj │ │ └── props │ │ │ ├── configuration.props │ │ │ └── default.props │ └── vs2015 │ │ ├── libvorbis.vcxproj │ │ ├── libvorbisfile.vcxproj │ │ └── props │ │ ├── configuration.props │ │ └── default.props ├── win32 │ ├── VS2008 │ │ ├── README │ │ ├── libogg.vsprops │ │ ├── libvorbis │ │ │ ├── libvorbis_dynamic.vcproj │ │ │ └── libvorbis_static.vcproj │ │ ├── libvorbisfile │ │ │ ├── libvorbisfile_dynamic.vcproj │ │ │ └── libvorbisfile_static.vcproj │ │ ├── vorbis_dynamic.sln │ │ ├── vorbis_static.sln │ │ ├── vorbisdec │ │ │ ├── vorbisdec_dynamic.vcproj │ │ │ └── vorbisdec_static.vcproj │ │ └── vorbisenc │ │ │ ├── vorbisenc_dynamic.vcproj │ │ │ └── vorbisenc_static.vcproj │ ├── VS2010 │ │ ├── libogg.props │ │ ├── libvorbis │ │ │ ├── libvorbis_dynamic.vcxproj │ │ │ └── libvorbis_static.vcxproj │ │ ├── libvorbisfile │ │ │ ├── libvorbisfile_dynamic.vcxproj │ │ │ └── libvorbisfile_static.vcxproj │ │ ├── vorbis_dynamic.sln │ │ ├── vorbis_static.sln │ │ ├── vorbisdec │ │ │ ├── vorbisdec_dynamic.vcxproj │ │ │ └── vorbisdec_static.vcxproj │ │ └── vorbisenc │ │ │ ├── vorbisenc_dynamic.vcxproj │ │ │ └── vorbisenc_static.vcxproj │ ├── VS2012-WinRT │ │ ├── README │ │ ├── libogg.props │ │ ├── libvorbis │ │ │ └── libvorbis_dynamic.vcxproj │ │ ├── libvorbisfile │ │ │ └── libvorbisfile_dynamic.vcxproj │ │ └── vorbis_dynamic.sln │ ├── VS2012 │ │ ├── README │ │ ├── libogg.props │ │ ├── libvorbis │ │ │ ├── libvorbis_dynamic.vcxproj │ │ │ └── libvorbis_static.vcxproj │ │ ├── libvorbisfile │ │ │ ├── libvorbisfile_dynamic.vcxproj │ │ │ └── libvorbisfile_static.vcxproj │ │ ├── vorbis_dynamic.sln │ │ ├── vorbis_static.sln │ │ ├── vorbisdec │ │ │ ├── vorbisdec_dynamic.vcxproj │ │ │ └── vorbisdec_static.vcxproj │ │ └── vorbisenc │ │ │ ├── vorbisenc_dynamic.vcxproj │ │ │ └── vorbisenc_static.vcxproj │ ├── vorbis.def │ ├── vorbisenc.def │ └── vorbisfile.def └── xcconfig │ ├── Mac.xcconfig │ └── iOS.xcconfig ├── vpx ├── .bins ├── .docs ├── .gitattributes ├── .gitignore ├── .mailmap ├── .nodevenv.once ├── .projects ├── AUTHORS ├── CHANGELOG ├── LICENSE ├── Makefile ├── PATENTS ├── README ├── args.c ├── args.h ├── codereview.settings ├── configure ├── decode_to_md5.vcxproj ├── decode_with_drops.vcxproj ├── gtest.vcxproj ├── ivfdec.c ├── ivfdec.h ├── ivfenc.c ├── ivfenc.h ├── keywords.dox ├── libs.doxy_template ├── macosx │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── Info.plist │ └── Vpx.xcodeproj │ │ └── project.pbxproj ├── mainpage.dox ├── md5_utils.c ├── md5_utils.h ├── msvc │ ├── util │ │ ├── readme.txt │ │ └── vsyasm.exe │ ├── vs2012 │ │ ├── libvpx.vcxproj │ │ ├── libvpxdec.vcxproj │ │ └── props │ │ │ ├── configuration.props │ │ │ └── default.props │ ├── vs2013 │ │ ├── libvpx.vcxproj │ │ ├── libvpxdec.vcxproj │ │ └── props │ │ │ ├── configuration.props │ │ │ └── default.props │ └── vs2015 │ │ ├── libvpx.vcxproj │ │ ├── libvpxdec.vcxproj │ │ └── props │ │ ├── configuration.props │ │ └── default.props ├── postproc.vcxproj ├── rate_hist.c ├── rate_hist.h ├── resize_util.vcxproj ├── set_maps.vcxproj ├── simple_decoder.vcxproj ├── simple_encoder.vcxproj ├── test_intra_pred_speed.vcxproj ├── test_libvpx.vcxproj ├── third_party │ ├── googletest │ │ ├── README.libvpx │ │ └── src │ │ │ ├── CHANGES │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── include │ │ │ └── gtest │ │ │ │ └── gtest.h │ │ │ └── src │ │ │ ├── gtest-all.cc │ │ │ └── gtest_main.cc │ ├── libwebm │ │ ├── AUTHORS.TXT │ │ ├── LICENSE.TXT │ │ ├── PATENTS.TXT │ │ ├── README.libvpx │ │ ├── RELEASE.TXT │ │ ├── mkvmuxer.cpp │ │ ├── mkvmuxer.hpp │ │ ├── mkvmuxertypes.hpp │ │ ├── mkvmuxerutil.cpp │ │ ├── mkvmuxerutil.hpp │ │ ├── mkvparser.cpp │ │ ├── mkvparser.hpp │ │ ├── mkvreader.cpp │ │ ├── mkvreader.hpp │ │ ├── mkvwriter.cpp │ │ ├── mkvwriter.hpp │ │ └── webmids.hpp │ ├── libyuv │ │ ├── README.libvpx │ │ ├── include │ │ │ └── libyuv │ │ │ │ ├── basic_types.h │ │ │ │ ├── compare.h │ │ │ │ ├── convert.h │ │ │ │ ├── convert_argb.h │ │ │ │ ├── convert_from.h │ │ │ │ ├── convert_from_argb.h │ │ │ │ ├── cpu_id.h │ │ │ │ ├── mjpeg_decoder.h │ │ │ │ ├── planar_functions.h │ │ │ │ ├── rotate.h │ │ │ │ ├── rotate_argb.h │ │ │ │ ├── rotate_row.h │ │ │ │ ├── row.h │ │ │ │ ├── scale.h │ │ │ │ ├── scale_argb.h │ │ │ │ ├── scale_row.h │ │ │ │ ├── version.h │ │ │ │ └── video_common.h │ │ └── source │ │ │ ├── compare.cc │ │ │ ├── compare_common.cc │ │ │ ├── compare_gcc.cc │ │ │ ├── compare_neon.cc │ │ │ ├── compare_neon64.cc │ │ │ ├── compare_win.cc │ │ │ ├── convert.cc │ │ │ ├── convert_argb.cc │ │ │ ├── convert_from.cc │ │ │ ├── convert_from_argb.cc │ │ │ ├── convert_jpeg.cc │ │ │ ├── convert_to_argb.cc │ │ │ ├── convert_to_i420.cc │ │ │ ├── cpu_id.cc │ │ │ ├── mjpeg_decoder.cc │ │ │ ├── mjpeg_validate.cc │ │ │ ├── planar_functions.cc │ │ │ ├── rotate.cc │ │ │ ├── rotate_any.cc │ │ │ ├── rotate_argb.cc │ │ │ ├── rotate_common.cc │ │ │ ├── rotate_gcc.cc │ │ │ ├── rotate_mips.cc │ │ │ ├── rotate_neon.cc │ │ │ ├── rotate_neon64.cc │ │ │ ├── rotate_win.cc │ │ │ ├── row_any.cc │ │ │ ├── row_common.cc │ │ │ ├── row_gcc.cc │ │ │ ├── row_mips.cc │ │ │ ├── row_neon.cc │ │ │ ├── row_neon64.cc │ │ │ ├── row_win.cc │ │ │ ├── row_x86.asm │ │ │ ├── scale.cc │ │ │ ├── scale_any.cc │ │ │ ├── scale_argb.cc │ │ │ ├── scale_common.cc │ │ │ ├── scale_gcc.cc │ │ │ ├── scale_mips.cc │ │ │ ├── scale_neon.cc │ │ │ ├── scale_neon64.cc │ │ │ ├── scale_win.cc │ │ │ ├── video_common.cc │ │ │ └── x86inc.asm │ └── x86inc │ │ ├── LICENSE │ │ ├── README.libvpx │ │ └── x86inc.asm ├── tools_common.c ├── tools_common.h ├── twopass_encoder.vcxproj ├── usage.dox ├── usage_cx.dox ├── usage_dx.dox ├── video_common.h ├── video_reader.c ├── video_reader.h ├── video_writer.c ├── video_writer.h ├── vp10 │ ├── common │ │ ├── alloccommon.c │ │ ├── alloccommon.h │ │ ├── arm │ │ │ └── neon │ │ │ │ ├── iht4x4_add_neon.c │ │ │ │ └── iht8x8_add_neon.c │ │ ├── blockd.c │ │ ├── blockd.h │ │ ├── common.h │ │ ├── common_data.h │ │ ├── debugmodes.c │ │ ├── entropy.c │ │ ├── entropy.h │ │ ├── entropymode.c │ │ ├── entropymode.h │ │ ├── entropymv.c │ │ ├── entropymv.h │ │ ├── enums.h │ │ ├── filter.c │ │ ├── filter.h │ │ ├── frame_buffers.c │ │ ├── frame_buffers.h │ │ ├── idct.c │ │ ├── idct.h │ │ ├── loopfilter.c │ │ ├── loopfilter.h │ │ ├── mfqe.c │ │ ├── mfqe.h │ │ ├── mips │ │ │ ├── dspr2 │ │ │ │ ├── itrans16_dspr2.c │ │ │ │ ├── itrans4_dspr2.c │ │ │ │ └── itrans8_dspr2.c │ │ │ └── msa │ │ │ │ ├── idct16x16_msa.c │ │ │ │ ├── idct4x4_msa.c │ │ │ │ ├── idct8x8_msa.c │ │ │ │ └── mfqe_msa.c │ │ ├── mv.h │ │ ├── mvref_common.c │ │ ├── mvref_common.h │ │ ├── onyxc_int.h │ │ ├── postproc.c │ │ ├── postproc.h │ │ ├── ppflags.h │ │ ├── pred_common.c │ │ ├── pred_common.h │ │ ├── quant_common.c │ │ ├── quant_common.h │ │ ├── reconinter.c │ │ ├── reconinter.h │ │ ├── reconintra.c │ │ ├── reconintra.h │ │ ├── scale.c │ │ ├── scale.h │ │ ├── scan.c │ │ ├── scan.h │ │ ├── seg_common.c │ │ ├── seg_common.h │ │ ├── textblit.c │ │ ├── textblit.h │ │ ├── thread_common.c │ │ ├── thread_common.h │ │ ├── tile_common.c │ │ ├── tile_common.h │ │ ├── vp10_fwd_txfm.c │ │ ├── vp10_fwd_txfm.h │ │ ├── vp10_inv_txfm.c │ │ ├── vp10_inv_txfm.h │ │ ├── vp10_rtcd.c │ │ ├── vp10_rtcd_defs.pl │ │ └── x86 │ │ │ ├── idct_intrin_sse2.c │ │ │ ├── mfqe_sse2.asm │ │ │ ├── postproc_sse2.asm │ │ │ ├── vp10_fwd_dct32x32_impl_sse2.h │ │ │ ├── vp10_fwd_txfm_impl_sse2.h │ │ │ ├── vp10_fwd_txfm_sse2.c │ │ │ ├── vp10_inv_txfm_sse2.c │ │ │ └── vp10_inv_txfm_sse2.h │ ├── decoder │ │ ├── decodeframe.c │ │ ├── decodeframe.h │ │ ├── decodemv.c │ │ ├── decodemv.h │ │ ├── decoder.c │ │ ├── decoder.h │ │ ├── detokenize.c │ │ ├── detokenize.h │ │ ├── dsubexp.c │ │ ├── dsubexp.h │ │ ├── dthread.c │ │ └── dthread.h │ ├── encoder │ │ ├── aq_complexity.c │ │ ├── aq_complexity.h │ │ ├── aq_cyclicrefresh.c │ │ ├── aq_cyclicrefresh.h │ │ ├── aq_variance.c │ │ ├── aq_variance.h │ │ ├── arm │ │ │ └── neon │ │ │ │ ├── avg_neon.c │ │ │ │ ├── dct_neon.c │ │ │ │ ├── error_neon.c │ │ │ │ └── quantize_neon.c │ │ ├── avg.c │ │ ├── bitstream.c │ │ ├── bitstream.h │ │ ├── block.h │ │ ├── blockiness.c │ │ ├── context_tree.c │ │ ├── context_tree.h │ │ ├── cost.c │ │ ├── cost.h │ │ ├── dct.c │ │ ├── denoiser.c │ │ ├── denoiser.h │ │ ├── encodeframe.c │ │ ├── encodeframe.h │ │ ├── encodemb.c │ │ ├── encodemb.h │ │ ├── encodemv.c │ │ ├── encodemv.h │ │ ├── encoder.c │ │ ├── encoder.h │ │ ├── ethread.c │ │ ├── ethread.h │ │ ├── extend.c │ │ ├── extend.h │ │ ├── firstpass.c │ │ ├── firstpass.h │ │ ├── lookahead.c │ │ ├── lookahead.h │ │ ├── mbgraph.c │ │ ├── mbgraph.h │ │ ├── mcomp.c │ │ ├── mcomp.h │ │ ├── mips │ │ │ └── msa │ │ │ │ ├── avg_msa.c │ │ │ │ ├── error_msa.c │ │ │ │ ├── fdct16x16_msa.c │ │ │ │ ├── fdct4x4_msa.c │ │ │ │ ├── fdct8x8_msa.c │ │ │ │ ├── fdct_msa.h │ │ │ │ └── temporal_filter_msa.c │ │ ├── palette.c │ │ ├── palette.h │ │ ├── picklpf.c │ │ ├── picklpf.h │ │ ├── quantize.c │ │ ├── quantize.h │ │ ├── ratectrl.c │ │ ├── ratectrl.h │ │ ├── rd.c │ │ ├── rd.h │ │ ├── rdopt.c │ │ ├── rdopt.h │ │ ├── resize.c │ │ ├── resize.h │ │ ├── segmentation.c │ │ ├── segmentation.h │ │ ├── skin_detection.c │ │ ├── skin_detection.h │ │ ├── speed_features.c │ │ ├── speed_features.h │ │ ├── subexp.c │ │ ├── subexp.h │ │ ├── temporal_filter.c │ │ ├── temporal_filter.h │ │ ├── tokenize.c │ │ ├── tokenize.h │ │ ├── treewriter.c │ │ ├── treewriter.h │ │ └── x86 │ │ │ ├── avg_intrin_sse2.c │ │ │ ├── dct_mmx.asm │ │ │ ├── dct_sse2.c │ │ │ ├── dct_ssse3.c │ │ │ ├── dct_ssse3_x86_64.asm │ │ │ ├── denoiser_sse2.c │ │ │ ├── error_intrin_avx2.c │ │ │ ├── error_sse2.asm │ │ │ ├── highbd_block_error_intrin_sse2.c │ │ │ ├── quantize_sse2.c │ │ │ ├── quantize_ssse3_x86_64.asm │ │ │ ├── ssim_opt_x86_64.asm │ │ │ └── temporal_filter_apply_sse2.asm │ ├── exports_dec │ ├── exports_enc │ ├── vp10_common.mk │ ├── vp10_cx_iface.c │ ├── vp10_dx_iface.c │ ├── vp10_iface_common.h │ ├── vp10cx.mk │ └── vp10dx.mk ├── vp8 │ ├── common │ │ ├── alloccommon.c │ │ ├── alloccommon.h │ │ ├── arm │ │ │ ├── armv6 │ │ │ │ ├── bilinearfilter_v6.asm │ │ │ │ ├── copymem16x16_v6.asm │ │ │ │ ├── copymem8x4_v6.asm │ │ │ │ ├── copymem8x8_v6.asm │ │ │ │ ├── dc_only_idct_add_v6.asm │ │ │ │ ├── dequant_idct_v6.asm │ │ │ │ ├── dequantize_v6.asm │ │ │ │ ├── filter_v6.asm │ │ │ │ ├── idct_blk_v6.c │ │ │ │ ├── idct_v6.asm │ │ │ │ ├── iwalsh_v6.asm │ │ │ │ ├── loopfilter_v6.asm │ │ │ │ ├── simpleloopfilter_v6.asm │ │ │ │ └── sixtappredict8x4_v6.asm │ │ │ ├── bilinearfilter_arm.c │ │ │ ├── bilinearfilter_arm.h │ │ │ ├── dequantize_arm.c │ │ │ ├── filter_arm.c │ │ │ ├── loopfilter_arm.c │ │ │ └── neon │ │ │ │ ├── bilinearpredict_neon.c │ │ │ │ ├── copymem_neon.c │ │ │ │ ├── dc_only_idct_add_neon.c │ │ │ │ ├── dequant_idct_neon.c │ │ │ │ ├── dequantizeb_neon.c │ │ │ │ ├── idct_blk_neon.c │ │ │ │ ├── idct_dequant_0_2x_neon.c │ │ │ │ ├── idct_dequant_full_2x_neon.c │ │ │ │ ├── iwalsh_neon.c │ │ │ │ ├── loopfiltersimplehorizontaledge_neon.c │ │ │ │ ├── loopfiltersimpleverticaledge_neon.c │ │ │ │ ├── mbloopfilter_neon.c │ │ │ │ ├── shortidct4x4llm_neon.c │ │ │ │ ├── sixtappredict_neon.c │ │ │ │ └── vp8_loopfilter_neon.c │ │ ├── blockd.c │ │ ├── blockd.h │ │ ├── coefupdateprobs.h │ │ ├── common.h │ │ ├── context.c │ │ ├── copy_c.c │ │ ├── debugmodes.c │ │ ├── default_coef_probs.h │ │ ├── dequantize.c │ │ ├── entropy.c │ │ ├── entropy.h │ │ ├── entropymode.c │ │ ├── entropymode.h │ │ ├── entropymv.c │ │ ├── entropymv.h │ │ ├── extend.c │ │ ├── extend.h │ │ ├── filter.c │ │ ├── filter.h │ │ ├── findnearmv.c │ │ ├── findnearmv.h │ │ ├── generic │ │ │ └── systemdependent.c │ │ ├── header.h │ │ ├── idct_blk.c │ │ ├── idctllm.c │ │ ├── invtrans.h │ │ ├── loopfilter.h │ │ ├── loopfilter_filters.c │ │ ├── mbpitch.c │ │ ├── mfqe.c │ │ ├── mips │ │ │ ├── dspr2 │ │ │ │ ├── dequantize_dspr2.c │ │ │ │ ├── filter_dspr2.c │ │ │ │ ├── idct_blk_dspr2.c │ │ │ │ ├── idctllm_dspr2.c │ │ │ │ ├── reconinter_dspr2.c │ │ │ │ └── vp8_loopfilter_filters_dspr2.c │ │ │ └── msa │ │ │ │ ├── bilinear_filter_msa.c │ │ │ │ ├── copymem_msa.c │ │ │ │ ├── idct_msa.c │ │ │ │ ├── loopfilter_filters_msa.c │ │ │ │ ├── mfqe_msa.c │ │ │ │ ├── postproc_msa.c │ │ │ │ ├── sixtap_filter_msa.c │ │ │ │ └── vp8_macros_msa.h │ │ ├── modecont.c │ │ ├── modecont.h │ │ ├── mv.h │ │ ├── onyx.h │ │ ├── onyxc_int.h │ │ ├── onyxd.h │ │ ├── postproc.c │ │ ├── postproc.h │ │ ├── ppflags.h │ │ ├── quant_common.c │ │ ├── quant_common.h │ │ ├── reconinter.c │ │ ├── reconinter.h │ │ ├── reconintra.c │ │ ├── reconintra.h │ │ ├── reconintra4x4.c │ │ ├── reconintra4x4.h │ │ ├── rtcd.c │ │ ├── rtcd_defs.pl │ │ ├── setupintrarecon.c │ │ ├── setupintrarecon.h │ │ ├── swapyv12buffer.c │ │ ├── swapyv12buffer.h │ │ ├── systemdependent.h │ │ ├── textblit.c │ │ ├── threading.h │ │ ├── treecoder.c │ │ ├── treecoder.h │ │ ├── vp8_entropymodedata.h │ │ ├── vp8_loopfilter.c │ │ └── x86 │ │ │ ├── copy_sse2.asm │ │ │ ├── copy_sse3.asm │ │ │ ├── dequantize_mmx.asm │ │ │ ├── filter_x86.c │ │ │ ├── filter_x86.h │ │ │ ├── idct_blk_mmx.c │ │ │ ├── idct_blk_sse2.c │ │ │ ├── idctllm_mmx.asm │ │ │ ├── idctllm_sse2.asm │ │ │ ├── iwalsh_mmx.asm │ │ │ ├── iwalsh_sse2.asm │ │ │ ├── loopfilter_block_sse2_x86_64.asm │ │ │ ├── loopfilter_sse2.asm │ │ │ ├── loopfilter_x86.c │ │ │ ├── mfqe_sse2.asm │ │ │ ├── postproc_mmx.asm │ │ │ ├── postproc_sse2.asm │ │ │ ├── recon_mmx.asm │ │ │ ├── recon_sse2.asm │ │ │ ├── subpixel_mmx.asm │ │ │ ├── subpixel_sse2.asm │ │ │ ├── subpixel_ssse3.asm │ │ │ ├── vp8_asm_stubs.c │ │ │ └── vp8_loopfilter_mmx.asm │ ├── decoder │ │ ├── dboolhuff.c │ │ ├── dboolhuff.h │ │ ├── decodeframe.c │ │ ├── decodemv.c │ │ ├── decodemv.h │ │ ├── decoderthreading.h │ │ ├── detokenize.c │ │ ├── detokenize.h │ │ ├── ec_types.h │ │ ├── error_concealment.c │ │ ├── error_concealment.h │ │ ├── onyxd_if.c │ │ ├── onyxd_int.h │ │ ├── threading.c │ │ └── treereader.h │ ├── encoder │ │ ├── arm │ │ │ ├── armv6 │ │ │ │ ├── vp8_short_fdct4x4_armv6.asm │ │ │ │ └── walsh_v6.asm │ │ │ ├── dct_arm.c │ │ │ └── neon │ │ │ │ ├── denoising_neon.c │ │ │ │ ├── fastquantizeb_neon.c │ │ │ │ ├── shortfdct_neon.c │ │ │ │ └── vp8_shortwalsh4x4_neon.c │ │ ├── bitstream.c │ │ ├── bitstream.h │ │ ├── block.h │ │ ├── boolhuff.c │ │ ├── boolhuff.h │ │ ├── dct.c │ │ ├── dct_value_cost.h │ │ ├── dct_value_tokens.h │ │ ├── defaultcoefcounts.h │ │ ├── denoising.c │ │ ├── denoising.h │ │ ├── encodeframe.c │ │ ├── encodeframe.h │ │ ├── encodeintra.c │ │ ├── encodeintra.h │ │ ├── encodemb.c │ │ ├── encodemb.h │ │ ├── encodemv.c │ │ ├── encodemv.h │ │ ├── ethreading.c │ │ ├── firstpass.c │ │ ├── firstpass.h │ │ ├── lookahead.c │ │ ├── lookahead.h │ │ ├── mcomp.c │ │ ├── mcomp.h │ │ ├── mips │ │ │ └── msa │ │ │ │ ├── dct_msa.c │ │ │ │ ├── denoising_msa.c │ │ │ │ ├── encodeopt_msa.c │ │ │ │ ├── quantize_msa.c │ │ │ │ └── temporal_filter_msa.c │ │ ├── modecosts.c │ │ ├── modecosts.h │ │ ├── mr_dissim.c │ │ ├── mr_dissim.h │ │ ├── onyx_if.c │ │ ├── onyx_int.h │ │ ├── pickinter.c │ │ ├── pickinter.h │ │ ├── picklpf.c │ │ ├── quantize.h │ │ ├── ratectrl.c │ │ ├── ratectrl.h │ │ ├── rdopt.c │ │ ├── rdopt.h │ │ ├── segmentation.c │ │ ├── segmentation.h │ │ ├── temporal_filter.c │ │ ├── tokenize.c │ │ ├── tokenize.h │ │ ├── treewriter.c │ │ ├── treewriter.h │ │ ├── vp8_quantize.c │ │ └── x86 │ │ │ ├── dct_mmx.asm │ │ │ ├── dct_sse2.asm │ │ │ ├── denoising_sse2.c │ │ │ ├── encodeopt.asm │ │ │ ├── fwalsh_sse2.asm │ │ │ ├── quantize_mmx.asm │ │ │ ├── quantize_sse4.c │ │ │ ├── quantize_ssse3.c │ │ │ ├── temporal_filter_apply_sse2.asm │ │ │ ├── vp8_enc_stubs_mmx.c │ │ │ ├── vp8_enc_stubs_sse2.c │ │ │ └── vp8_quantize_sse2.c │ ├── exports_dec │ ├── exports_enc │ ├── vp8_common.mk │ ├── vp8_cx_iface.c │ ├── vp8_dx_iface.c │ ├── vp8cx.mk │ ├── vp8cx_arm.mk │ └── vp8dx.mk ├── vp8_rtcd.h ├── vp8cx_set_ref.vcxproj ├── vp9 │ ├── common │ │ ├── arm │ │ │ └── neon │ │ │ │ ├── vp9_iht4x4_add_neon.c │ │ │ │ └── vp9_iht8x8_add_neon.c │ │ ├── mips │ │ │ ├── dspr2 │ │ │ │ ├── vp9_itrans16_dspr2.c │ │ │ │ ├── vp9_itrans4_dspr2.c │ │ │ │ └── vp9_itrans8_dspr2.c │ │ │ └── msa │ │ │ │ ├── vp9_idct16x16_msa.c │ │ │ │ ├── vp9_idct4x4_msa.c │ │ │ │ ├── vp9_idct8x8_msa.c │ │ │ │ └── vp9_mfqe_msa.c │ │ ├── vp9_alloccommon.c │ │ ├── vp9_alloccommon.h │ │ ├── vp9_blockd.c │ │ ├── vp9_blockd.h │ │ ├── vp9_common.h │ │ ├── vp9_common_data.c │ │ ├── vp9_common_data.h │ │ ├── vp9_debugmodes.c │ │ ├── vp9_entropy.c │ │ ├── vp9_entropy.h │ │ ├── vp9_entropymode.c │ │ ├── vp9_entropymode.h │ │ ├── vp9_entropymv.c │ │ ├── vp9_entropymv.h │ │ ├── vp9_enums.h │ │ ├── vp9_filter.c │ │ ├── vp9_filter.h │ │ ├── vp9_frame_buffers.c │ │ ├── vp9_frame_buffers.h │ │ ├── vp9_idct.c │ │ ├── vp9_idct.h │ │ ├── vp9_loopfilter.c │ │ ├── vp9_loopfilter.h │ │ ├── vp9_mfqe.c │ │ ├── vp9_mfqe.h │ │ ├── vp9_mv.h │ │ ├── vp9_mvref_common.c │ │ ├── vp9_mvref_common.h │ │ ├── vp9_onyxc_int.h │ │ ├── vp9_postproc.c │ │ ├── vp9_postproc.h │ │ ├── vp9_ppflags.h │ │ ├── vp9_pred_common.c │ │ ├── vp9_pred_common.h │ │ ├── vp9_quant_common.c │ │ ├── vp9_quant_common.h │ │ ├── vp9_reconinter.c │ │ ├── vp9_reconinter.h │ │ ├── vp9_reconintra.c │ │ ├── vp9_reconintra.h │ │ ├── vp9_rtcd.c │ │ ├── vp9_rtcd_defs.pl │ │ ├── vp9_scale.c │ │ ├── vp9_scale.h │ │ ├── vp9_scan.c │ │ ├── vp9_scan.h │ │ ├── vp9_seg_common.c │ │ ├── vp9_seg_common.h │ │ ├── vp9_textblit.c │ │ ├── vp9_textblit.h │ │ ├── vp9_thread_common.c │ │ ├── vp9_thread_common.h │ │ ├── vp9_tile_common.c │ │ ├── vp9_tile_common.h │ │ └── x86 │ │ │ ├── vp9_idct_intrin_sse2.c │ │ │ ├── vp9_mfqe_sse2.asm │ │ │ └── vp9_postproc_sse2.asm │ ├── decoder │ │ ├── vp9_decodeframe.c │ │ ├── vp9_decodeframe.h │ │ ├── vp9_decodemv.c │ │ ├── vp9_decodemv.h │ │ ├── vp9_decoder.c │ │ ├── vp9_decoder.h │ │ ├── vp9_detokenize.c │ │ ├── vp9_detokenize.h │ │ ├── vp9_dsubexp.c │ │ ├── vp9_dsubexp.h │ │ ├── vp9_dthread.c │ │ └── vp9_dthread.h │ ├── encoder │ │ ├── arm │ │ │ └── neon │ │ │ │ ├── vp9_avg_neon.c │ │ │ │ ├── vp9_dct_neon.c │ │ │ │ ├── vp9_error_neon.c │ │ │ │ └── vp9_quantize_neon.c │ │ ├── mips │ │ │ └── msa │ │ │ │ ├── vp9_avg_msa.c │ │ │ │ ├── vp9_error_msa.c │ │ │ │ ├── vp9_fdct16x16_msa.c │ │ │ │ ├── vp9_fdct4x4_msa.c │ │ │ │ ├── vp9_fdct8x8_msa.c │ │ │ │ ├── vp9_fdct_msa.h │ │ │ │ └── vp9_temporal_filter_msa.c │ │ ├── vp9_aq_complexity.c │ │ ├── vp9_aq_complexity.h │ │ ├── vp9_aq_cyclicrefresh.c │ │ ├── vp9_aq_cyclicrefresh.h │ │ ├── vp9_aq_variance.c │ │ ├── vp9_aq_variance.h │ │ ├── vp9_avg.c │ │ ├── vp9_bitstream.c │ │ ├── vp9_bitstream.h │ │ ├── vp9_block.h │ │ ├── vp9_blockiness.c │ │ ├── vp9_context_tree.c │ │ ├── vp9_context_tree.h │ │ ├── vp9_cost.c │ │ ├── vp9_cost.h │ │ ├── vp9_dct.c │ │ ├── vp9_denoiser.c │ │ ├── vp9_denoiser.h │ │ ├── vp9_encodeframe.c │ │ ├── vp9_encodeframe.h │ │ ├── vp9_encodemb.c │ │ ├── vp9_encodemb.h │ │ ├── vp9_encodemv.c │ │ ├── vp9_encodemv.h │ │ ├── vp9_encoder.c │ │ ├── vp9_encoder.h │ │ ├── vp9_ethread.c │ │ ├── vp9_ethread.h │ │ ├── vp9_extend.c │ │ ├── vp9_extend.h │ │ ├── vp9_firstpass.c │ │ ├── vp9_firstpass.h │ │ ├── vp9_lookahead.c │ │ ├── vp9_lookahead.h │ │ ├── vp9_mbgraph.c │ │ ├── vp9_mbgraph.h │ │ ├── vp9_mcomp.c │ │ ├── vp9_mcomp.h │ │ ├── vp9_noise_estimate.c │ │ ├── vp9_noise_estimate.h │ │ ├── vp9_picklpf.c │ │ ├── vp9_picklpf.h │ │ ├── vp9_pickmode.c │ │ ├── vp9_pickmode.h │ │ ├── vp9_quantize.c │ │ ├── vp9_quantize.h │ │ ├── vp9_ratectrl.c │ │ ├── vp9_ratectrl.h │ │ ├── vp9_rd.c │ │ ├── vp9_rd.h │ │ ├── vp9_rdopt.c │ │ ├── vp9_rdopt.h │ │ ├── vp9_resize.c │ │ ├── vp9_resize.h │ │ ├── vp9_segmentation.c │ │ ├── vp9_segmentation.h │ │ ├── vp9_skin_detection.c │ │ ├── vp9_skin_detection.h │ │ ├── vp9_speed_features.c │ │ ├── vp9_speed_features.h │ │ ├── vp9_subexp.c │ │ ├── vp9_subexp.h │ │ ├── vp9_svc_layercontext.c │ │ ├── vp9_svc_layercontext.h │ │ ├── vp9_temporal_filter.c │ │ ├── vp9_temporal_filter.h │ │ ├── vp9_tokenize.c │ │ ├── vp9_tokenize.h │ │ ├── vp9_treewriter.c │ │ ├── vp9_treewriter.h │ │ └── x86 │ │ │ ├── vp9_avg_intrin_sse2.c │ │ │ ├── vp9_dct_mmx.asm │ │ │ ├── vp9_dct_sse2.c │ │ │ ├── vp9_dct_ssse3.c │ │ │ ├── vp9_dct_ssse3_x86_64.asm │ │ │ ├── vp9_denoiser_sse2.c │ │ │ ├── vp9_diamond_search_sad_avx.c │ │ │ ├── vp9_error_intrin_avx2.c │ │ │ ├── vp9_error_sse2.asm │ │ │ ├── vp9_highbd_block_error_intrin_sse2.c │ │ │ ├── vp9_highbd_error_avx.asm │ │ │ ├── vp9_highbd_error_sse2.asm │ │ │ ├── vp9_quantize_sse2.c │ │ │ ├── vp9_quantize_ssse3_x86_64.asm │ │ │ └── vp9_temporal_filter_apply_sse2.asm │ ├── exports_dec │ ├── exports_enc │ ├── vp9_common.mk │ ├── vp9_cx_iface.c │ ├── vp9_dx_iface.c │ ├── vp9_dx_iface.h │ ├── vp9_iface_common.h │ ├── vp9cx.mk │ └── vp9dx.mk ├── vp9_lossless_encoder.vcxproj ├── vp9_rtcd.h ├── vpx.def ├── vpx.sln ├── vpx.sln.mk ├── vpx.v12.suo ├── vpx.vcxproj ├── vpx │ ├── exports_com │ ├── exports_dec │ ├── exports_enc │ ├── internal │ │ ├── vpx_codec_internal.h │ │ └── vpx_psnr.h │ ├── src │ │ ├── svc_encodeframe.c │ │ ├── vpx_codec.c │ │ ├── vpx_decoder.c │ │ ├── vpx_encoder.c │ │ ├── vpx_image.c │ │ └── vpx_psnr.c │ ├── svc_context.h │ ├── vp8.h │ ├── vp8cx.h │ ├── vp8dx.h │ ├── vpx_codec.h │ ├── vpx_codec.mk │ ├── vpx_decoder.h │ ├── vpx_encoder.h │ ├── vpx_frame_buffer.h │ ├── vpx_image.h │ └── vpx_integer.h ├── vpx_config.asm ├── vpx_config.c ├── vpx_config.h ├── vpx_dsp │ ├── arm │ │ ├── bilinear_filter_media.asm │ │ ├── fwd_txfm_neon.c │ │ ├── idct16x16_1_add_neon.asm │ │ ├── idct16x16_1_add_neon.c │ │ ├── idct16x16_add_neon.asm │ │ ├── idct16x16_add_neon.c │ │ ├── idct16x16_neon.c │ │ ├── idct32x32_1_add_neon.asm │ │ ├── idct32x32_1_add_neon.c │ │ ├── idct32x32_add_neon.asm │ │ ├── idct32x32_add_neon.c │ │ ├── idct4x4_1_add_neon.asm │ │ ├── idct4x4_1_add_neon.c │ │ ├── idct4x4_add_neon.asm │ │ ├── idct4x4_add_neon.c │ │ ├── idct8x8_1_add_neon.asm │ │ ├── idct8x8_1_add_neon.c │ │ ├── idct8x8_add_neon.asm │ │ ├── idct8x8_add_neon.c │ │ ├── intrapred_neon.c │ │ ├── intrapred_neon_asm.asm │ │ ├── loopfilter_16_neon.asm │ │ ├── loopfilter_16_neon.c │ │ ├── loopfilter_4_neon.asm │ │ ├── loopfilter_4_neon.c │ │ ├── loopfilter_8_neon.asm │ │ ├── loopfilter_8_neon.c │ │ ├── loopfilter_mb_neon.asm │ │ ├── loopfilter_neon.c │ │ ├── sad4d_neon.c │ │ ├── sad_media.asm │ │ ├── sad_neon.c │ │ ├── save_reg_neon.asm │ │ ├── subpel_variance_media.c │ │ ├── subpel_variance_neon.c │ │ ├── subtract_neon.c │ │ ├── variance_halfpixvar16x16_h_media.asm │ │ ├── variance_halfpixvar16x16_hv_media.asm │ │ ├── variance_halfpixvar16x16_v_media.asm │ │ ├── variance_media.asm │ │ ├── variance_neon.c │ │ ├── vpx_convolve8_avg_neon.c │ │ ├── vpx_convolve8_avg_neon_asm.asm │ │ ├── vpx_convolve8_neon.c │ │ ├── vpx_convolve8_neon_asm.asm │ │ ├── vpx_convolve_avg_neon.c │ │ ├── vpx_convolve_avg_neon_asm.asm │ │ ├── vpx_convolve_copy_neon.c │ │ ├── vpx_convolve_copy_neon_asm.asm │ │ └── vpx_convolve_neon.c │ ├── bitreader.c │ ├── bitreader.h │ ├── bitreader_buffer.c │ ├── bitreader_buffer.h │ ├── bitwriter.c │ ├── bitwriter.h │ ├── bitwriter_buffer.c │ ├── bitwriter_buffer.h │ ├── fastssim.c │ ├── fwd_txfm.c │ ├── fwd_txfm.h │ ├── intrapred.c │ ├── inv_txfm.c │ ├── inv_txfm.h │ ├── loopfilter.c │ ├── mips │ │ ├── common_dspr2.c │ │ ├── common_dspr2.h │ │ ├── convolve2_avg_dspr2.c │ │ ├── convolve2_avg_horiz_dspr2.c │ │ ├── convolve2_dspr2.c │ │ ├── convolve2_horiz_dspr2.c │ │ ├── convolve2_vert_dspr2.c │ │ ├── convolve8_avg_dspr2.c │ │ ├── convolve8_avg_horiz_dspr2.c │ │ ├── convolve8_dspr2.c │ │ ├── convolve8_horiz_dspr2.c │ │ ├── convolve8_vert_dspr2.c │ │ ├── convolve_common_dspr2.h │ │ ├── fwd_dct32x32_msa.c │ │ ├── fwd_txfm_msa.c │ │ ├── fwd_txfm_msa.h │ │ ├── idct16x16_msa.c │ │ ├── idct32x32_msa.c │ │ ├── idct4x4_msa.c │ │ ├── idct8x8_msa.c │ │ ├── intrapred16_dspr2.c │ │ ├── intrapred4_dspr2.c │ │ ├── intrapred8_dspr2.c │ │ ├── intrapred_msa.c │ │ ├── inv_txfm_dspr2.h │ │ ├── inv_txfm_msa.h │ │ ├── itrans16_dspr2.c │ │ ├── itrans32_cols_dspr2.c │ │ ├── itrans32_dspr2.c │ │ ├── itrans4_dspr2.c │ │ ├── itrans8_dspr2.c │ │ ├── loopfilter_16_msa.c │ │ ├── loopfilter_4_msa.c │ │ ├── loopfilter_8_msa.c │ │ ├── loopfilter_filters_dspr2.c │ │ ├── loopfilter_filters_dspr2.h │ │ ├── loopfilter_macros_dspr2.h │ │ ├── loopfilter_masks_dspr2.h │ │ ├── loopfilter_mb_dspr2.c │ │ ├── loopfilter_mb_horiz_dspr2.c │ │ ├── loopfilter_mb_vert_dspr2.c │ │ ├── loopfilter_msa.h │ │ ├── macros_msa.h │ │ ├── sad_msa.c │ │ ├── sub_pixel_variance_msa.c │ │ ├── subtract_msa.c │ │ ├── txfm_macros_msa.h │ │ ├── variance_msa.c │ │ ├── vpx_convolve8_avg_horiz_msa.c │ │ ├── vpx_convolve8_avg_msa.c │ │ ├── vpx_convolve8_avg_vert_msa.c │ │ ├── vpx_convolve8_horiz_msa.c │ │ ├── vpx_convolve8_msa.c │ │ ├── vpx_convolve8_vert_msa.c │ │ ├── vpx_convolve_avg_msa.c │ │ ├── vpx_convolve_copy_msa.c │ │ └── vpx_convolve_msa.h │ ├── prob.c │ ├── prob.h │ ├── psnrhvs.c │ ├── quantize.c │ ├── quantize.h │ ├── sad.c │ ├── ssim.c │ ├── ssim.h │ ├── subtract.c │ ├── txfm_common.h │ ├── variance.c │ ├── variance.h │ ├── vpx_convolve.c │ ├── vpx_convolve.h │ ├── vpx_dsp.mk │ ├── vpx_dsp_common.h │ ├── vpx_dsp_rtcd.c │ ├── vpx_dsp_rtcd_defs.pl │ ├── vpx_filter.h │ └── x86 │ │ ├── convolve.h │ │ ├── fwd_dct32x32_impl_avx2.h │ │ ├── fwd_dct32x32_impl_sse2.h │ │ ├── fwd_txfm_avx2.c │ │ ├── fwd_txfm_impl_sse2.h │ │ ├── fwd_txfm_sse2.c │ │ ├── fwd_txfm_sse2.h │ │ ├── fwd_txfm_ssse3_x86_64.asm │ │ ├── halfpix_variance_impl_sse2.asm │ │ ├── halfpix_variance_sse2.c │ │ ├── highbd_intrapred_sse2.asm │ │ ├── highbd_loopfilter_sse2.c │ │ ├── highbd_quantize_intrin_sse2.c │ │ ├── highbd_sad4d_sse2.asm │ │ ├── highbd_sad_sse2.asm │ │ ├── highbd_subpel_variance_impl_sse2.asm │ │ ├── highbd_variance_impl_sse2.asm │ │ ├── highbd_variance_sse2.c │ │ ├── intrapred_sse2.asm │ │ ├── intrapred_ssse3.asm │ │ ├── inv_txfm_sse2.c │ │ ├── inv_txfm_sse2.h │ │ ├── inv_txfm_ssse3_x86_64.asm │ │ ├── inv_wht_sse2.asm │ │ ├── loopfilter_avx2.c │ │ ├── loopfilter_mmx.asm │ │ ├── loopfilter_sse2.c │ │ ├── quantize_avx_x86_64.asm │ │ ├── quantize_sse2.c │ │ ├── quantize_ssse3_x86_64.asm │ │ ├── sad4d_avx2.c │ │ ├── sad4d_sse2.asm │ │ ├── sad_avx2.c │ │ ├── sad_mmx.asm │ │ ├── sad_sse2.asm │ │ ├── sad_sse3.asm │ │ ├── sad_sse4.asm │ │ ├── sad_ssse3.asm │ │ ├── ssim_opt_x86_64.asm │ │ ├── subpel_variance_sse2.asm │ │ ├── subtract_sse2.asm │ │ ├── txfm_common_sse2.h │ │ ├── variance_avx2.c │ │ ├── variance_impl_avx2.c │ │ ├── variance_impl_mmx.asm │ │ ├── variance_mmx.c │ │ ├── variance_sse2.c │ │ ├── vpx_asm_stubs.c │ │ ├── vpx_convolve_copy_sse2.asm │ │ ├── vpx_high_subpixel_8t_sse2.asm │ │ ├── vpx_high_subpixel_bilinear_sse2.asm │ │ ├── vpx_subpixel_8t_intrin_avx2.c │ │ ├── vpx_subpixel_8t_intrin_ssse3.c │ │ ├── vpx_subpixel_8t_sse2.asm │ │ ├── vpx_subpixel_8t_ssse3.asm │ │ ├── vpx_subpixel_bilinear_sse2.asm │ │ └── vpx_subpixel_bilinear_ssse3.asm ├── vpx_dsp_rtcd.h ├── vpx_mem │ ├── include │ │ └── vpx_mem_intrnl.h │ ├── vpx_mem.c │ ├── vpx_mem.h │ └── vpx_mem.mk ├── vpx_ports │ ├── arm.h │ ├── arm_cpudetect.c │ ├── bitops.h │ ├── config.h │ ├── emmintrin_compat.h │ ├── emms.asm │ ├── mem.h │ ├── mem_ops.h │ ├── mem_ops_aligned.h │ ├── msvc.h │ ├── system_state.h │ ├── vpx_once.h │ ├── vpx_timer.h │ ├── x86.h │ └── x86_abi_support.asm ├── vpx_scale │ ├── generic │ │ ├── gen_scalers.c │ │ ├── vpx_scale.c │ │ ├── yv12config.c │ │ └── yv12extend.c │ ├── mips │ │ └── dspr2 │ │ │ └── yv12extend_dspr2.c │ ├── vpx_scale.h │ ├── vpx_scale.mk │ ├── vpx_scale_rtcd.c │ ├── vpx_scale_rtcd.pl │ └── yv12config.h ├── vpx_scale_rtcd.h ├── vpx_temporal_svc_encoder.vcxproj ├── vpx_util │ ├── endian_inl.h │ ├── vpx_thread.c │ └── vpx_thread.h ├── vpx_version.h ├── vpxdec.c ├── vpxdec.vcxproj ├── vpxenc.c ├── vpxenc.h ├── vpxenc.vcxproj ├── vpxstats.c ├── vpxstats.h ├── warnings.c ├── warnings.h ├── webmdec.cc ├── webmdec.h ├── webmenc.cc ├── webmenc.h ├── xcconfig │ ├── Mac.xcconfig │ └── iOS.xcconfig ├── y4menc.c ├── y4menc.h ├── y4minput.c └── y4minput.h ├── wrappers └── aprilvideo │ ├── Info.plist │ ├── android-studio │ └── lib │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ └── src │ │ └── main │ │ └── AndroidManifest.xml │ ├── aprilvideo.xcodeproj │ └── project.pbxproj │ ├── fileproperties.rc │ ├── include │ └── aprilvideo │ │ ├── VideoObject.h │ │ ├── aprilvideo.h │ │ └── aprilvideoExport.h │ ├── msvc │ ├── vs2015-uwp │ │ ├── libaprilvideo.vcxproj │ │ ├── libaprilvideo.vcxproj.filters │ │ └── props │ │ │ ├── configuration.props │ │ │ └── default.props │ └── vs2015 │ │ ├── libaprilvideo.vcxproj │ │ ├── libaprilvideo.vcxproj.filters │ │ └── props │ │ ├── configuration.props │ │ └── default.props │ ├── readme.txt │ ├── src │ ├── AudioVideoTimer.cpp │ ├── AudioVideoTimer.h │ ├── DataSource.cpp │ ├── DataSource.h │ ├── Utility.h │ ├── VideoObject.cpp │ ├── VideoTimer.cpp │ ├── VideoTimer.h │ └── aprilvideo.cpp │ └── xcconfig │ ├── Mac.xcconfig │ └── iOS.xcconfig ├── xcconfig ├── Mac.xcconfig └── iOS.xcconfig └── xcode ├── icon.icns ├── icon_ipad.png ├── icon_ipad@2x.png ├── icon_iphone.png ├── icon_iphone@2x.png ├── ios_demos.plist ├── mac_demos.plist └── theoraplayer_workspace.xcodeproj ├── project.pbxproj ├── project.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── _not_empty ├── workspace.plist └── xcshareddata └── xcschemes ├── OpenGL Demos (Mac).xcscheme └── OpenGL Demos (iOS).xcscheme /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/LICENSE -------------------------------------------------------------------------------- /SDK/build_macosx_and_ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/SDK/build_macosx_and_ios.py -------------------------------------------------------------------------------- /android-studio/demos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/android-studio/demos/.gitignore -------------------------------------------------------------------------------- /android-studio/demos/dummy/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android-studio/demos/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/android-studio/demos/gradlew -------------------------------------------------------------------------------- /android-studio/demos/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/android-studio/demos/gradlew.bat -------------------------------------------------------------------------------- /demos/ObjModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/ObjModel.cpp -------------------------------------------------------------------------------- /demos/ObjModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/ObjModel.h -------------------------------------------------------------------------------- /demos/OpenAL_AudioInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/OpenAL_AudioInterface.cpp -------------------------------------------------------------------------------- /demos/OpenAL_AudioInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/OpenAL_AudioInterface.h -------------------------------------------------------------------------------- /demos/basecode/ios/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/basecode/ios/AppDelegate.h -------------------------------------------------------------------------------- /demos/basecode/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/basecode/ios/Default.png -------------------------------------------------------------------------------- /demos/basecode/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/basecode/ios/Info.plist -------------------------------------------------------------------------------- /demos/basecode/ios/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/basecode/ios/main.cpp -------------------------------------------------------------------------------- /demos/basecode/ios/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/basecode/ios/main.mm -------------------------------------------------------------------------------- /demos/basecode/util/objcUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/basecode/util/objcUtil.h -------------------------------------------------------------------------------- /demos/basecode/util/objcUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/basecode/util/objcUtil.mm -------------------------------------------------------------------------------- /demos/basecode/util/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/basecode/util/util.cpp -------------------------------------------------------------------------------- /demos/basecode/util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/basecode/util/util.h -------------------------------------------------------------------------------- /demos/demo_basecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/demo_basecode.h -------------------------------------------------------------------------------- /demos/media/GreenTest.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/GreenTest.mp4 -------------------------------------------------------------------------------- /demos/media/GreenTest.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/GreenTest.ogv -------------------------------------------------------------------------------- /demos/media/YUVTest.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/YUVTest.mp4 -------------------------------------------------------------------------------- /demos/media/YUVTest.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/YUVTest.ogv -------------------------------------------------------------------------------- /demos/media/brawe/brawe_E.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/brawe/brawe_E.mp4 -------------------------------------------------------------------------------- /demos/media/brawe/brawe_E.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/brawe/brawe_E.ogv -------------------------------------------------------------------------------- /demos/media/brawe/brawe_N.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/brawe/brawe_N.mp4 -------------------------------------------------------------------------------- /demos/media/brawe/brawe_N.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/brawe/brawe_N.ogv -------------------------------------------------------------------------------- /demos/media/brawe/brawe_NE.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/brawe/brawe_NE.mp4 -------------------------------------------------------------------------------- /demos/media/brawe/brawe_NE.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/brawe/brawe_NE.ogv -------------------------------------------------------------------------------- /demos/media/brawe/brawe_NW.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/brawe/brawe_NW.mp4 -------------------------------------------------------------------------------- /demos/media/brawe/brawe_NW.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/brawe/brawe_NW.ogv -------------------------------------------------------------------------------- /demos/media/brawe/brawe_S.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/brawe/brawe_S.mp4 -------------------------------------------------------------------------------- /demos/media/brawe/brawe_S.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/brawe/brawe_S.ogv -------------------------------------------------------------------------------- /demos/media/brawe/brawe_SE.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/brawe/brawe_SE.mp4 -------------------------------------------------------------------------------- /demos/media/brawe/brawe_SE.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/brawe/brawe_SE.ogv -------------------------------------------------------------------------------- /demos/media/brawe/brawe_SW.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/brawe/brawe_SW.mp4 -------------------------------------------------------------------------------- /demos/media/brawe/brawe_SW.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/brawe/brawe_SW.ogv -------------------------------------------------------------------------------- /demos/media/brawe/brawe_W.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/brawe/brawe_W.mp4 -------------------------------------------------------------------------------- /demos/media/brawe/brawe_W.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/brawe/brawe_W.ogv -------------------------------------------------------------------------------- /demos/media/bunny.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/bunny.mp4 -------------------------------------------------------------------------------- /demos/media/bunny.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/bunny.ogv -------------------------------------------------------------------------------- /demos/media/bunny.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/bunny.webm -------------------------------------------------------------------------------- /demos/media/button1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/button1.tga -------------------------------------------------------------------------------- /demos/media/button10.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/button10.tga -------------------------------------------------------------------------------- /demos/media/button2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/button2.tga -------------------------------------------------------------------------------- /demos/media/button3.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/button3.tga -------------------------------------------------------------------------------- /demos/media/button4.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/button4.tga -------------------------------------------------------------------------------- /demos/media/button5.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/button5.tga -------------------------------------------------------------------------------- /demos/media/button6.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/button6.tga -------------------------------------------------------------------------------- /demos/media/button7.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/button7.tga -------------------------------------------------------------------------------- /demos/media/button8.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/button8.tga -------------------------------------------------------------------------------- /demos/media/button9.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/button9.tga -------------------------------------------------------------------------------- /demos/media/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/copyright.txt -------------------------------------------------------------------------------- /demos/media/konqi.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/konqi.mp4 -------------------------------------------------------------------------------- /demos/media/konqi.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/konqi.ogv -------------------------------------------------------------------------------- /demos/media/lighting/camera.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/lighting/camera.txt -------------------------------------------------------------------------------- /demos/media/lighting/room.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/lighting/room.obj -------------------------------------------------------------------------------- /demos/media/lightmap/light1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/lightmap/light1.mp4 -------------------------------------------------------------------------------- /demos/media/lightmap/light1.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/lightmap/light1.ogv -------------------------------------------------------------------------------- /demos/media/lightmap/light2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/lightmap/light2.mp4 -------------------------------------------------------------------------------- /demos/media/lightmap/light2.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/lightmap/light2.ogv -------------------------------------------------------------------------------- /demos/media/lightmap/light3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/lightmap/light3.mp4 -------------------------------------------------------------------------------- /demos/media/lightmap/light3.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/lightmap/light3.ogv -------------------------------------------------------------------------------- /demos/media/lightmap/room.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/lightmap/room.obj -------------------------------------------------------------------------------- /demos/media/locv/locv_back.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/locv/locv_back.tga -------------------------------------------------------------------------------- /demos/media/locv/locv_birds.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/locv/locv_birds.tga -------------------------------------------------------------------------------- /demos/media/locv/locv_branch.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/locv/locv_branch.tga -------------------------------------------------------------------------------- /demos/media/locv/locv_bush.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/locv/locv_bush.tga -------------------------------------------------------------------------------- /demos/media/locv/locv_clouds.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/locv/locv_clouds.tga -------------------------------------------------------------------------------- /demos/media/locv/locv_eve.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/locv/locv_eve.mp4 -------------------------------------------------------------------------------- /demos/media/locv/locv_eve.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/locv/locv_eve.ogv -------------------------------------------------------------------------------- /demos/media/locv/locv_main.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/locv/locv_main.tga -------------------------------------------------------------------------------- /demos/media/locv/locv_water.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/locv/locv_water.ogv -------------------------------------------------------------------------------- /demos/media/room.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/room.mp4 -------------------------------------------------------------------------------- /demos/media/room.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/room.ogv -------------------------------------------------------------------------------- /demos/media/sample.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/sample.mp4 -------------------------------------------------------------------------------- /demos/media/sample.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/sample.ogv -------------------------------------------------------------------------------- /demos/media/short.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/short.mp4 -------------------------------------------------------------------------------- /demos/media/short.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/short.ogv -------------------------------------------------------------------------------- /demos/media/titan.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/titan.mp4 -------------------------------------------------------------------------------- /demos/media/titan.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/titan.ogv -------------------------------------------------------------------------------- /demos/media/tv_room/chair1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/tv_room/chair1.obj -------------------------------------------------------------------------------- /demos/media/tv_room/chair1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/tv_room/chair1.tga -------------------------------------------------------------------------------- /demos/media/tv_room/chair2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/tv_room/chair2.obj -------------------------------------------------------------------------------- /demos/media/tv_room/chair2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/tv_room/chair2.tga -------------------------------------------------------------------------------- /demos/media/tv_room/room.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/tv_room/room.obj -------------------------------------------------------------------------------- /demos/media/tv_room/room.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/tv_room/room.tga -------------------------------------------------------------------------------- /demos/media/tv_room/table.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/tv_room/table.obj -------------------------------------------------------------------------------- /demos/media/tv_room/table.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/tv_room/table.tga -------------------------------------------------------------------------------- /demos/media/tv_room/tv.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/tv_room/tv.obj -------------------------------------------------------------------------------- /demos/media/tv_room/tv.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/media/tv_room/tv.tga -------------------------------------------------------------------------------- /demos/opengl_demos/demo_av.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/opengl_demos/demo_av.h -------------------------------------------------------------------------------- /demos/opengl_demos/demo_tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/opengl_demos/demo_tv.h -------------------------------------------------------------------------------- /demos/tga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/tga.cpp -------------------------------------------------------------------------------- /demos/tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/demos/tga.h -------------------------------------------------------------------------------- /libffmpeg/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/README.txt -------------------------------------------------------------------------------- /libffmpeg/doc/developer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/doc/developer.html -------------------------------------------------------------------------------- /libffmpeg/doc/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/doc/examples/README -------------------------------------------------------------------------------- /libffmpeg/doc/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/doc/faq.html -------------------------------------------------------------------------------- /libffmpeg/doc/fate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/doc/fate.html -------------------------------------------------------------------------------- /libffmpeg/doc/ffmpeg-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/doc/ffmpeg-all.html -------------------------------------------------------------------------------- /libffmpeg/doc/ffmpeg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/doc/ffmpeg.html -------------------------------------------------------------------------------- /libffmpeg/doc/ffplay-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/doc/ffplay-all.html -------------------------------------------------------------------------------- /libffmpeg/doc/ffplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/doc/ffplay.html -------------------------------------------------------------------------------- /libffmpeg/doc/ffprobe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/doc/ffprobe.html -------------------------------------------------------------------------------- /libffmpeg/doc/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/doc/general.html -------------------------------------------------------------------------------- /libffmpeg/doc/git-howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/doc/git-howto.html -------------------------------------------------------------------------------- /libffmpeg/doc/libavcodec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/doc/libavcodec.html -------------------------------------------------------------------------------- /libffmpeg/doc/libavutil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/doc/libavutil.html -------------------------------------------------------------------------------- /libffmpeg/doc/libswscale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/doc/libswscale.html -------------------------------------------------------------------------------- /libffmpeg/doc/nut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/doc/nut.html -------------------------------------------------------------------------------- /libffmpeg/doc/platform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/doc/platform.html -------------------------------------------------------------------------------- /libffmpeg/lib/avcodec-57.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/lib/avcodec-57.def -------------------------------------------------------------------------------- /libffmpeg/lib/avcodec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/lib/avcodec.lib -------------------------------------------------------------------------------- /libffmpeg/lib/avdevice-57.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/lib/avdevice-57.def -------------------------------------------------------------------------------- /libffmpeg/lib/avdevice.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/lib/avdevice.lib -------------------------------------------------------------------------------- /libffmpeg/lib/avfilter-6.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/lib/avfilter-6.def -------------------------------------------------------------------------------- /libffmpeg/lib/avfilter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/lib/avfilter.lib -------------------------------------------------------------------------------- /libffmpeg/lib/avformat-57.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/lib/avformat-57.def -------------------------------------------------------------------------------- /libffmpeg/lib/avformat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/lib/avformat.lib -------------------------------------------------------------------------------- /libffmpeg/lib/avutil-55.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/lib/avutil-55.def -------------------------------------------------------------------------------- /libffmpeg/lib/avutil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/lib/avutil.lib -------------------------------------------------------------------------------- /libffmpeg/lib/postproc-54.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/lib/postproc-54.def -------------------------------------------------------------------------------- /libffmpeg/lib/postproc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/lib/postproc.lib -------------------------------------------------------------------------------- /libffmpeg/lib/swresample.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/lib/swresample.lib -------------------------------------------------------------------------------- /libffmpeg/lib/swscale-4.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/lib/swscale-4.def -------------------------------------------------------------------------------- /libffmpeg/lib/swscale.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/lib/swscale.lib -------------------------------------------------------------------------------- /libffmpeg/licenses/bzip2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/bzip2.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/frei0r.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/frei0r.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/gme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/gme.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/gnutls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/gnutls.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/lame.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/lame.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/libass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/libass.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/libgsm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/libgsm.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/libmfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/libmfx.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/libmodplug.txt: -------------------------------------------------------------------------------- 1 | ModPlug-XMMS and libmodplug are now in the public domain. 2 | -------------------------------------------------------------------------------- /libffmpeg/licenses/libvpx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/libvpx.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/opus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/opus.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/snappy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/snappy.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/soxr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/soxr.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/speex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/speex.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/x264.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/x264.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/x265.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/x265.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/xavs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/xavs.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/xvid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/xvid.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/xz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/xz.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/zimg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/zimg.txt -------------------------------------------------------------------------------- /libffmpeg/licenses/zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libffmpeg/licenses/zlib.txt -------------------------------------------------------------------------------- /libtheoraplayer_vs2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libtheoraplayer_vs2012.sln -------------------------------------------------------------------------------- /libtheoraplayer_vs2013.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libtheoraplayer_vs2013.sln -------------------------------------------------------------------------------- /libtheoraplayer_vs2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/libtheoraplayer_vs2015.sln -------------------------------------------------------------------------------- /msvc/vs2015/avcodec-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/msvc/vs2015/avcodec-57.dll -------------------------------------------------------------------------------- /msvc/vs2015/avdevice-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/msvc/vs2015/avdevice-57.dll -------------------------------------------------------------------------------- /msvc/vs2015/avfilter-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/msvc/vs2015/avfilter-6.dll -------------------------------------------------------------------------------- /msvc/vs2015/avformat-57.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/msvc/vs2015/avformat-57.dll -------------------------------------------------------------------------------- /msvc/vs2015/avutil-55.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/msvc/vs2015/avutil-55.dll -------------------------------------------------------------------------------- /msvc/vs2015/postproc-54.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/msvc/vs2015/postproc-54.dll -------------------------------------------------------------------------------- /msvc/vs2015/swresample-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/msvc/vs2015/swresample-2.dll -------------------------------------------------------------------------------- /msvc/vs2015/swscale-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/msvc/vs2015/swscale-4.dll -------------------------------------------------------------------------------- /ogg/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/ogg/COPYING -------------------------------------------------------------------------------- /ogg/android-studio/lib/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /ogg/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/ogg/include/ogg/ogg.h -------------------------------------------------------------------------------- /ogg/include/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/ogg/include/ogg/os_types.h -------------------------------------------------------------------------------- /ogg/macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/ogg/macosx/Info.plist -------------------------------------------------------------------------------- /ogg/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/ogg/src/bitwise.c -------------------------------------------------------------------------------- /ogg/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/ogg/src/framing.c -------------------------------------------------------------------------------- /ogg/win32/ogg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/ogg/win32/ogg.def -------------------------------------------------------------------------------- /ogg/xcconfig/Mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/ogg/xcconfig/Mac.xcconfig -------------------------------------------------------------------------------- /ogg/xcconfig/iOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/ogg/xcconfig/iOS.xcconfig -------------------------------------------------------------------------------- /scripts/api.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/scripts/api.doxygen -------------------------------------------------------------------------------- /scripts/doxygen_mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/scripts/doxygen_mainpage.h -------------------------------------------------------------------------------- /scripts/logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/scripts/logo.xcf -------------------------------------------------------------------------------- /scripts/logo_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/scripts/logo_256.png -------------------------------------------------------------------------------- /theora/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/COPYING -------------------------------------------------------------------------------- /theora/android-studio/lib-hltypes/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /theora/android-studio/lib/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /theora/include/theora/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/include/theora/codec.h -------------------------------------------------------------------------------- /theora/lib/Version_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/Version_script -------------------------------------------------------------------------------- /theora/lib/Version_script-dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/Version_script-dec -------------------------------------------------------------------------------- /theora/lib/Version_script-enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/Version_script-enc -------------------------------------------------------------------------------- /theora/lib/analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/analyze.c -------------------------------------------------------------------------------- /theora/lib/apiwrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/apiwrapper.c -------------------------------------------------------------------------------- /theora/lib/apiwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/apiwrapper.h -------------------------------------------------------------------------------- /theora/lib/arm/arm2gnu.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/arm2gnu.pl -------------------------------------------------------------------------------- /theora/lib/arm/armbits.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armbits.asm -------------------------------------------------------------------------------- /theora/lib/arm/armbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armbits.h -------------------------------------------------------------------------------- /theora/lib/arm/armbits.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armbits.s -------------------------------------------------------------------------------- /theora/lib/arm/armcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armcpu.c -------------------------------------------------------------------------------- /theora/lib/arm/armcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armcpu.h -------------------------------------------------------------------------------- /theora/lib/arm/armenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armenc.c -------------------------------------------------------------------------------- /theora/lib/arm/armenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armenc.h -------------------------------------------------------------------------------- /theora/lib/arm/armencfrag.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armencfrag.s -------------------------------------------------------------------------------- /theora/lib/arm/armenquant.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armenquant.s -------------------------------------------------------------------------------- /theora/lib/arm/armfrag.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armfrag.asm -------------------------------------------------------------------------------- /theora/lib/arm/armfrag.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armfrag.s -------------------------------------------------------------------------------- /theora/lib/arm/armidct.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armidct.asm -------------------------------------------------------------------------------- /theora/lib/arm/armidct.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armidct.s -------------------------------------------------------------------------------- /theora/lib/arm/armint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armint.h -------------------------------------------------------------------------------- /theora/lib/arm/armloop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armloop.asm -------------------------------------------------------------------------------- /theora/lib/arm/armloop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armloop.s -------------------------------------------------------------------------------- /theora/lib/arm/armopts-gnu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armopts-gnu.s -------------------------------------------------------------------------------- /theora/lib/arm/armopts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armopts.s -------------------------------------------------------------------------------- /theora/lib/arm/armopts.s.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armopts.s.in -------------------------------------------------------------------------------- /theora/lib/arm/armstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm/armstate.c -------------------------------------------------------------------------------- /theora/lib/arm_llvm/armbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm_llvm/armbits.h -------------------------------------------------------------------------------- /theora/lib/arm_llvm/armcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm_llvm/armcpu.c -------------------------------------------------------------------------------- /theora/lib/arm_llvm/armcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm_llvm/armcpu.h -------------------------------------------------------------------------------- /theora/lib/arm_llvm/armenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm_llvm/armenc.c -------------------------------------------------------------------------------- /theora/lib/arm_llvm/armenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm_llvm/armenc.h -------------------------------------------------------------------------------- /theora/lib/arm_llvm/armint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/arm_llvm/armint.h -------------------------------------------------------------------------------- /theora/lib/bitpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/bitpack.c -------------------------------------------------------------------------------- /theora/lib/bitpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/bitpack.h -------------------------------------------------------------------------------- /theora/lib/c64x/c64xdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/c64x/c64xdec.c -------------------------------------------------------------------------------- /theora/lib/c64x/c64xdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/c64x/c64xdec.h -------------------------------------------------------------------------------- /theora/lib/c64x/c64xfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/c64x/c64xfrag.c -------------------------------------------------------------------------------- /theora/lib/c64x/c64xidct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/c64x/c64xidct.c -------------------------------------------------------------------------------- /theora/lib/c64x/c64xint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/c64x/c64xint.h -------------------------------------------------------------------------------- /theora/lib/c64x/c64xstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/c64x/c64xstate.c -------------------------------------------------------------------------------- /theora/lib/collect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/collect.c -------------------------------------------------------------------------------- /theora/lib/collect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/collect.h -------------------------------------------------------------------------------- /theora/lib/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/dct.h -------------------------------------------------------------------------------- /theora/lib/decapiwrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/decapiwrapper.c -------------------------------------------------------------------------------- /theora/lib/decinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/decinfo.c -------------------------------------------------------------------------------- /theora/lib/decint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/decint.h -------------------------------------------------------------------------------- /theora/lib/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/decode.c -------------------------------------------------------------------------------- /theora/lib/defexp.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/defexp.awk -------------------------------------------------------------------------------- /theora/lib/dequant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/dequant.c -------------------------------------------------------------------------------- /theora/lib/dequant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/dequant.h -------------------------------------------------------------------------------- /theora/lib/encapiwrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/encapiwrapper.c -------------------------------------------------------------------------------- /theora/lib/encfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/encfrag.c -------------------------------------------------------------------------------- /theora/lib/encinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/encinfo.c -------------------------------------------------------------------------------- /theora/lib/encint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/encint.h -------------------------------------------------------------------------------- /theora/lib/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/encode.c -------------------------------------------------------------------------------- /theora/lib/encoder_disabled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/encoder_disabled.c -------------------------------------------------------------------------------- /theora/lib/enquant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/enquant.c -------------------------------------------------------------------------------- /theora/lib/enquant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/enquant.h -------------------------------------------------------------------------------- /theora/lib/fdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/fdct.c -------------------------------------------------------------------------------- /theora/lib/fragment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/fragment.c -------------------------------------------------------------------------------- /theora/lib/huffdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/huffdec.c -------------------------------------------------------------------------------- /theora/lib/huffdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/huffdec.h -------------------------------------------------------------------------------- /theora/lib/huffenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/huffenc.c -------------------------------------------------------------------------------- /theora/lib/huffenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/huffenc.h -------------------------------------------------------------------------------- /theora/lib/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/huffman.h -------------------------------------------------------------------------------- /theora/lib/idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/idct.c -------------------------------------------------------------------------------- /theora/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/info.c -------------------------------------------------------------------------------- /theora/lib/internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/internal.c -------------------------------------------------------------------------------- /theora/lib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/internal.h -------------------------------------------------------------------------------- /theora/lib/mathops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/mathops.c -------------------------------------------------------------------------------- /theora/lib/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/mathops.h -------------------------------------------------------------------------------- /theora/lib/mcenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/mcenc.c -------------------------------------------------------------------------------- /theora/lib/modedec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/modedec.h -------------------------------------------------------------------------------- /theora/lib/ocintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/ocintrin.h -------------------------------------------------------------------------------- /theora/lib/quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/quant.c -------------------------------------------------------------------------------- /theora/lib/quant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/quant.h -------------------------------------------------------------------------------- /theora/lib/rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/rate.c -------------------------------------------------------------------------------- /theora/lib/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/state.c -------------------------------------------------------------------------------- /theora/lib/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/state.h -------------------------------------------------------------------------------- /theora/lib/theora.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/theora.def -------------------------------------------------------------------------------- /theora/lib/theora.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/theora.exp -------------------------------------------------------------------------------- /theora/lib/theoradec.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/theoradec.exp -------------------------------------------------------------------------------- /theora/lib/theoraenc.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/theoraenc.exp -------------------------------------------------------------------------------- /theora/lib/tokenize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/tokenize.c -------------------------------------------------------------------------------- /theora/lib/x86/mmxencfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/mmxencfrag.c -------------------------------------------------------------------------------- /theora/lib/x86/mmxfdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/mmxfdct.c -------------------------------------------------------------------------------- /theora/lib/x86/mmxfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/mmxfrag.c -------------------------------------------------------------------------------- /theora/lib/x86/mmxidct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/mmxidct.c -------------------------------------------------------------------------------- /theora/lib/x86/mmxloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/mmxloop.h -------------------------------------------------------------------------------- /theora/lib/x86/mmxstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/mmxstate.c -------------------------------------------------------------------------------- /theora/lib/x86/sse2encfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/sse2encfrag.c -------------------------------------------------------------------------------- /theora/lib/x86/sse2fdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/sse2fdct.c -------------------------------------------------------------------------------- /theora/lib/x86/sse2idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/sse2idct.c -------------------------------------------------------------------------------- /theora/lib/x86/sse2trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/sse2trans.h -------------------------------------------------------------------------------- /theora/lib/x86/x86cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/x86cpu.c -------------------------------------------------------------------------------- /theora/lib/x86/x86cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/x86cpu.h -------------------------------------------------------------------------------- /theora/lib/x86/x86enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/x86enc.c -------------------------------------------------------------------------------- /theora/lib/x86/x86enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/x86enc.h -------------------------------------------------------------------------------- /theora/lib/x86/x86enquant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/x86enquant.c -------------------------------------------------------------------------------- /theora/lib/x86/x86int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/x86int.h -------------------------------------------------------------------------------- /theora/lib/x86/x86state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/x86state.c -------------------------------------------------------------------------------- /theora/lib/x86/x86zigzag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86/x86zigzag.h -------------------------------------------------------------------------------- /theora/lib/x86_vc/mmxfdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86_vc/mmxfdct.c -------------------------------------------------------------------------------- /theora/lib/x86_vc/mmxfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86_vc/mmxfrag.c -------------------------------------------------------------------------------- /theora/lib/x86_vc/mmxidct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86_vc/mmxidct.c -------------------------------------------------------------------------------- /theora/lib/x86_vc/mmxloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86_vc/mmxloop.h -------------------------------------------------------------------------------- /theora/lib/x86_vc/mmxstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86_vc/mmxstate.c -------------------------------------------------------------------------------- /theora/lib/x86_vc/x86cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86_vc/x86cpu.c -------------------------------------------------------------------------------- /theora/lib/x86_vc/x86cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86_vc/x86cpu.h -------------------------------------------------------------------------------- /theora/lib/x86_vc/x86enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86_vc/x86enc.c -------------------------------------------------------------------------------- /theora/lib/x86_vc/x86enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86_vc/x86enc.h -------------------------------------------------------------------------------- /theora/lib/x86_vc/x86int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86_vc/x86int.h -------------------------------------------------------------------------------- /theora/lib/x86_vc/x86state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86_vc/x86state.c -------------------------------------------------------------------------------- /theora/lib/x86_vc/x86zigzag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/lib/x86_vc/x86zigzag.h -------------------------------------------------------------------------------- /theora/macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/macosx/Info.plist -------------------------------------------------------------------------------- /theora/win32/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/win32/getopt.c -------------------------------------------------------------------------------- /theora/win32/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/win32/getopt1.c -------------------------------------------------------------------------------- /theora/win32/getopt_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/win32/getopt_win.h -------------------------------------------------------------------------------- /theora/xcconfig/Mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/xcconfig/Mac.xcconfig -------------------------------------------------------------------------------- /theora/xcconfig/iOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theora/xcconfig/iOS.xcconfig -------------------------------------------------------------------------------- /theoraplayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theoraplayer/Info.plist -------------------------------------------------------------------------------- /theoraplayer/android-studio/lib-hltypes/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /theoraplayer/android-studio/lib/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /theoraplayer/src/Manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theoraplayer/src/Manager.cpp -------------------------------------------------------------------------------- /theoraplayer/src/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theoraplayer/src/Mutex.cpp -------------------------------------------------------------------------------- /theoraplayer/src/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theoraplayer/src/Mutex.h -------------------------------------------------------------------------------- /theoraplayer/src/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theoraplayer/src/Thread.cpp -------------------------------------------------------------------------------- /theoraplayer/src/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theoraplayer/src/Thread.h -------------------------------------------------------------------------------- /theoraplayer/src/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theoraplayer/src/Timer.cpp -------------------------------------------------------------------------------- /theoraplayer/src/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theoraplayer/src/Utility.cpp -------------------------------------------------------------------------------- /theoraplayer/src/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/theoraplayer/src/Utility.h -------------------------------------------------------------------------------- /tremor/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/COPYING -------------------------------------------------------------------------------- /tremor/android-studio/lib/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /tremor/asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/asm_arm.h -------------------------------------------------------------------------------- /tremor/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/backends.h -------------------------------------------------------------------------------- /tremor/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/block.c -------------------------------------------------------------------------------- /tremor/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/block.h -------------------------------------------------------------------------------- /tremor/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/codebook.c -------------------------------------------------------------------------------- /tremor/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/codebook.h -------------------------------------------------------------------------------- /tremor/codec_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/codec_internal.h -------------------------------------------------------------------------------- /tremor/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/config_types.h -------------------------------------------------------------------------------- /tremor/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/floor0.c -------------------------------------------------------------------------------- /tremor/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/floor1.c -------------------------------------------------------------------------------- /tremor/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/info.c -------------------------------------------------------------------------------- /tremor/ivorbiscodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/ivorbiscodec.h -------------------------------------------------------------------------------- /tremor/ivorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/ivorbisfile.h -------------------------------------------------------------------------------- /tremor/lsp_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/lsp_lookup.h -------------------------------------------------------------------------------- /tremor/mapping0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/mapping0.c -------------------------------------------------------------------------------- /tremor/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/mdct.c -------------------------------------------------------------------------------- /tremor/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/mdct.h -------------------------------------------------------------------------------- /tremor/mdct_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/mdct_lookup.h -------------------------------------------------------------------------------- /tremor/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/misc.h -------------------------------------------------------------------------------- /tremor/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/os.h -------------------------------------------------------------------------------- /tremor/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/registry.c -------------------------------------------------------------------------------- /tremor/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/registry.h -------------------------------------------------------------------------------- /tremor/res012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/res012.c -------------------------------------------------------------------------------- /tremor/sharedbook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/sharedbook.c -------------------------------------------------------------------------------- /tremor/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/synthesis.c -------------------------------------------------------------------------------- /tremor/vorbisfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/vorbisfile.c -------------------------------------------------------------------------------- /tremor/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/window.c -------------------------------------------------------------------------------- /tremor/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/window.h -------------------------------------------------------------------------------- /tremor/window_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/window_lookup.h -------------------------------------------------------------------------------- /tremor/xcconfig/Mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/xcconfig/Mac.xcconfig -------------------------------------------------------------------------------- /tremor/xcconfig/iOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/tremor/xcconfig/iOS.xcconfig -------------------------------------------------------------------------------- /vorbis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/COPYING -------------------------------------------------------------------------------- /vorbis/include/vorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/include/vorbis/codec.h -------------------------------------------------------------------------------- /vorbis/lib/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/analysis.c -------------------------------------------------------------------------------- /vorbis/lib/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/backends.h -------------------------------------------------------------------------------- /vorbis/lib/barkmel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/barkmel.c -------------------------------------------------------------------------------- /vorbis/lib/bitrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/bitrate.c -------------------------------------------------------------------------------- /vorbis/lib/bitrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/bitrate.h -------------------------------------------------------------------------------- /vorbis/lib/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/block.c -------------------------------------------------------------------------------- /vorbis/lib/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/codebook.c -------------------------------------------------------------------------------- /vorbis/lib/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/codebook.h -------------------------------------------------------------------------------- /vorbis/lib/codec_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/codec_internal.h -------------------------------------------------------------------------------- /vorbis/lib/envelope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/envelope.c -------------------------------------------------------------------------------- /vorbis/lib/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/envelope.h -------------------------------------------------------------------------------- /vorbis/lib/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/floor0.c -------------------------------------------------------------------------------- /vorbis/lib/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/floor1.c -------------------------------------------------------------------------------- /vorbis/lib/highlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/highlevel.h -------------------------------------------------------------------------------- /vorbis/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/info.c -------------------------------------------------------------------------------- /vorbis/lib/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/lookup.c -------------------------------------------------------------------------------- /vorbis/lib/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/lookup.h -------------------------------------------------------------------------------- /vorbis/lib/lookup_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/lookup_data.h -------------------------------------------------------------------------------- /vorbis/lib/lookups.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/lookups.pl -------------------------------------------------------------------------------- /vorbis/lib/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/lpc.c -------------------------------------------------------------------------------- /vorbis/lib/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/lpc.h -------------------------------------------------------------------------------- /vorbis/lib/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/lsp.c -------------------------------------------------------------------------------- /vorbis/lib/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/lsp.h -------------------------------------------------------------------------------- /vorbis/lib/mapping0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/mapping0.c -------------------------------------------------------------------------------- /vorbis/lib/masking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/masking.h -------------------------------------------------------------------------------- /vorbis/lib/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/mdct.c -------------------------------------------------------------------------------- /vorbis/lib/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/mdct.h -------------------------------------------------------------------------------- /vorbis/lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/misc.h -------------------------------------------------------------------------------- /vorbis/lib/modes/floor_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/modes/floor_all.h -------------------------------------------------------------------------------- /vorbis/lib/modes/psych_11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/modes/psych_11.h -------------------------------------------------------------------------------- /vorbis/lib/modes/psych_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/modes/psych_16.h -------------------------------------------------------------------------------- /vorbis/lib/modes/psych_44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/modes/psych_44.h -------------------------------------------------------------------------------- /vorbis/lib/modes/psych_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/modes/psych_8.h -------------------------------------------------------------------------------- /vorbis/lib/modes/residue_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/modes/residue_16.h -------------------------------------------------------------------------------- /vorbis/lib/modes/residue_44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/modes/residue_44.h -------------------------------------------------------------------------------- /vorbis/lib/modes/residue_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/modes/residue_8.h -------------------------------------------------------------------------------- /vorbis/lib/modes/setup_11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/modes/setup_11.h -------------------------------------------------------------------------------- /vorbis/lib/modes/setup_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/modes/setup_16.h -------------------------------------------------------------------------------- /vorbis/lib/modes/setup_22.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/modes/setup_22.h -------------------------------------------------------------------------------- /vorbis/lib/modes/setup_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/modes/setup_32.h -------------------------------------------------------------------------------- /vorbis/lib/modes/setup_44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/modes/setup_44.h -------------------------------------------------------------------------------- /vorbis/lib/modes/setup_44u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/modes/setup_44u.h -------------------------------------------------------------------------------- /vorbis/lib/modes/setup_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/modes/setup_8.h -------------------------------------------------------------------------------- /vorbis/lib/modes/setup_X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/modes/setup_X.h -------------------------------------------------------------------------------- /vorbis/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/os.h -------------------------------------------------------------------------------- /vorbis/lib/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/psy.c -------------------------------------------------------------------------------- /vorbis/lib/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/psy.h -------------------------------------------------------------------------------- /vorbis/lib/psytune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/psytune.c -------------------------------------------------------------------------------- /vorbis/lib/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/registry.c -------------------------------------------------------------------------------- /vorbis/lib/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/registry.h -------------------------------------------------------------------------------- /vorbis/lib/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/res0.c -------------------------------------------------------------------------------- /vorbis/lib/scales.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/scales.h -------------------------------------------------------------------------------- /vorbis/lib/sharedbook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/sharedbook.c -------------------------------------------------------------------------------- /vorbis/lib/smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/smallft.c -------------------------------------------------------------------------------- /vorbis/lib/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/smallft.h -------------------------------------------------------------------------------- /vorbis/lib/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/synthesis.c -------------------------------------------------------------------------------- /vorbis/lib/tone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/tone.c -------------------------------------------------------------------------------- /vorbis/lib/vorbisenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/vorbisenc.c -------------------------------------------------------------------------------- /vorbis/lib/vorbisfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/vorbisfile.c -------------------------------------------------------------------------------- /vorbis/lib/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/window.c -------------------------------------------------------------------------------- /vorbis/lib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/lib/window.h -------------------------------------------------------------------------------- /vorbis/macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/macosx/Info.plist -------------------------------------------------------------------------------- /vorbis/win32/VS2008/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/win32/VS2008/README -------------------------------------------------------------------------------- /vorbis/win32/VS2012/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/win32/VS2012/README -------------------------------------------------------------------------------- /vorbis/win32/vorbis.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/win32/vorbis.def -------------------------------------------------------------------------------- /vorbis/win32/vorbisenc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/win32/vorbisenc.def -------------------------------------------------------------------------------- /vorbis/win32/vorbisfile.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/win32/vorbisfile.def -------------------------------------------------------------------------------- /vorbis/xcconfig/Mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/xcconfig/Mac.xcconfig -------------------------------------------------------------------------------- /vorbis/xcconfig/iOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vorbis/xcconfig/iOS.xcconfig -------------------------------------------------------------------------------- /vpx/.bins: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vpx/.docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vpx/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/.gitattributes -------------------------------------------------------------------------------- /vpx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/.gitignore -------------------------------------------------------------------------------- /vpx/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/.mailmap -------------------------------------------------------------------------------- /vpx/.nodevenv.once: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vpx/.projects: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vpx/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/AUTHORS -------------------------------------------------------------------------------- /vpx/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/CHANGELOG -------------------------------------------------------------------------------- /vpx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/LICENSE -------------------------------------------------------------------------------- /vpx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/Makefile -------------------------------------------------------------------------------- /vpx/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/PATENTS -------------------------------------------------------------------------------- /vpx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/README -------------------------------------------------------------------------------- /vpx/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/args.c -------------------------------------------------------------------------------- /vpx/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/args.h -------------------------------------------------------------------------------- /vpx/codereview.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/codereview.settings -------------------------------------------------------------------------------- /vpx/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/configure -------------------------------------------------------------------------------- /vpx/decode_to_md5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/decode_to_md5.vcxproj -------------------------------------------------------------------------------- /vpx/decode_with_drops.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/decode_with_drops.vcxproj -------------------------------------------------------------------------------- /vpx/gtest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/gtest.vcxproj -------------------------------------------------------------------------------- /vpx/ivfdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/ivfdec.c -------------------------------------------------------------------------------- /vpx/ivfdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/ivfdec.h -------------------------------------------------------------------------------- /vpx/ivfenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/ivfenc.c -------------------------------------------------------------------------------- /vpx/ivfenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/ivfenc.h -------------------------------------------------------------------------------- /vpx/keywords.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/keywords.dox -------------------------------------------------------------------------------- /vpx/libs.doxy_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/libs.doxy_template -------------------------------------------------------------------------------- /vpx/macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/macosx/Info.plist -------------------------------------------------------------------------------- /vpx/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/mainpage.dox -------------------------------------------------------------------------------- /vpx/md5_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/md5_utils.c -------------------------------------------------------------------------------- /vpx/md5_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/md5_utils.h -------------------------------------------------------------------------------- /vpx/msvc/util/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/msvc/util/readme.txt -------------------------------------------------------------------------------- /vpx/msvc/util/vsyasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/msvc/util/vsyasm.exe -------------------------------------------------------------------------------- /vpx/postproc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/postproc.vcxproj -------------------------------------------------------------------------------- /vpx/rate_hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/rate_hist.c -------------------------------------------------------------------------------- /vpx/rate_hist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/rate_hist.h -------------------------------------------------------------------------------- /vpx/resize_util.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/resize_util.vcxproj -------------------------------------------------------------------------------- /vpx/set_maps.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/set_maps.vcxproj -------------------------------------------------------------------------------- /vpx/simple_decoder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/simple_decoder.vcxproj -------------------------------------------------------------------------------- /vpx/simple_encoder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/simple_encoder.vcxproj -------------------------------------------------------------------------------- /vpx/test_libvpx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/test_libvpx.vcxproj -------------------------------------------------------------------------------- /vpx/tools_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/tools_common.c -------------------------------------------------------------------------------- /vpx/tools_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/tools_common.h -------------------------------------------------------------------------------- /vpx/twopass_encoder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/twopass_encoder.vcxproj -------------------------------------------------------------------------------- /vpx/usage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/usage.dox -------------------------------------------------------------------------------- /vpx/usage_cx.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/usage_cx.dox -------------------------------------------------------------------------------- /vpx/usage_dx.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/usage_dx.dox -------------------------------------------------------------------------------- /vpx/video_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/video_common.h -------------------------------------------------------------------------------- /vpx/video_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/video_reader.c -------------------------------------------------------------------------------- /vpx/video_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/video_reader.h -------------------------------------------------------------------------------- /vpx/video_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/video_writer.c -------------------------------------------------------------------------------- /vpx/video_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/video_writer.h -------------------------------------------------------------------------------- /vpx/vp10/common/alloccommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/alloccommon.c -------------------------------------------------------------------------------- /vpx/vp10/common/alloccommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/alloccommon.h -------------------------------------------------------------------------------- /vpx/vp10/common/blockd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/blockd.c -------------------------------------------------------------------------------- /vpx/vp10/common/blockd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/blockd.h -------------------------------------------------------------------------------- /vpx/vp10/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/common.h -------------------------------------------------------------------------------- /vpx/vp10/common/common_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/common_data.h -------------------------------------------------------------------------------- /vpx/vp10/common/debugmodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/debugmodes.c -------------------------------------------------------------------------------- /vpx/vp10/common/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/entropy.c -------------------------------------------------------------------------------- /vpx/vp10/common/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/entropy.h -------------------------------------------------------------------------------- /vpx/vp10/common/entropymode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/entropymode.c -------------------------------------------------------------------------------- /vpx/vp10/common/entropymode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/entropymode.h -------------------------------------------------------------------------------- /vpx/vp10/common/entropymv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/entropymv.c -------------------------------------------------------------------------------- /vpx/vp10/common/entropymv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/entropymv.h -------------------------------------------------------------------------------- /vpx/vp10/common/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/enums.h -------------------------------------------------------------------------------- /vpx/vp10/common/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/filter.c -------------------------------------------------------------------------------- /vpx/vp10/common/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/filter.h -------------------------------------------------------------------------------- /vpx/vp10/common/idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/idct.c -------------------------------------------------------------------------------- /vpx/vp10/common/idct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/idct.h -------------------------------------------------------------------------------- /vpx/vp10/common/loopfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/loopfilter.c -------------------------------------------------------------------------------- /vpx/vp10/common/loopfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/loopfilter.h -------------------------------------------------------------------------------- /vpx/vp10/common/mfqe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/mfqe.c -------------------------------------------------------------------------------- /vpx/vp10/common/mfqe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/mfqe.h -------------------------------------------------------------------------------- /vpx/vp10/common/mv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/mv.h -------------------------------------------------------------------------------- /vpx/vp10/common/onyxc_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/onyxc_int.h -------------------------------------------------------------------------------- /vpx/vp10/common/postproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/postproc.c -------------------------------------------------------------------------------- /vpx/vp10/common/postproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/postproc.h -------------------------------------------------------------------------------- /vpx/vp10/common/ppflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/ppflags.h -------------------------------------------------------------------------------- /vpx/vp10/common/pred_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/pred_common.c -------------------------------------------------------------------------------- /vpx/vp10/common/pred_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/pred_common.h -------------------------------------------------------------------------------- /vpx/vp10/common/reconinter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/reconinter.c -------------------------------------------------------------------------------- /vpx/vp10/common/reconinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/reconinter.h -------------------------------------------------------------------------------- /vpx/vp10/common/reconintra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/reconintra.c -------------------------------------------------------------------------------- /vpx/vp10/common/reconintra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/reconintra.h -------------------------------------------------------------------------------- /vpx/vp10/common/scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/scale.c -------------------------------------------------------------------------------- /vpx/vp10/common/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/scale.h -------------------------------------------------------------------------------- /vpx/vp10/common/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/scan.c -------------------------------------------------------------------------------- /vpx/vp10/common/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/scan.h -------------------------------------------------------------------------------- /vpx/vp10/common/seg_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/seg_common.c -------------------------------------------------------------------------------- /vpx/vp10/common/seg_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/seg_common.h -------------------------------------------------------------------------------- /vpx/vp10/common/textblit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/textblit.c -------------------------------------------------------------------------------- /vpx/vp10/common/textblit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/textblit.h -------------------------------------------------------------------------------- /vpx/vp10/common/tile_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/tile_common.c -------------------------------------------------------------------------------- /vpx/vp10/common/tile_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/tile_common.h -------------------------------------------------------------------------------- /vpx/vp10/common/vp10_rtcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/common/vp10_rtcd.c -------------------------------------------------------------------------------- /vpx/vp10/decoder/decodemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/decoder/decodemv.c -------------------------------------------------------------------------------- /vpx/vp10/decoder/decodemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/decoder/decodemv.h -------------------------------------------------------------------------------- /vpx/vp10/decoder/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/decoder/decoder.c -------------------------------------------------------------------------------- /vpx/vp10/decoder/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/decoder/decoder.h -------------------------------------------------------------------------------- /vpx/vp10/decoder/detokenize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/decoder/detokenize.c -------------------------------------------------------------------------------- /vpx/vp10/decoder/detokenize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/decoder/detokenize.h -------------------------------------------------------------------------------- /vpx/vp10/decoder/dsubexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/decoder/dsubexp.c -------------------------------------------------------------------------------- /vpx/vp10/decoder/dsubexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/decoder/dsubexp.h -------------------------------------------------------------------------------- /vpx/vp10/decoder/dthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/decoder/dthread.c -------------------------------------------------------------------------------- /vpx/vp10/decoder/dthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/decoder/dthread.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/avg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/avg.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/bitstream.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/bitstream.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/block.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/blockiness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/blockiness.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/cost.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/cost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/cost.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/dct.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/denoiser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/denoiser.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/denoiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/denoiser.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/encodemb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/encodemb.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/encodemb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/encodemb.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/encodemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/encodemv.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/encodemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/encodemv.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/encoder.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/encoder.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/ethread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/ethread.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/ethread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/ethread.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/extend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/extend.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/extend.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/firstpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/firstpass.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/firstpass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/firstpass.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/lookahead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/lookahead.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/lookahead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/lookahead.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/mbgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/mbgraph.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/mbgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/mbgraph.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/mcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/mcomp.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/mcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/mcomp.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/palette.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/palette.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/picklpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/picklpf.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/picklpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/picklpf.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/quantize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/quantize.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/quantize.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/ratectrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/ratectrl.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/ratectrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/ratectrl.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/rd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/rd.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/rd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/rd.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/rdopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/rdopt.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/rdopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/rdopt.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/resize.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/resize.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/subexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/subexp.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/subexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/subexp.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/tokenize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/tokenize.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/tokenize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/tokenize.h -------------------------------------------------------------------------------- /vpx/vp10/encoder/treewriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/treewriter.c -------------------------------------------------------------------------------- /vpx/vp10/encoder/treewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/encoder/treewriter.h -------------------------------------------------------------------------------- /vpx/vp10/exports_dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/exports_dec -------------------------------------------------------------------------------- /vpx/vp10/exports_enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/exports_enc -------------------------------------------------------------------------------- /vpx/vp10/vp10_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/vp10_common.mk -------------------------------------------------------------------------------- /vpx/vp10/vp10_cx_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/vp10_cx_iface.c -------------------------------------------------------------------------------- /vpx/vp10/vp10_dx_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/vp10_dx_iface.c -------------------------------------------------------------------------------- /vpx/vp10/vp10_iface_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/vp10_iface_common.h -------------------------------------------------------------------------------- /vpx/vp10/vp10cx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/vp10cx.mk -------------------------------------------------------------------------------- /vpx/vp10/vp10dx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp10/vp10dx.mk -------------------------------------------------------------------------------- /vpx/vp8/common/alloccommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/alloccommon.c -------------------------------------------------------------------------------- /vpx/vp8/common/alloccommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/alloccommon.h -------------------------------------------------------------------------------- /vpx/vp8/common/blockd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/blockd.c -------------------------------------------------------------------------------- /vpx/vp8/common/blockd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/blockd.h -------------------------------------------------------------------------------- /vpx/vp8/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/common.h -------------------------------------------------------------------------------- /vpx/vp8/common/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/context.c -------------------------------------------------------------------------------- /vpx/vp8/common/copy_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/copy_c.c -------------------------------------------------------------------------------- /vpx/vp8/common/debugmodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/debugmodes.c -------------------------------------------------------------------------------- /vpx/vp8/common/dequantize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/dequantize.c -------------------------------------------------------------------------------- /vpx/vp8/common/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/entropy.c -------------------------------------------------------------------------------- /vpx/vp8/common/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/entropy.h -------------------------------------------------------------------------------- /vpx/vp8/common/entropymode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/entropymode.c -------------------------------------------------------------------------------- /vpx/vp8/common/entropymode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/entropymode.h -------------------------------------------------------------------------------- /vpx/vp8/common/entropymv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/entropymv.c -------------------------------------------------------------------------------- /vpx/vp8/common/entropymv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/entropymv.h -------------------------------------------------------------------------------- /vpx/vp8/common/extend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/extend.c -------------------------------------------------------------------------------- /vpx/vp8/common/extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/extend.h -------------------------------------------------------------------------------- /vpx/vp8/common/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/filter.c -------------------------------------------------------------------------------- /vpx/vp8/common/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/filter.h -------------------------------------------------------------------------------- /vpx/vp8/common/findnearmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/findnearmv.c -------------------------------------------------------------------------------- /vpx/vp8/common/findnearmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/findnearmv.h -------------------------------------------------------------------------------- /vpx/vp8/common/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/header.h -------------------------------------------------------------------------------- /vpx/vp8/common/idct_blk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/idct_blk.c -------------------------------------------------------------------------------- /vpx/vp8/common/idctllm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/idctllm.c -------------------------------------------------------------------------------- /vpx/vp8/common/invtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/invtrans.h -------------------------------------------------------------------------------- /vpx/vp8/common/loopfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/loopfilter.h -------------------------------------------------------------------------------- /vpx/vp8/common/mbpitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/mbpitch.c -------------------------------------------------------------------------------- /vpx/vp8/common/mfqe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/mfqe.c -------------------------------------------------------------------------------- /vpx/vp8/common/modecont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/modecont.c -------------------------------------------------------------------------------- /vpx/vp8/common/modecont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/modecont.h -------------------------------------------------------------------------------- /vpx/vp8/common/mv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/mv.h -------------------------------------------------------------------------------- /vpx/vp8/common/onyx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/onyx.h -------------------------------------------------------------------------------- /vpx/vp8/common/onyxc_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/onyxc_int.h -------------------------------------------------------------------------------- /vpx/vp8/common/onyxd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/onyxd.h -------------------------------------------------------------------------------- /vpx/vp8/common/postproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/postproc.c -------------------------------------------------------------------------------- /vpx/vp8/common/postproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/postproc.h -------------------------------------------------------------------------------- /vpx/vp8/common/ppflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/ppflags.h -------------------------------------------------------------------------------- /vpx/vp8/common/quant_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/quant_common.c -------------------------------------------------------------------------------- /vpx/vp8/common/quant_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/quant_common.h -------------------------------------------------------------------------------- /vpx/vp8/common/reconinter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/reconinter.c -------------------------------------------------------------------------------- /vpx/vp8/common/reconinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/reconinter.h -------------------------------------------------------------------------------- /vpx/vp8/common/reconintra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/reconintra.c -------------------------------------------------------------------------------- /vpx/vp8/common/reconintra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/reconintra.h -------------------------------------------------------------------------------- /vpx/vp8/common/rtcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/rtcd.c -------------------------------------------------------------------------------- /vpx/vp8/common/rtcd_defs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/rtcd_defs.pl -------------------------------------------------------------------------------- /vpx/vp8/common/textblit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/textblit.c -------------------------------------------------------------------------------- /vpx/vp8/common/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/threading.h -------------------------------------------------------------------------------- /vpx/vp8/common/treecoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/treecoder.c -------------------------------------------------------------------------------- /vpx/vp8/common/treecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/common/treecoder.h -------------------------------------------------------------------------------- /vpx/vp8/decoder/dboolhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/decoder/dboolhuff.c -------------------------------------------------------------------------------- /vpx/vp8/decoder/dboolhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/decoder/dboolhuff.h -------------------------------------------------------------------------------- /vpx/vp8/decoder/decodeframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/decoder/decodeframe.c -------------------------------------------------------------------------------- /vpx/vp8/decoder/decodemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/decoder/decodemv.c -------------------------------------------------------------------------------- /vpx/vp8/decoder/decodemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/decoder/decodemv.h -------------------------------------------------------------------------------- /vpx/vp8/decoder/detokenize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/decoder/detokenize.c -------------------------------------------------------------------------------- /vpx/vp8/decoder/detokenize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/decoder/detokenize.h -------------------------------------------------------------------------------- /vpx/vp8/decoder/ec_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/decoder/ec_types.h -------------------------------------------------------------------------------- /vpx/vp8/decoder/onyxd_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/decoder/onyxd_if.c -------------------------------------------------------------------------------- /vpx/vp8/decoder/onyxd_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/decoder/onyxd_int.h -------------------------------------------------------------------------------- /vpx/vp8/decoder/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/decoder/threading.c -------------------------------------------------------------------------------- /vpx/vp8/decoder/treereader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/decoder/treereader.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/arm/dct_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/arm/dct_arm.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/bitstream.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/bitstream.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/block.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/boolhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/boolhuff.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/boolhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/boolhuff.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/dct.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/denoising.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/denoising.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/denoising.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/denoising.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/encodeframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/encodeframe.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/encodeframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/encodeframe.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/encodeintra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/encodeintra.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/encodeintra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/encodeintra.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/encodemb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/encodemb.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/encodemb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/encodemb.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/encodemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/encodemv.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/encodemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/encodemv.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/ethreading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/ethreading.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/firstpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/firstpass.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/firstpass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/firstpass.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/lookahead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/lookahead.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/lookahead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/lookahead.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/mcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/mcomp.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/mcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/mcomp.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/modecosts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/modecosts.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/modecosts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/modecosts.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/mr_dissim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/mr_dissim.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/mr_dissim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/mr_dissim.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/onyx_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/onyx_if.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/onyx_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/onyx_int.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/pickinter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/pickinter.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/pickinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/pickinter.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/picklpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/picklpf.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/quantize.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/ratectrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/ratectrl.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/ratectrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/ratectrl.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/rdopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/rdopt.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/rdopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/rdopt.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/tokenize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/tokenize.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/tokenize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/tokenize.h -------------------------------------------------------------------------------- /vpx/vp8/encoder/treewriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/treewriter.c -------------------------------------------------------------------------------- /vpx/vp8/encoder/treewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/encoder/treewriter.h -------------------------------------------------------------------------------- /vpx/vp8/exports_dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/exports_dec -------------------------------------------------------------------------------- /vpx/vp8/exports_enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/exports_enc -------------------------------------------------------------------------------- /vpx/vp8/vp8_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/vp8_common.mk -------------------------------------------------------------------------------- /vpx/vp8/vp8_cx_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/vp8_cx_iface.c -------------------------------------------------------------------------------- /vpx/vp8/vp8_dx_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/vp8_dx_iface.c -------------------------------------------------------------------------------- /vpx/vp8/vp8cx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/vp8cx.mk -------------------------------------------------------------------------------- /vpx/vp8/vp8cx_arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/vp8cx_arm.mk -------------------------------------------------------------------------------- /vpx/vp8/vp8dx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8/vp8dx.mk -------------------------------------------------------------------------------- /vpx/vp8_rtcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8_rtcd.h -------------------------------------------------------------------------------- /vpx/vp8cx_set_ref.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp8cx_set_ref.vcxproj -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_blockd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_blockd.c -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_blockd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_blockd.h -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_common.h -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_entropy.c -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_entropy.h -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_enums.h -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_filter.c -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_filter.h -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_idct.c -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_idct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_idct.h -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_mfqe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_mfqe.c -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_mfqe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_mfqe.h -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_mv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_mv.h -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_postproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_postproc.c -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_postproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_postproc.h -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_ppflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_ppflags.h -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_rtcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_rtcd.c -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_scale.c -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_scale.h -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_scan.c -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_scan.h -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_textblit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_textblit.c -------------------------------------------------------------------------------- /vpx/vp9/common/vp9_textblit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/common/vp9_textblit.h -------------------------------------------------------------------------------- /vpx/vp9/decoder/vp9_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/decoder/vp9_decoder.c -------------------------------------------------------------------------------- /vpx/vp9/decoder/vp9_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/decoder/vp9_decoder.h -------------------------------------------------------------------------------- /vpx/vp9/decoder/vp9_dsubexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/decoder/vp9_dsubexp.c -------------------------------------------------------------------------------- /vpx/vp9/decoder/vp9_dsubexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/decoder/vp9_dsubexp.h -------------------------------------------------------------------------------- /vpx/vp9/decoder/vp9_dthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/decoder/vp9_dthread.c -------------------------------------------------------------------------------- /vpx/vp9/decoder/vp9_dthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/decoder/vp9_dthread.h -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_avg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_avg.c -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_block.h -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_cost.c -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_cost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_cost.h -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_dct.c -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_encoder.c -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_encoder.h -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_ethread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_ethread.c -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_ethread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_ethread.h -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_extend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_extend.c -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_extend.h -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_mbgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_mbgraph.c -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_mbgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_mbgraph.h -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_mcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_mcomp.c -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_mcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_mcomp.h -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_picklpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_picklpf.c -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_picklpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_picklpf.h -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_rd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_rd.c -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_rd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_rd.h -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_rdopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_rdopt.c -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_rdopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_rdopt.h -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_resize.c -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_resize.h -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_subexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_subexp.c -------------------------------------------------------------------------------- /vpx/vp9/encoder/vp9_subexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/encoder/vp9_subexp.h -------------------------------------------------------------------------------- /vpx/vp9/exports_dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/exports_dec -------------------------------------------------------------------------------- /vpx/vp9/exports_enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/exports_enc -------------------------------------------------------------------------------- /vpx/vp9/vp9_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/vp9_common.mk -------------------------------------------------------------------------------- /vpx/vp9/vp9_cx_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/vp9_cx_iface.c -------------------------------------------------------------------------------- /vpx/vp9/vp9_dx_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/vp9_dx_iface.c -------------------------------------------------------------------------------- /vpx/vp9/vp9_dx_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/vp9_dx_iface.h -------------------------------------------------------------------------------- /vpx/vp9/vp9_iface_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/vp9_iface_common.h -------------------------------------------------------------------------------- /vpx/vp9/vp9cx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/vp9cx.mk -------------------------------------------------------------------------------- /vpx/vp9/vp9dx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9/vp9dx.mk -------------------------------------------------------------------------------- /vpx/vp9_rtcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vp9_rtcd.h -------------------------------------------------------------------------------- /vpx/vpx.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx.def -------------------------------------------------------------------------------- /vpx/vpx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx.sln -------------------------------------------------------------------------------- /vpx/vpx.sln.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx.sln.mk -------------------------------------------------------------------------------- /vpx/vpx.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx.v12.suo -------------------------------------------------------------------------------- /vpx/vpx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx.vcxproj -------------------------------------------------------------------------------- /vpx/vpx/exports_com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/exports_com -------------------------------------------------------------------------------- /vpx/vpx/exports_dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/exports_dec -------------------------------------------------------------------------------- /vpx/vpx/exports_enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/exports_enc -------------------------------------------------------------------------------- /vpx/vpx/internal/vpx_psnr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/internal/vpx_psnr.h -------------------------------------------------------------------------------- /vpx/vpx/src/svc_encodeframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/src/svc_encodeframe.c -------------------------------------------------------------------------------- /vpx/vpx/src/vpx_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/src/vpx_codec.c -------------------------------------------------------------------------------- /vpx/vpx/src/vpx_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/src/vpx_decoder.c -------------------------------------------------------------------------------- /vpx/vpx/src/vpx_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/src/vpx_encoder.c -------------------------------------------------------------------------------- /vpx/vpx/src/vpx_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/src/vpx_image.c -------------------------------------------------------------------------------- /vpx/vpx/src/vpx_psnr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/src/vpx_psnr.c -------------------------------------------------------------------------------- /vpx/vpx/svc_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/svc_context.h -------------------------------------------------------------------------------- /vpx/vpx/vp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/vp8.h -------------------------------------------------------------------------------- /vpx/vpx/vp8cx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/vp8cx.h -------------------------------------------------------------------------------- /vpx/vpx/vp8dx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/vp8dx.h -------------------------------------------------------------------------------- /vpx/vpx/vpx_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/vpx_codec.h -------------------------------------------------------------------------------- /vpx/vpx/vpx_codec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/vpx_codec.mk -------------------------------------------------------------------------------- /vpx/vpx/vpx_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/vpx_decoder.h -------------------------------------------------------------------------------- /vpx/vpx/vpx_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/vpx_encoder.h -------------------------------------------------------------------------------- /vpx/vpx/vpx_frame_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/vpx_frame_buffer.h -------------------------------------------------------------------------------- /vpx/vpx/vpx_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/vpx_image.h -------------------------------------------------------------------------------- /vpx/vpx/vpx_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx/vpx_integer.h -------------------------------------------------------------------------------- /vpx/vpx_config.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_config.asm -------------------------------------------------------------------------------- /vpx/vpx_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_config.c -------------------------------------------------------------------------------- /vpx/vpx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_config.h -------------------------------------------------------------------------------- /vpx/vpx_dsp/arm/sad4d_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/arm/sad4d_neon.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/arm/sad_media.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/arm/sad_media.asm -------------------------------------------------------------------------------- /vpx/vpx_dsp/arm/sad_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/arm/sad_neon.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/bitreader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/bitreader.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/bitreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/bitreader.h -------------------------------------------------------------------------------- /vpx/vpx_dsp/bitwriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/bitwriter.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/bitwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/bitwriter.h -------------------------------------------------------------------------------- /vpx/vpx_dsp/fastssim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/fastssim.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/fwd_txfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/fwd_txfm.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/fwd_txfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/fwd_txfm.h -------------------------------------------------------------------------------- /vpx/vpx_dsp/intrapred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/intrapred.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/inv_txfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/inv_txfm.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/inv_txfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/inv_txfm.h -------------------------------------------------------------------------------- /vpx/vpx_dsp/loopfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/loopfilter.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/mips/macros_msa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/mips/macros_msa.h -------------------------------------------------------------------------------- /vpx/vpx_dsp/mips/sad_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/mips/sad_msa.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/prob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/prob.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/prob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/prob.h -------------------------------------------------------------------------------- /vpx/vpx_dsp/psnrhvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/psnrhvs.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/quantize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/quantize.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/quantize.h -------------------------------------------------------------------------------- /vpx/vpx_dsp/sad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/sad.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/ssim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/ssim.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/ssim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/ssim.h -------------------------------------------------------------------------------- /vpx/vpx_dsp/subtract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/subtract.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/txfm_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/txfm_common.h -------------------------------------------------------------------------------- /vpx/vpx_dsp/variance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/variance.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/variance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/variance.h -------------------------------------------------------------------------------- /vpx/vpx_dsp/vpx_convolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/vpx_convolve.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/vpx_convolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/vpx_convolve.h -------------------------------------------------------------------------------- /vpx/vpx_dsp/vpx_dsp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/vpx_dsp.mk -------------------------------------------------------------------------------- /vpx/vpx_dsp/vpx_dsp_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/vpx_dsp_common.h -------------------------------------------------------------------------------- /vpx/vpx_dsp/vpx_dsp_rtcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/vpx_dsp_rtcd.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/vpx_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/vpx_filter.h -------------------------------------------------------------------------------- /vpx/vpx_dsp/x86/convolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/x86/convolve.h -------------------------------------------------------------------------------- /vpx/vpx_dsp/x86/sad4d_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/x86/sad4d_avx2.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/x86/sad_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/x86/sad_avx2.c -------------------------------------------------------------------------------- /vpx/vpx_dsp/x86/sad_mmx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/x86/sad_mmx.asm -------------------------------------------------------------------------------- /vpx/vpx_dsp/x86/sad_sse2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/x86/sad_sse2.asm -------------------------------------------------------------------------------- /vpx/vpx_dsp/x86/sad_sse3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/x86/sad_sse3.asm -------------------------------------------------------------------------------- /vpx/vpx_dsp/x86/sad_sse4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/x86/sad_sse4.asm -------------------------------------------------------------------------------- /vpx/vpx_dsp/x86/sad_ssse3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp/x86/sad_ssse3.asm -------------------------------------------------------------------------------- /vpx/vpx_dsp_rtcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_dsp_rtcd.h -------------------------------------------------------------------------------- /vpx/vpx_mem/vpx_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_mem/vpx_mem.c -------------------------------------------------------------------------------- /vpx/vpx_mem/vpx_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_mem/vpx_mem.h -------------------------------------------------------------------------------- /vpx/vpx_mem/vpx_mem.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_mem/vpx_mem.mk -------------------------------------------------------------------------------- /vpx/vpx_ports/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_ports/arm.h -------------------------------------------------------------------------------- /vpx/vpx_ports/arm_cpudetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_ports/arm_cpudetect.c -------------------------------------------------------------------------------- /vpx/vpx_ports/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_ports/bitops.h -------------------------------------------------------------------------------- /vpx/vpx_ports/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_ports/config.h -------------------------------------------------------------------------------- /vpx/vpx_ports/emms.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_ports/emms.asm -------------------------------------------------------------------------------- /vpx/vpx_ports/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_ports/mem.h -------------------------------------------------------------------------------- /vpx/vpx_ports/mem_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_ports/mem_ops.h -------------------------------------------------------------------------------- /vpx/vpx_ports/msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_ports/msvc.h -------------------------------------------------------------------------------- /vpx/vpx_ports/system_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_ports/system_state.h -------------------------------------------------------------------------------- /vpx/vpx_ports/vpx_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_ports/vpx_once.h -------------------------------------------------------------------------------- /vpx/vpx_ports/vpx_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_ports/vpx_timer.h -------------------------------------------------------------------------------- /vpx/vpx_ports/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_ports/x86.h -------------------------------------------------------------------------------- /vpx/vpx_scale/vpx_scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_scale/vpx_scale.h -------------------------------------------------------------------------------- /vpx/vpx_scale/vpx_scale.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_scale/vpx_scale.mk -------------------------------------------------------------------------------- /vpx/vpx_scale/yv12config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_scale/yv12config.h -------------------------------------------------------------------------------- /vpx/vpx_scale_rtcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_scale_rtcd.h -------------------------------------------------------------------------------- /vpx/vpx_util/endian_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_util/endian_inl.h -------------------------------------------------------------------------------- /vpx/vpx_util/vpx_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_util/vpx_thread.c -------------------------------------------------------------------------------- /vpx/vpx_util/vpx_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_util/vpx_thread.h -------------------------------------------------------------------------------- /vpx/vpx_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpx_version.h -------------------------------------------------------------------------------- /vpx/vpxdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpxdec.c -------------------------------------------------------------------------------- /vpx/vpxdec.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpxdec.vcxproj -------------------------------------------------------------------------------- /vpx/vpxenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpxenc.c -------------------------------------------------------------------------------- /vpx/vpxenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpxenc.h -------------------------------------------------------------------------------- /vpx/vpxenc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpxenc.vcxproj -------------------------------------------------------------------------------- /vpx/vpxstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpxstats.c -------------------------------------------------------------------------------- /vpx/vpxstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/vpxstats.h -------------------------------------------------------------------------------- /vpx/warnings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/warnings.c -------------------------------------------------------------------------------- /vpx/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/warnings.h -------------------------------------------------------------------------------- /vpx/webmdec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/webmdec.cc -------------------------------------------------------------------------------- /vpx/webmdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/webmdec.h -------------------------------------------------------------------------------- /vpx/webmenc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/webmenc.cc -------------------------------------------------------------------------------- /vpx/webmenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/webmenc.h -------------------------------------------------------------------------------- /vpx/xcconfig/Mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/xcconfig/Mac.xcconfig -------------------------------------------------------------------------------- /vpx/xcconfig/iOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/xcconfig/iOS.xcconfig -------------------------------------------------------------------------------- /vpx/y4menc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/y4menc.c -------------------------------------------------------------------------------- /vpx/y4menc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/y4menc.h -------------------------------------------------------------------------------- /vpx/y4minput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/y4minput.c -------------------------------------------------------------------------------- /vpx/y4minput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/vpx/y4minput.h -------------------------------------------------------------------------------- /wrappers/aprilvideo/android-studio/lib/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /xcconfig/Mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/xcconfig/Mac.xcconfig -------------------------------------------------------------------------------- /xcconfig/iOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/xcconfig/iOS.xcconfig -------------------------------------------------------------------------------- /xcode/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/xcode/icon.icns -------------------------------------------------------------------------------- /xcode/icon_ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/xcode/icon_ipad.png -------------------------------------------------------------------------------- /xcode/icon_ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/xcode/icon_ipad@2x.png -------------------------------------------------------------------------------- /xcode/icon_iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/xcode/icon_iphone.png -------------------------------------------------------------------------------- /xcode/icon_iphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/xcode/icon_iphone@2x.png -------------------------------------------------------------------------------- /xcode/ios_demos.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/xcode/ios_demos.plist -------------------------------------------------------------------------------- /xcode/mac_demos.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AprilAndFriends/theoraplayer/HEAD/xcode/mac_demos.plist -------------------------------------------------------------------------------- /xcode/theoraplayer_workspace.xcodeproj/project.xcworkspace/xcshareddata/_not_empty: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------