├── .gitignore ├── .gitmodules ├── .travis.yml ├── AUTHORS ├── COPYING ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── fetch-tests.sh ├── m4 └── .gitignore ├── man └── Makefile.am ├── scripts ├── fake-camera └── run-contest └── src ├── Makefile.am ├── decoder ├── Makefile.am ├── block.hh ├── bool_decoder.hh ├── config.asm ├── dct.cc ├── dct_sse.hh ├── dct_sse2.asm ├── decoder.cc ├── decoder.hh ├── decoder_state.hh ├── enc_state_serializer.hh ├── frame.cc ├── frame.hh ├── frame_header.hh ├── frame_pool.cc ├── frame_pool.hh ├── fwalsh_sse2.asm ├── idctllm_mmx.asm ├── intrapred_sse.hh ├── intrapred_sse2.asm ├── intrapred_ssse3.asm ├── iwalsh_sse2.asm ├── loopfilter.cc ├── loopfilter.hh ├── loopfilter_block_sse2_x86_64.asm ├── loopfilter_filters.hh ├── loopfilter_sse2.asm ├── macroblock.cc ├── macroblock.hh ├── modemv_data.cc ├── modemv_data.hh ├── player.cc ├── player.hh ├── prediction.cc ├── predictor_sse.hh ├── probability_tables.cc ├── quantization.cc ├── quantization.hh ├── raster_handle.cc ├── raster_handle.hh ├── sad_sse.hh ├── sad_sse2.asm ├── safe_raster.cc ├── scorer.hh ├── subpixel_ssse3.asm ├── subtract_sse2.asm ├── tokens.cc ├── tokens.hh ├── transform.cc ├── transform_sse.hh ├── tree.cc ├── uncompressed_chunk.cc ├── uncompressed_chunk.hh ├── vp8_header_structures.hh ├── vp8_prob_data.cc ├── vp8_prob_data.hh ├── vp8_raster.hh ├── x86_abi_support.asm └── x86inc.asm ├── display ├── Makefile.am ├── display.cc ├── display.hh ├── gl_objects.cc └── gl_objects.hh ├── encoder ├── Makefile.am ├── bool_encoder.hh ├── costs.cc ├── costs.hh ├── encode_inter.cc ├── encode_intra.cc ├── encode_tree.cc ├── encoder.cc ├── encoder.hh ├── reencode.cc ├── safe_references.cc ├── serializer.cc ├── size_estimation.cc ├── variance.cc └── variance_sse2.cc ├── frontend ├── Makefile.am ├── comp-states.cc ├── decode-bundle.cc ├── vp8decode.cc ├── vp8play.cc ├── xc-diff.cc ├── xc-dissect.cc ├── xc-dump.cc ├── xc-enc.cc ├── xc-framesize.cc ├── xc-merge.cc ├── xc-ssim.cc ├── xc-terminate-chunk.cc └── xc-zero-out-residues.cc ├── input ├── Makefile.am ├── camera.cc ├── camera.hh ├── frame_input.hh ├── ivf_reader.cc ├── ivf_reader.hh ├── jpeg.cc ├── jpeg.hh ├── yuv4mpeg.cc └── yuv4mpeg.hh ├── net ├── Makefile.am ├── address.cc ├── address.hh ├── pacer.hh ├── packet.cc ├── packet.hh ├── poller.cc ├── poller.hh ├── socket.cc ├── socket.hh ├── socketpair.cc └── socketpair.hh ├── salsify ├── Makefile.am ├── display-jpeg.cc ├── fake-webcam.cc ├── real-webcam.cc ├── salsify-receiver.cc └── salsify-sender.cc ├── tests ├── Makefile.am ├── decode-to-stdout.cc ├── decoding.test ├── encode-loopback.cc ├── extract-key-frames.cc ├── fetch-encoder-vectors.test ├── fetch-playability-test.test ├── fetch-vectors.test ├── ivfcompare.cc ├── ivfcopy.cc ├── ivfcopy.test ├── playability.test ├── roundtrip-verify.test ├── roundtrip.cc ├── serdes-test.cc ├── serdes.test ├── switch-test └── xc-enc-ssim.test └── util ├── 2d.hh ├── Makefile.am ├── chunk.hh ├── exception.hh ├── file.cc ├── file.hh ├── file_descriptor.hh ├── finally.hh ├── ivf.cc ├── ivf.hh ├── ivf_writer.cc ├── ivf_writer.hh ├── mmap_region.cc ├── mmap_region.hh ├── optional.hh ├── paranoid.cc ├── paranoid.hh ├── procinfo.cc ├── procinfo.hh ├── raster.cc ├── raster.hh ├── safe_array.hh ├── ssim.cc ├── ssim.hh ├── subprocess.cc └── subprocess.hh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec autoreconf -fi 4 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/configure.ac -------------------------------------------------------------------------------- /fetch-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/fetch-tests.sh -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/fake-camera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/scripts/fake-camera -------------------------------------------------------------------------------- /scripts/run-contest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/scripts/run-contest -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/decoder/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/Makefile.am -------------------------------------------------------------------------------- /src/decoder/block.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/block.hh -------------------------------------------------------------------------------- /src/decoder/bool_decoder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/bool_decoder.hh -------------------------------------------------------------------------------- /src/decoder/config.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/config.asm -------------------------------------------------------------------------------- /src/decoder/dct.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/dct.cc -------------------------------------------------------------------------------- /src/decoder/dct_sse.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/dct_sse.hh -------------------------------------------------------------------------------- /src/decoder/dct_sse2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/dct_sse2.asm -------------------------------------------------------------------------------- /src/decoder/decoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/decoder.cc -------------------------------------------------------------------------------- /src/decoder/decoder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/decoder.hh -------------------------------------------------------------------------------- /src/decoder/decoder_state.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/decoder_state.hh -------------------------------------------------------------------------------- /src/decoder/enc_state_serializer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/enc_state_serializer.hh -------------------------------------------------------------------------------- /src/decoder/frame.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/frame.cc -------------------------------------------------------------------------------- /src/decoder/frame.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/frame.hh -------------------------------------------------------------------------------- /src/decoder/frame_header.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/frame_header.hh -------------------------------------------------------------------------------- /src/decoder/frame_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/frame_pool.cc -------------------------------------------------------------------------------- /src/decoder/frame_pool.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/frame_pool.hh -------------------------------------------------------------------------------- /src/decoder/fwalsh_sse2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/fwalsh_sse2.asm -------------------------------------------------------------------------------- /src/decoder/idctllm_mmx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/idctllm_mmx.asm -------------------------------------------------------------------------------- /src/decoder/intrapred_sse.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/intrapred_sse.hh -------------------------------------------------------------------------------- /src/decoder/intrapred_sse2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/intrapred_sse2.asm -------------------------------------------------------------------------------- /src/decoder/intrapred_ssse3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/intrapred_ssse3.asm -------------------------------------------------------------------------------- /src/decoder/iwalsh_sse2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/iwalsh_sse2.asm -------------------------------------------------------------------------------- /src/decoder/loopfilter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/loopfilter.cc -------------------------------------------------------------------------------- /src/decoder/loopfilter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/loopfilter.hh -------------------------------------------------------------------------------- /src/decoder/loopfilter_block_sse2_x86_64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/loopfilter_block_sse2_x86_64.asm -------------------------------------------------------------------------------- /src/decoder/loopfilter_filters.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/loopfilter_filters.hh -------------------------------------------------------------------------------- /src/decoder/loopfilter_sse2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/loopfilter_sse2.asm -------------------------------------------------------------------------------- /src/decoder/macroblock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/macroblock.cc -------------------------------------------------------------------------------- /src/decoder/macroblock.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/macroblock.hh -------------------------------------------------------------------------------- /src/decoder/modemv_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/modemv_data.cc -------------------------------------------------------------------------------- /src/decoder/modemv_data.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/modemv_data.hh -------------------------------------------------------------------------------- /src/decoder/player.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/player.cc -------------------------------------------------------------------------------- /src/decoder/player.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/player.hh -------------------------------------------------------------------------------- /src/decoder/prediction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/prediction.cc -------------------------------------------------------------------------------- /src/decoder/predictor_sse.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/predictor_sse.hh -------------------------------------------------------------------------------- /src/decoder/probability_tables.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/probability_tables.cc -------------------------------------------------------------------------------- /src/decoder/quantization.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/quantization.cc -------------------------------------------------------------------------------- /src/decoder/quantization.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/quantization.hh -------------------------------------------------------------------------------- /src/decoder/raster_handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/raster_handle.cc -------------------------------------------------------------------------------- /src/decoder/raster_handle.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/raster_handle.hh -------------------------------------------------------------------------------- /src/decoder/sad_sse.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/sad_sse.hh -------------------------------------------------------------------------------- /src/decoder/sad_sse2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/sad_sse2.asm -------------------------------------------------------------------------------- /src/decoder/safe_raster.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/safe_raster.cc -------------------------------------------------------------------------------- /src/decoder/scorer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/scorer.hh -------------------------------------------------------------------------------- /src/decoder/subpixel_ssse3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/subpixel_ssse3.asm -------------------------------------------------------------------------------- /src/decoder/subtract_sse2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/subtract_sse2.asm -------------------------------------------------------------------------------- /src/decoder/tokens.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/tokens.cc -------------------------------------------------------------------------------- /src/decoder/tokens.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/tokens.hh -------------------------------------------------------------------------------- /src/decoder/transform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/transform.cc -------------------------------------------------------------------------------- /src/decoder/transform_sse.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/transform_sse.hh -------------------------------------------------------------------------------- /src/decoder/tree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/tree.cc -------------------------------------------------------------------------------- /src/decoder/uncompressed_chunk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/uncompressed_chunk.cc -------------------------------------------------------------------------------- /src/decoder/uncompressed_chunk.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/uncompressed_chunk.hh -------------------------------------------------------------------------------- /src/decoder/vp8_header_structures.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/vp8_header_structures.hh -------------------------------------------------------------------------------- /src/decoder/vp8_prob_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/vp8_prob_data.cc -------------------------------------------------------------------------------- /src/decoder/vp8_prob_data.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/vp8_prob_data.hh -------------------------------------------------------------------------------- /src/decoder/vp8_raster.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/vp8_raster.hh -------------------------------------------------------------------------------- /src/decoder/x86_abi_support.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/x86_abi_support.asm -------------------------------------------------------------------------------- /src/decoder/x86inc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/decoder/x86inc.asm -------------------------------------------------------------------------------- /src/display/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/display/Makefile.am -------------------------------------------------------------------------------- /src/display/display.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/display/display.cc -------------------------------------------------------------------------------- /src/display/display.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/display/display.hh -------------------------------------------------------------------------------- /src/display/gl_objects.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/display/gl_objects.cc -------------------------------------------------------------------------------- /src/display/gl_objects.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/display/gl_objects.hh -------------------------------------------------------------------------------- /src/encoder/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/encoder/Makefile.am -------------------------------------------------------------------------------- /src/encoder/bool_encoder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/encoder/bool_encoder.hh -------------------------------------------------------------------------------- /src/encoder/costs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/encoder/costs.cc -------------------------------------------------------------------------------- /src/encoder/costs.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/encoder/costs.hh -------------------------------------------------------------------------------- /src/encoder/encode_inter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/encoder/encode_inter.cc -------------------------------------------------------------------------------- /src/encoder/encode_intra.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/encoder/encode_intra.cc -------------------------------------------------------------------------------- /src/encoder/encode_tree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/encoder/encode_tree.cc -------------------------------------------------------------------------------- /src/encoder/encoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/encoder/encoder.cc -------------------------------------------------------------------------------- /src/encoder/encoder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/encoder/encoder.hh -------------------------------------------------------------------------------- /src/encoder/reencode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/encoder/reencode.cc -------------------------------------------------------------------------------- /src/encoder/safe_references.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/encoder/safe_references.cc -------------------------------------------------------------------------------- /src/encoder/serializer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/encoder/serializer.cc -------------------------------------------------------------------------------- /src/encoder/size_estimation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/encoder/size_estimation.cc -------------------------------------------------------------------------------- /src/encoder/variance.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/encoder/variance.cc -------------------------------------------------------------------------------- /src/encoder/variance_sse2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/encoder/variance_sse2.cc -------------------------------------------------------------------------------- /src/frontend/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/frontend/Makefile.am -------------------------------------------------------------------------------- /src/frontend/comp-states.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/frontend/comp-states.cc -------------------------------------------------------------------------------- /src/frontend/decode-bundle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/frontend/decode-bundle.cc -------------------------------------------------------------------------------- /src/frontend/vp8decode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/frontend/vp8decode.cc -------------------------------------------------------------------------------- /src/frontend/vp8play.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/frontend/vp8play.cc -------------------------------------------------------------------------------- /src/frontend/xc-diff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/frontend/xc-diff.cc -------------------------------------------------------------------------------- /src/frontend/xc-dissect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/frontend/xc-dissect.cc -------------------------------------------------------------------------------- /src/frontend/xc-dump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/frontend/xc-dump.cc -------------------------------------------------------------------------------- /src/frontend/xc-enc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/frontend/xc-enc.cc -------------------------------------------------------------------------------- /src/frontend/xc-framesize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/frontend/xc-framesize.cc -------------------------------------------------------------------------------- /src/frontend/xc-merge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/frontend/xc-merge.cc -------------------------------------------------------------------------------- /src/frontend/xc-ssim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/frontend/xc-ssim.cc -------------------------------------------------------------------------------- /src/frontend/xc-terminate-chunk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/frontend/xc-terminate-chunk.cc -------------------------------------------------------------------------------- /src/frontend/xc-zero-out-residues.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/frontend/xc-zero-out-residues.cc -------------------------------------------------------------------------------- /src/input/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/input/Makefile.am -------------------------------------------------------------------------------- /src/input/camera.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/input/camera.cc -------------------------------------------------------------------------------- /src/input/camera.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/input/camera.hh -------------------------------------------------------------------------------- /src/input/frame_input.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/input/frame_input.hh -------------------------------------------------------------------------------- /src/input/ivf_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/input/ivf_reader.cc -------------------------------------------------------------------------------- /src/input/ivf_reader.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/input/ivf_reader.hh -------------------------------------------------------------------------------- /src/input/jpeg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/input/jpeg.cc -------------------------------------------------------------------------------- /src/input/jpeg.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/input/jpeg.hh -------------------------------------------------------------------------------- /src/input/yuv4mpeg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/input/yuv4mpeg.cc -------------------------------------------------------------------------------- /src/input/yuv4mpeg.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/input/yuv4mpeg.hh -------------------------------------------------------------------------------- /src/net/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/net/Makefile.am -------------------------------------------------------------------------------- /src/net/address.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/net/address.cc -------------------------------------------------------------------------------- /src/net/address.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/net/address.hh -------------------------------------------------------------------------------- /src/net/pacer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/net/pacer.hh -------------------------------------------------------------------------------- /src/net/packet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/net/packet.cc -------------------------------------------------------------------------------- /src/net/packet.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/net/packet.hh -------------------------------------------------------------------------------- /src/net/poller.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/net/poller.cc -------------------------------------------------------------------------------- /src/net/poller.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/net/poller.hh -------------------------------------------------------------------------------- /src/net/socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/net/socket.cc -------------------------------------------------------------------------------- /src/net/socket.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/net/socket.hh -------------------------------------------------------------------------------- /src/net/socketpair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/net/socketpair.cc -------------------------------------------------------------------------------- /src/net/socketpair.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/net/socketpair.hh -------------------------------------------------------------------------------- /src/salsify/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/salsify/Makefile.am -------------------------------------------------------------------------------- /src/salsify/display-jpeg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/salsify/display-jpeg.cc -------------------------------------------------------------------------------- /src/salsify/fake-webcam.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/salsify/fake-webcam.cc -------------------------------------------------------------------------------- /src/salsify/real-webcam.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/salsify/real-webcam.cc -------------------------------------------------------------------------------- /src/salsify/salsify-receiver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/salsify/salsify-receiver.cc -------------------------------------------------------------------------------- /src/salsify/salsify-sender.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/salsify/salsify-sender.cc -------------------------------------------------------------------------------- /src/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/Makefile.am -------------------------------------------------------------------------------- /src/tests/decode-to-stdout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/decode-to-stdout.cc -------------------------------------------------------------------------------- /src/tests/decoding.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/decoding.test -------------------------------------------------------------------------------- /src/tests/encode-loopback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/encode-loopback.cc -------------------------------------------------------------------------------- /src/tests/extract-key-frames.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/extract-key-frames.cc -------------------------------------------------------------------------------- /src/tests/fetch-encoder-vectors.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/fetch-encoder-vectors.test -------------------------------------------------------------------------------- /src/tests/fetch-playability-test.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/fetch-playability-test.test -------------------------------------------------------------------------------- /src/tests/fetch-vectors.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/fetch-vectors.test -------------------------------------------------------------------------------- /src/tests/ivfcompare.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/ivfcompare.cc -------------------------------------------------------------------------------- /src/tests/ivfcopy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/ivfcopy.cc -------------------------------------------------------------------------------- /src/tests/ivfcopy.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/ivfcopy.test -------------------------------------------------------------------------------- /src/tests/playability.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/playability.test -------------------------------------------------------------------------------- /src/tests/roundtrip-verify.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/roundtrip-verify.test -------------------------------------------------------------------------------- /src/tests/roundtrip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/roundtrip.cc -------------------------------------------------------------------------------- /src/tests/serdes-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/serdes-test.cc -------------------------------------------------------------------------------- /src/tests/serdes.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/serdes.test -------------------------------------------------------------------------------- /src/tests/switch-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/switch-test -------------------------------------------------------------------------------- /src/tests/xc-enc-ssim.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/tests/xc-enc-ssim.test -------------------------------------------------------------------------------- /src/util/2d.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/2d.hh -------------------------------------------------------------------------------- /src/util/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/Makefile.am -------------------------------------------------------------------------------- /src/util/chunk.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/chunk.hh -------------------------------------------------------------------------------- /src/util/exception.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/exception.hh -------------------------------------------------------------------------------- /src/util/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/file.cc -------------------------------------------------------------------------------- /src/util/file.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/file.hh -------------------------------------------------------------------------------- /src/util/file_descriptor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/file_descriptor.hh -------------------------------------------------------------------------------- /src/util/finally.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/finally.hh -------------------------------------------------------------------------------- /src/util/ivf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/ivf.cc -------------------------------------------------------------------------------- /src/util/ivf.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/ivf.hh -------------------------------------------------------------------------------- /src/util/ivf_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/ivf_writer.cc -------------------------------------------------------------------------------- /src/util/ivf_writer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/ivf_writer.hh -------------------------------------------------------------------------------- /src/util/mmap_region.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/mmap_region.cc -------------------------------------------------------------------------------- /src/util/mmap_region.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/mmap_region.hh -------------------------------------------------------------------------------- /src/util/optional.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/optional.hh -------------------------------------------------------------------------------- /src/util/paranoid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/paranoid.cc -------------------------------------------------------------------------------- /src/util/paranoid.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/paranoid.hh -------------------------------------------------------------------------------- /src/util/procinfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/procinfo.cc -------------------------------------------------------------------------------- /src/util/procinfo.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/procinfo.hh -------------------------------------------------------------------------------- /src/util/raster.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/raster.cc -------------------------------------------------------------------------------- /src/util/raster.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/raster.hh -------------------------------------------------------------------------------- /src/util/safe_array.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/safe_array.hh -------------------------------------------------------------------------------- /src/util/ssim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/ssim.cc -------------------------------------------------------------------------------- /src/util/ssim.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/ssim.hh -------------------------------------------------------------------------------- /src/util/subprocess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/subprocess.cc -------------------------------------------------------------------------------- /src/util/subprocess.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excamera/alfalfa/HEAD/src/util/subprocess.hh --------------------------------------------------------------------------------