├── .github └── workflows │ └── autotools.yml ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── AUTHORS ├── CHANGES ├── COPYING ├── LICENSE ├── Makefile.am ├── README.md ├── SConstruct ├── autogen.sh ├── configure.ac ├── doc ├── Doxyfile.in ├── Makefile.am ├── color.html ├── draft-ietf-avt-rtp-theora-00.txt ├── draft-ietf-avt-rtp-theora-00.xml ├── draft-kerr-avt-theora-rtp-00.txt ├── draft-kerr-avt-theora-rtp-00.xml ├── spec │ ├── Makefile.am │ ├── fdct.fig │ ├── hilbert-block.fig │ ├── hilbert-mb.fig │ ├── idct.fig │ ├── lflim.fig │ ├── ltablex.sty │ ├── macroblock.fig │ ├── pic-frame.fig │ ├── pic_even.fig │ ├── pic_even_odd.fig │ ├── pic_odd.fig │ ├── pic_odd_even.fig │ ├── pixel420.fig │ ├── pixel422.fig │ ├── pixel444.fig │ ├── raster-block.fig │ ├── reference-frames.fig │ ├── spec.bib │ ├── spec.tex │ ├── superblock.fig │ ├── vp3huff.c │ └── xifish.fig └── vp3-format.txt ├── examples ├── Makefile.am ├── README_SPLAYER ├── dump_psnr.c ├── dump_video.c ├── encoder_example.c ├── encoder_example_ffmpeg ├── getopt.c ├── getopt.h ├── getopt1.c ├── libtheora_info.c ├── player_example.c ├── png2theora.c ├── splayer.c └── tiff2theora.c ├── include ├── Makefile.am └── theora │ ├── Makefile.am │ ├── codec.h │ ├── theora.h │ ├── theoradec.h │ └── theoraenc.h ├── lib ├── Makefile.am ├── Version_script ├── Version_script-dec ├── Version_script-enc ├── analyze.c ├── apiwrapper.c ├── apiwrapper.h ├── arm │ ├── arm2gnu.pl │ ├── armbits.h │ ├── armbits.s │ ├── armcpu.c │ ├── armcpu.h │ ├── armenc.c │ ├── armenc.h │ ├── armencfrag.s │ ├── armenquant.s │ ├── armfrag.s │ ├── armidct.s │ ├── armint.h │ ├── armloop.s │ ├── armopts.s.in │ └── 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 ├── libtheora.spec.in ├── m4 ├── Makefile.am ├── as-ac-expand.m4 ├── as-gcc-inline-assembly.m4 ├── ogg.m4 ├── pkg.m4 └── vorbis.m4 ├── macosx ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── Theora.xcodeproj │ └── project.pbxproj └── Theora_Prefix.pch ├── symbian ├── bld.inf ├── config.h └── theora.mmp ├── tests ├── Makefile.am ├── comment.c ├── comment_theora.c ├── granulepos.c ├── granulepos_theora.c ├── noop.c ├── noop_theora.c └── tests.h ├── theora-uninstalled.pc.in ├── theora.pc.in ├── theoradec-uninstalled.pc.in ├── theoradec.pc.in ├── theoraenc-uninstalled.pc.in ├── theoraenc.pc.in ├── tools └── process_modedec_stats.c └── win32 ├── VS2005 ├── README ├── dump_video │ ├── dump_video_dynamic.vcproj │ └── dump_video_static.vcproj ├── encoder_example │ ├── encoder_example_dynamic.vcproj │ └── encoder_example_static.vcproj ├── libogg.vsprops ├── libtheora │ ├── libtheora_dynamic.vcproj │ └── libtheora_static.vcproj ├── libtheora_dynamic.sln ├── libtheora_static.sln └── libvorbis.vsprops ├── VS2008 ├── README ├── dump_video │ ├── dump_video_dynamic.vcproj │ └── dump_video_static.vcproj ├── encoder_example │ ├── encoder_example_dynamic.vcproj │ └── encoder_example_static.vcproj ├── libogg.vsprops ├── libtheora │ ├── libtheora_dynamic.vcproj │ └── libtheora_static.vcproj ├── libtheora_dynamic.sln ├── libtheora_static.sln └── libvorbis.vsprops ├── VS2010 ├── README ├── dump_video │ ├── dump_video_dynamic.vcxproj │ └── dump_video_static.vcxproj ├── encoder_example │ ├── encoder_example_dynamic.vcxproj │ └── encoder_example_static.vcxproj ├── libogg.props ├── libtheora │ ├── libtheora_dynamic.vcxproj │ └── libtheora_static.vcxproj ├── libtheora_dynamic.sln ├── libtheora_static.sln └── libvorbis.props ├── build_theora_static.bat ├── build_theora_static_debug.bat ├── experimental ├── dumpvid │ └── dumpvid.dsp ├── encoderwin │ ├── ReadMe.txt │ └── encoderwin.dsp ├── transcoder │ ├── avi2vp3 │ │ ├── avi2vp3.c │ │ ├── avilib.c │ │ ├── avilib.h │ │ ├── outfile.vp3 │ │ └── vp31.avi │ ├── readme.txt │ ├── transcoder.dsp │ └── transcoder_example.c └── wincompat │ ├── README.txt │ ├── getopt.c │ ├── getopt.h │ ├── getopt_long.c │ └── unistd.h ├── getopt.c ├── getopt1.c ├── getopt_win.h ├── theora_static.dsp └── xmingw32 ├── Makefile ├── libtheoradec-all.def ├── libtheoradec-all.rc ├── libtheoradec.rc ├── libtheoradec70.rc ├── libtheoradec70d.rc ├── libtheoradec71.rc ├── libtheoradec71d.rc ├── libtheoradec80.rc ├── libtheoradec80d.rc ├── libtheoradecd.rc ├── libtheoraenc-all.def ├── libtheoraenc-all.rc ├── libtheoraenc.rc ├── libtheoraenc70.rc ├── libtheoraenc70d.rc ├── libtheoraenc71.rc ├── libtheoraenc71d.rc ├── libtheoraenc80.rc ├── libtheoraenc80d.rc └── libtheoraencd.rc /.github/workflows/autotools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/.github/workflows/autotools.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/CHANGES -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/README.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/SConstruct -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/color.html -------------------------------------------------------------------------------- /doc/draft-ietf-avt-rtp-theora-00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/draft-ietf-avt-rtp-theora-00.txt -------------------------------------------------------------------------------- /doc/draft-ietf-avt-rtp-theora-00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/draft-ietf-avt-rtp-theora-00.xml -------------------------------------------------------------------------------- /doc/draft-kerr-avt-theora-rtp-00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/draft-kerr-avt-theora-rtp-00.txt -------------------------------------------------------------------------------- /doc/draft-kerr-avt-theora-rtp-00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/draft-kerr-avt-theora-rtp-00.xml -------------------------------------------------------------------------------- /doc/spec/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/Makefile.am -------------------------------------------------------------------------------- /doc/spec/fdct.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/fdct.fig -------------------------------------------------------------------------------- /doc/spec/hilbert-block.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/hilbert-block.fig -------------------------------------------------------------------------------- /doc/spec/hilbert-mb.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/hilbert-mb.fig -------------------------------------------------------------------------------- /doc/spec/idct.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/idct.fig -------------------------------------------------------------------------------- /doc/spec/lflim.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/lflim.fig -------------------------------------------------------------------------------- /doc/spec/ltablex.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/ltablex.sty -------------------------------------------------------------------------------- /doc/spec/macroblock.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/macroblock.fig -------------------------------------------------------------------------------- /doc/spec/pic-frame.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/pic-frame.fig -------------------------------------------------------------------------------- /doc/spec/pic_even.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/pic_even.fig -------------------------------------------------------------------------------- /doc/spec/pic_even_odd.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/pic_even_odd.fig -------------------------------------------------------------------------------- /doc/spec/pic_odd.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/pic_odd.fig -------------------------------------------------------------------------------- /doc/spec/pic_odd_even.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/pic_odd_even.fig -------------------------------------------------------------------------------- /doc/spec/pixel420.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/pixel420.fig -------------------------------------------------------------------------------- /doc/spec/pixel422.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/pixel422.fig -------------------------------------------------------------------------------- /doc/spec/pixel444.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/pixel444.fig -------------------------------------------------------------------------------- /doc/spec/raster-block.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/raster-block.fig -------------------------------------------------------------------------------- /doc/spec/reference-frames.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/reference-frames.fig -------------------------------------------------------------------------------- /doc/spec/spec.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/spec.bib -------------------------------------------------------------------------------- /doc/spec/spec.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/spec.tex -------------------------------------------------------------------------------- /doc/spec/superblock.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/superblock.fig -------------------------------------------------------------------------------- /doc/spec/vp3huff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/vp3huff.c -------------------------------------------------------------------------------- /doc/spec/xifish.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/spec/xifish.fig -------------------------------------------------------------------------------- /doc/vp3-format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/doc/vp3-format.txt -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/README_SPLAYER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/examples/README_SPLAYER -------------------------------------------------------------------------------- /examples/dump_psnr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/examples/dump_psnr.c -------------------------------------------------------------------------------- /examples/dump_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/examples/dump_video.c -------------------------------------------------------------------------------- /examples/encoder_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/examples/encoder_example.c -------------------------------------------------------------------------------- /examples/encoder_example_ffmpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/examples/encoder_example_ffmpeg -------------------------------------------------------------------------------- /examples/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/examples/getopt.c -------------------------------------------------------------------------------- /examples/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/examples/getopt.h -------------------------------------------------------------------------------- /examples/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/examples/getopt1.c -------------------------------------------------------------------------------- /examples/libtheora_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/examples/libtheora_info.c -------------------------------------------------------------------------------- /examples/player_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/examples/player_example.c -------------------------------------------------------------------------------- /examples/png2theora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/examples/png2theora.c -------------------------------------------------------------------------------- /examples/splayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/examples/splayer.c -------------------------------------------------------------------------------- /examples/tiff2theora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/examples/tiff2theora.c -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/theora/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/include/theora/Makefile.am -------------------------------------------------------------------------------- /include/theora/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/include/theora/codec.h -------------------------------------------------------------------------------- /include/theora/theora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/include/theora/theora.h -------------------------------------------------------------------------------- /include/theora/theoradec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/include/theora/theoradec.h -------------------------------------------------------------------------------- /include/theora/theoraenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/include/theora/theoraenc.h -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/Version_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/Version_script -------------------------------------------------------------------------------- /lib/Version_script-dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/Version_script-dec -------------------------------------------------------------------------------- /lib/Version_script-enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/Version_script-enc -------------------------------------------------------------------------------- /lib/analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/analyze.c -------------------------------------------------------------------------------- /lib/apiwrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/apiwrapper.c -------------------------------------------------------------------------------- /lib/apiwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/apiwrapper.h -------------------------------------------------------------------------------- /lib/arm/arm2gnu.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/arm/arm2gnu.pl -------------------------------------------------------------------------------- /lib/arm/armbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/arm/armbits.h -------------------------------------------------------------------------------- /lib/arm/armbits.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/arm/armbits.s -------------------------------------------------------------------------------- /lib/arm/armcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/arm/armcpu.c -------------------------------------------------------------------------------- /lib/arm/armcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/arm/armcpu.h -------------------------------------------------------------------------------- /lib/arm/armenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/arm/armenc.c -------------------------------------------------------------------------------- /lib/arm/armenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/arm/armenc.h -------------------------------------------------------------------------------- /lib/arm/armencfrag.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/arm/armencfrag.s -------------------------------------------------------------------------------- /lib/arm/armenquant.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/arm/armenquant.s -------------------------------------------------------------------------------- /lib/arm/armfrag.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/arm/armfrag.s -------------------------------------------------------------------------------- /lib/arm/armidct.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/arm/armidct.s -------------------------------------------------------------------------------- /lib/arm/armint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/arm/armint.h -------------------------------------------------------------------------------- /lib/arm/armloop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/arm/armloop.s -------------------------------------------------------------------------------- /lib/arm/armopts.s.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/arm/armopts.s.in -------------------------------------------------------------------------------- /lib/arm/armstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/arm/armstate.c -------------------------------------------------------------------------------- /lib/bitpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/bitpack.c -------------------------------------------------------------------------------- /lib/bitpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/bitpack.h -------------------------------------------------------------------------------- /lib/c64x/c64xdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/c64x/c64xdec.c -------------------------------------------------------------------------------- /lib/c64x/c64xdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/c64x/c64xdec.h -------------------------------------------------------------------------------- /lib/c64x/c64xfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/c64x/c64xfrag.c -------------------------------------------------------------------------------- /lib/c64x/c64xidct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/c64x/c64xidct.c -------------------------------------------------------------------------------- /lib/c64x/c64xint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/c64x/c64xint.h -------------------------------------------------------------------------------- /lib/c64x/c64xstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/c64x/c64xstate.c -------------------------------------------------------------------------------- /lib/collect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/collect.c -------------------------------------------------------------------------------- /lib/collect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/collect.h -------------------------------------------------------------------------------- /lib/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/dct.h -------------------------------------------------------------------------------- /lib/decapiwrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/decapiwrapper.c -------------------------------------------------------------------------------- /lib/decinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/decinfo.c -------------------------------------------------------------------------------- /lib/decint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/decint.h -------------------------------------------------------------------------------- /lib/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/decode.c -------------------------------------------------------------------------------- /lib/defexp.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/defexp.awk -------------------------------------------------------------------------------- /lib/dequant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/dequant.c -------------------------------------------------------------------------------- /lib/dequant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/dequant.h -------------------------------------------------------------------------------- /lib/encapiwrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/encapiwrapper.c -------------------------------------------------------------------------------- /lib/encfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/encfrag.c -------------------------------------------------------------------------------- /lib/encinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/encinfo.c -------------------------------------------------------------------------------- /lib/encint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/encint.h -------------------------------------------------------------------------------- /lib/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/encode.c -------------------------------------------------------------------------------- /lib/encoder_disabled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/encoder_disabled.c -------------------------------------------------------------------------------- /lib/enquant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/enquant.c -------------------------------------------------------------------------------- /lib/enquant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/enquant.h -------------------------------------------------------------------------------- /lib/fdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/fdct.c -------------------------------------------------------------------------------- /lib/fragment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/fragment.c -------------------------------------------------------------------------------- /lib/huffdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/huffdec.c -------------------------------------------------------------------------------- /lib/huffdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/huffdec.h -------------------------------------------------------------------------------- /lib/huffenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/huffenc.c -------------------------------------------------------------------------------- /lib/huffenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/huffenc.h -------------------------------------------------------------------------------- /lib/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/huffman.h -------------------------------------------------------------------------------- /lib/idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/idct.c -------------------------------------------------------------------------------- /lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/info.c -------------------------------------------------------------------------------- /lib/internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/internal.c -------------------------------------------------------------------------------- /lib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/internal.h -------------------------------------------------------------------------------- /lib/mathops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/mathops.c -------------------------------------------------------------------------------- /lib/mathops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/mathops.h -------------------------------------------------------------------------------- /lib/mcenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/mcenc.c -------------------------------------------------------------------------------- /lib/modedec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/modedec.h -------------------------------------------------------------------------------- /lib/ocintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/ocintrin.h -------------------------------------------------------------------------------- /lib/quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/quant.c -------------------------------------------------------------------------------- /lib/quant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/quant.h -------------------------------------------------------------------------------- /lib/rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/rate.c -------------------------------------------------------------------------------- /lib/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/state.c -------------------------------------------------------------------------------- /lib/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/state.h -------------------------------------------------------------------------------- /lib/theora.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/theora.def -------------------------------------------------------------------------------- /lib/theora.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/theora.exp -------------------------------------------------------------------------------- /lib/theoradec.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/theoradec.exp -------------------------------------------------------------------------------- /lib/theoraenc.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/theoraenc.exp -------------------------------------------------------------------------------- /lib/tokenize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/tokenize.c -------------------------------------------------------------------------------- /lib/x86/mmxencfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/mmxencfrag.c -------------------------------------------------------------------------------- /lib/x86/mmxfdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/mmxfdct.c -------------------------------------------------------------------------------- /lib/x86/mmxfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/mmxfrag.c -------------------------------------------------------------------------------- /lib/x86/mmxidct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/mmxidct.c -------------------------------------------------------------------------------- /lib/x86/mmxloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/mmxloop.h -------------------------------------------------------------------------------- /lib/x86/mmxstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/mmxstate.c -------------------------------------------------------------------------------- /lib/x86/sse2encfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/sse2encfrag.c -------------------------------------------------------------------------------- /lib/x86/sse2fdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/sse2fdct.c -------------------------------------------------------------------------------- /lib/x86/sse2idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/sse2idct.c -------------------------------------------------------------------------------- /lib/x86/sse2trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/sse2trans.h -------------------------------------------------------------------------------- /lib/x86/x86cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/x86cpu.c -------------------------------------------------------------------------------- /lib/x86/x86cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/x86cpu.h -------------------------------------------------------------------------------- /lib/x86/x86enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/x86enc.c -------------------------------------------------------------------------------- /lib/x86/x86enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/x86enc.h -------------------------------------------------------------------------------- /lib/x86/x86enquant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/x86enquant.c -------------------------------------------------------------------------------- /lib/x86/x86int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/x86int.h -------------------------------------------------------------------------------- /lib/x86/x86state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/x86state.c -------------------------------------------------------------------------------- /lib/x86/x86zigzag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86/x86zigzag.h -------------------------------------------------------------------------------- /lib/x86_vc/mmxencfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86_vc/mmxencfrag.c -------------------------------------------------------------------------------- /lib/x86_vc/mmxfdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86_vc/mmxfdct.c -------------------------------------------------------------------------------- /lib/x86_vc/mmxfrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86_vc/mmxfrag.c -------------------------------------------------------------------------------- /lib/x86_vc/mmxidct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86_vc/mmxidct.c -------------------------------------------------------------------------------- /lib/x86_vc/mmxloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86_vc/mmxloop.h -------------------------------------------------------------------------------- /lib/x86_vc/mmxstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86_vc/mmxstate.c -------------------------------------------------------------------------------- /lib/x86_vc/x86cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86_vc/x86cpu.c -------------------------------------------------------------------------------- /lib/x86_vc/x86cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86_vc/x86cpu.h -------------------------------------------------------------------------------- /lib/x86_vc/x86enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86_vc/x86enc.c -------------------------------------------------------------------------------- /lib/x86_vc/x86enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86_vc/x86enc.h -------------------------------------------------------------------------------- /lib/x86_vc/x86int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86_vc/x86int.h -------------------------------------------------------------------------------- /lib/x86_vc/x86state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86_vc/x86state.c -------------------------------------------------------------------------------- /lib/x86_vc/x86zigzag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/lib/x86_vc/x86zigzag.h -------------------------------------------------------------------------------- /libtheora.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/libtheora.spec.in -------------------------------------------------------------------------------- /m4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/m4/Makefile.am -------------------------------------------------------------------------------- /m4/as-ac-expand.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/m4/as-ac-expand.m4 -------------------------------------------------------------------------------- /m4/as-gcc-inline-assembly.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/m4/as-gcc-inline-assembly.m4 -------------------------------------------------------------------------------- /m4/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/m4/ogg.m4 -------------------------------------------------------------------------------- /m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/m4/pkg.m4 -------------------------------------------------------------------------------- /m4/vorbis.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/m4/vorbis.m4 -------------------------------------------------------------------------------- /macosx/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/macosx/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/macosx/Info.plist -------------------------------------------------------------------------------- /macosx/Theora.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/macosx/Theora.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macosx/Theora_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/macosx/Theora_Prefix.pch -------------------------------------------------------------------------------- /symbian/bld.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/symbian/bld.inf -------------------------------------------------------------------------------- /symbian/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/symbian/config.h -------------------------------------------------------------------------------- /symbian/theora.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/symbian/theora.mmp -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/tests/comment.c -------------------------------------------------------------------------------- /tests/comment_theora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/tests/comment_theora.c -------------------------------------------------------------------------------- /tests/granulepos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/tests/granulepos.c -------------------------------------------------------------------------------- /tests/granulepos_theora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/tests/granulepos_theora.c -------------------------------------------------------------------------------- /tests/noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/tests/noop.c -------------------------------------------------------------------------------- /tests/noop_theora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/tests/noop_theora.c -------------------------------------------------------------------------------- /tests/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/tests/tests.h -------------------------------------------------------------------------------- /theora-uninstalled.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/theora-uninstalled.pc.in -------------------------------------------------------------------------------- /theora.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/theora.pc.in -------------------------------------------------------------------------------- /theoradec-uninstalled.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/theoradec-uninstalled.pc.in -------------------------------------------------------------------------------- /theoradec.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/theoradec.pc.in -------------------------------------------------------------------------------- /theoraenc-uninstalled.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/theoraenc-uninstalled.pc.in -------------------------------------------------------------------------------- /theoraenc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/theoraenc.pc.in -------------------------------------------------------------------------------- /tools/process_modedec_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/tools/process_modedec_stats.c -------------------------------------------------------------------------------- /win32/VS2005/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2005/README -------------------------------------------------------------------------------- /win32/VS2005/dump_video/dump_video_dynamic.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2005/dump_video/dump_video_dynamic.vcproj -------------------------------------------------------------------------------- /win32/VS2005/dump_video/dump_video_static.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2005/dump_video/dump_video_static.vcproj -------------------------------------------------------------------------------- /win32/VS2005/encoder_example/encoder_example_dynamic.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2005/encoder_example/encoder_example_dynamic.vcproj -------------------------------------------------------------------------------- /win32/VS2005/encoder_example/encoder_example_static.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2005/encoder_example/encoder_example_static.vcproj -------------------------------------------------------------------------------- /win32/VS2005/libogg.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2005/libogg.vsprops -------------------------------------------------------------------------------- /win32/VS2005/libtheora/libtheora_dynamic.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2005/libtheora/libtheora_dynamic.vcproj -------------------------------------------------------------------------------- /win32/VS2005/libtheora/libtheora_static.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2005/libtheora/libtheora_static.vcproj -------------------------------------------------------------------------------- /win32/VS2005/libtheora_dynamic.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2005/libtheora_dynamic.sln -------------------------------------------------------------------------------- /win32/VS2005/libtheora_static.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2005/libtheora_static.sln -------------------------------------------------------------------------------- /win32/VS2005/libvorbis.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2005/libvorbis.vsprops -------------------------------------------------------------------------------- /win32/VS2008/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2008/README -------------------------------------------------------------------------------- /win32/VS2008/dump_video/dump_video_dynamic.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2008/dump_video/dump_video_dynamic.vcproj -------------------------------------------------------------------------------- /win32/VS2008/dump_video/dump_video_static.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2008/dump_video/dump_video_static.vcproj -------------------------------------------------------------------------------- /win32/VS2008/encoder_example/encoder_example_dynamic.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2008/encoder_example/encoder_example_dynamic.vcproj -------------------------------------------------------------------------------- /win32/VS2008/encoder_example/encoder_example_static.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2008/encoder_example/encoder_example_static.vcproj -------------------------------------------------------------------------------- /win32/VS2008/libogg.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2008/libogg.vsprops -------------------------------------------------------------------------------- /win32/VS2008/libtheora/libtheora_dynamic.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2008/libtheora/libtheora_dynamic.vcproj -------------------------------------------------------------------------------- /win32/VS2008/libtheora/libtheora_static.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2008/libtheora/libtheora_static.vcproj -------------------------------------------------------------------------------- /win32/VS2008/libtheora_dynamic.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2008/libtheora_dynamic.sln -------------------------------------------------------------------------------- /win32/VS2008/libtheora_static.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2008/libtheora_static.sln -------------------------------------------------------------------------------- /win32/VS2008/libvorbis.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2008/libvorbis.vsprops -------------------------------------------------------------------------------- /win32/VS2010/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2010/README -------------------------------------------------------------------------------- /win32/VS2010/dump_video/dump_video_dynamic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2010/dump_video/dump_video_dynamic.vcxproj -------------------------------------------------------------------------------- /win32/VS2010/dump_video/dump_video_static.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2010/dump_video/dump_video_static.vcxproj -------------------------------------------------------------------------------- /win32/VS2010/encoder_example/encoder_example_dynamic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2010/encoder_example/encoder_example_dynamic.vcxproj -------------------------------------------------------------------------------- /win32/VS2010/encoder_example/encoder_example_static.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2010/encoder_example/encoder_example_static.vcxproj -------------------------------------------------------------------------------- /win32/VS2010/libogg.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2010/libogg.props -------------------------------------------------------------------------------- /win32/VS2010/libtheora/libtheora_dynamic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2010/libtheora/libtheora_dynamic.vcxproj -------------------------------------------------------------------------------- /win32/VS2010/libtheora/libtheora_static.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2010/libtheora/libtheora_static.vcxproj -------------------------------------------------------------------------------- /win32/VS2010/libtheora_dynamic.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2010/libtheora_dynamic.sln -------------------------------------------------------------------------------- /win32/VS2010/libtheora_static.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2010/libtheora_static.sln -------------------------------------------------------------------------------- /win32/VS2010/libvorbis.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/VS2010/libvorbis.props -------------------------------------------------------------------------------- /win32/build_theora_static.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/build_theora_static.bat -------------------------------------------------------------------------------- /win32/build_theora_static_debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/build_theora_static_debug.bat -------------------------------------------------------------------------------- /win32/experimental/dumpvid/dumpvid.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/experimental/dumpvid/dumpvid.dsp -------------------------------------------------------------------------------- /win32/experimental/encoderwin/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/experimental/encoderwin/ReadMe.txt -------------------------------------------------------------------------------- /win32/experimental/encoderwin/encoderwin.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/experimental/encoderwin/encoderwin.dsp -------------------------------------------------------------------------------- /win32/experimental/transcoder/avi2vp3/avi2vp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/experimental/transcoder/avi2vp3/avi2vp3.c -------------------------------------------------------------------------------- /win32/experimental/transcoder/avi2vp3/avilib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/experimental/transcoder/avi2vp3/avilib.c -------------------------------------------------------------------------------- /win32/experimental/transcoder/avi2vp3/avilib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/experimental/transcoder/avi2vp3/avilib.h -------------------------------------------------------------------------------- /win32/experimental/transcoder/avi2vp3/outfile.vp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/experimental/transcoder/avi2vp3/outfile.vp3 -------------------------------------------------------------------------------- /win32/experimental/transcoder/avi2vp3/vp31.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/experimental/transcoder/avi2vp3/vp31.avi -------------------------------------------------------------------------------- /win32/experimental/transcoder/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/experimental/transcoder/readme.txt -------------------------------------------------------------------------------- /win32/experimental/transcoder/transcoder.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/experimental/transcoder/transcoder.dsp -------------------------------------------------------------------------------- /win32/experimental/transcoder/transcoder_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/experimental/transcoder/transcoder_example.c -------------------------------------------------------------------------------- /win32/experimental/wincompat/README.txt: -------------------------------------------------------------------------------- 1 | GetOpt routines ported from BSD-licensed sources, see comments. -------------------------------------------------------------------------------- /win32/experimental/wincompat/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/experimental/wincompat/getopt.c -------------------------------------------------------------------------------- /win32/experimental/wincompat/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/experimental/wincompat/getopt.h -------------------------------------------------------------------------------- /win32/experimental/wincompat/getopt_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/experimental/wincompat/getopt_long.c -------------------------------------------------------------------------------- /win32/experimental/wincompat/unistd.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /win32/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/getopt.c -------------------------------------------------------------------------------- /win32/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/getopt1.c -------------------------------------------------------------------------------- /win32/getopt_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/getopt_win.h -------------------------------------------------------------------------------- /win32/theora_static.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/theora_static.dsp -------------------------------------------------------------------------------- /win32/xmingw32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/Makefile -------------------------------------------------------------------------------- /win32/xmingw32/libtheoradec-all.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoradec-all.def -------------------------------------------------------------------------------- /win32/xmingw32/libtheoradec-all.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoradec-all.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoradec.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoradec.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoradec70.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoradec70.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoradec70d.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoradec70d.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoradec71.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoradec71.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoradec71d.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoradec71d.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoradec80.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoradec80.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoradec80d.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoradec80d.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoradecd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoradecd.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoraenc-all.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoraenc-all.def -------------------------------------------------------------------------------- /win32/xmingw32/libtheoraenc-all.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoraenc-all.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoraenc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoraenc.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoraenc70.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoraenc70.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoraenc70d.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoraenc70d.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoraenc71.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoraenc71.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoraenc71d.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoraenc71d.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoraenc80.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoraenc80.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoraenc80d.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoraenc80d.rc -------------------------------------------------------------------------------- /win32/xmingw32/libtheoraencd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiph/theora/HEAD/win32/xmingw32/libtheoraencd.rc --------------------------------------------------------------------------------