Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Issue 11555023: libvpx: Add VP9 decoder. (Closed)

Created:
8 years ago by fgalligan1
Modified:
7 years, 12 months ago
CC:
chromium-reviews
Visibility:
Public.

Description

libvpx: Add VP9 decoder. This CL also makes changes to generated files to make the process more automatic. You should not need to build on the specific platform anymore to make changes to vpx_config.h, vpx_config.c, and vpx_config.asm as generate_gypi.sh will generate these files for all platforms. See README.chromium for the steps to update libvpx. The changes that are most interesting are in generate_gypi.sh and libvpx.gyp. Most of the other changes deal with the libvpx roll to vp9-preview. - Add VP9 decoder (VP9 encoder is turned off). - Turned off CPU detect for arm and arm-neon. - Have StdInt is turned off for windows because target is vs9. But we are not currently using this flag so we should be OK. - Generate vpx_config.h, vpx_config.c, and vpx_config.asm for all platforms. - Generate vpx_version.h. - Removed vpx_rtcd.h from all platforms. - Added vp8_rtcd.h, vp9_rtcd.h, and vpx_scale_rtcd.h for all platforms. - http://crbug/162675 shoudl be fixed. BUG=165504 TEST= Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=172738

Patch Set 1 #

Total comments: 16

Patch Set 2 : #

Patch Set 3 : #

Total comments: 3
Unified diffs Side-by-side diffs Delta from patch set Stats (+111235 lines, -13374 lines) Patch
M README.chromium View 1 2 2 chunks +10 lines, -7 lines 0 comments Download
M generate_gypi.sh View 1 2 6 chunks +82 lines, -13 lines 0 comments Download
M libvpx.gyp View 1 2 8 chunks +125 lines, -36 lines 3 comments Download
M libvpx_srcs_arm.gypi View 1 2 2 chunks +82 lines, -2 lines 0 comments Download
M libvpx_srcs_arm_neon.gypi View 1 2 2 chunks +82 lines, -2 lines 0 comments Download
M libvpx_srcs_mips.gypi View 1 2 2 chunks +82 lines, -2 lines 0 comments Download
M libvpx_srcs_x86.gypi View 1 2 4 chunks +107 lines, -4 lines 0 comments Download
M libvpx_srcs_x86_64.gypi View 1 2 4 chunks +107 lines, -4 lines 0 comments Download
A source/config/linux/arm-neon/vp8_rtcd.h View 1 2 1 chunk +430 lines, -0 lines 0 comments Download
A source/config/linux/arm-neon/vp9_rtcd.h View 1 2 1 chunk +354 lines, -0 lines 0 comments Download
M source/config/linux/arm-neon/vpx_config.h View 1 2 4 chunks +37 lines, -16 lines 0 comments Download
M source/config/linux/arm-neon/vpx_config.asm View 1 2 3 chunks +23 lines, -12 lines 0 comments Download
M source/config/linux/arm-neon/vpx_config.c View 1 2 1 chunk +8 lines, -1 line 0 comments Download
A source/config/linux/arm-neon/vpx_scale_rtcd.h View 1 2 1 chunk +59 lines, -0 lines 0 comments Download
A source/config/linux/arm/vp8_rtcd.h View 1 2 1 chunk +376 lines, -0 lines 0 comments Download
A source/config/linux/arm/vp9_rtcd.h View 1 2 1 chunk +354 lines, -0 lines 0 comments Download
M source/config/linux/arm/vpx_config.h View 1 2 4 chunks +37 lines, -16 lines 0 comments Download
M source/config/linux/arm/vpx_config.asm View 1 2 3 chunks +24 lines, -13 lines 0 comments Download
M source/config/linux/arm/vpx_config.c View 1 2 1 chunk +8 lines, -1 line 0 comments Download
A source/config/linux/arm/vpx_scale_rtcd.h View 1 2 1 chunk +56 lines, -0 lines 0 comments Download
A source/config/linux/ia32/vp8_rtcd.h View 1 2 1 chunk +823 lines, -0 lines 0 comments Download
A source/config/linux/ia32/vp9_rtcd.h View 1 2 1 chunk +575 lines, -0 lines 0 comments Download
M source/config/linux/ia32/vpx_config.h View 1 2 3 chunks +37 lines, -13 lines 0 comments Download
M source/config/linux/ia32/vpx_config.asm View 1 2 3 chunks +22 lines, -8 lines 0 comments Download
M source/config/linux/ia32/vpx_config.c View 1 2 1 chunk +8 lines, -1 line 0 comments Download
A source/config/linux/ia32/vpx_scale_rtcd.h View 1 2 1 chunk +55 lines, -0 lines 0 comments Download
A source/config/linux/mipsel/vp8_rtcd.h View 1 2 1 chunk +331 lines, -0 lines 0 comments Download
A source/config/linux/mipsel/vp9_rtcd.h View 1 2 1 chunk +349 lines, -0 lines 0 comments Download
M source/config/linux/mipsel/vpx_config.h View 1 2 4 chunks +31 lines, -10 lines 0 comments Download
M source/config/linux/mipsel/vpx_config.c View 1 2 1 chunk +8 lines, -1 line 0 comments Download
A source/config/linux/mipsel/vpx_scale_rtcd.h View 1 2 1 chunk +51 lines, -0 lines 0 comments Download
A source/config/linux/x64/vp8_rtcd.h View 1 2 1 chunk +649 lines, -0 lines 0 comments Download
A source/config/linux/x64/vp9_rtcd.h View 1 2 1 chunk +410 lines, -0 lines 0 comments Download
M source/config/linux/x64/vpx_config.h View 1 2 4 chunks +36 lines, -12 lines 0 comments Download
M source/config/linux/x64/vpx_config.asm View 1 2 3 chunks +22 lines, -8 lines 0 comments Download
M source/config/linux/x64/vpx_config.c View 1 2 1 chunk +8 lines, -1 line 0 comments Download
A source/config/linux/x64/vpx_scale_rtcd.h View 1 2 1 chunk +55 lines, -0 lines 0 comments Download
A source/config/mac/ia32/vp8_rtcd.h View 1 2 1 chunk +823 lines, -0 lines 0 comments Download
A source/config/mac/ia32/vp9_rtcd.h View 1 2 1 chunk +575 lines, -0 lines 0 comments Download
M source/config/mac/ia32/vpx_config.h View 1 2 4 chunks +35 lines, -11 lines 0 comments Download
M source/config/mac/ia32/vpx_config.asm View 1 2 4 chunks +22 lines, -8 lines 0 comments Download
M source/config/mac/ia32/vpx_config.c View 1 2 1 chunk +8 lines, -1 line 0 comments Download
A source/config/mac/ia32/vpx_scale_rtcd.h View 1 2 1 chunk +55 lines, -0 lines 0 comments Download
A source/config/mac/x64/vp8_rtcd.h View 1 2 1 chunk +649 lines, -0 lines 0 comments Download
A source/config/mac/x64/vp9_rtcd.h View 1 2 1 chunk +410 lines, -0 lines 0 comments Download
M source/config/mac/x64/vpx_config.h View 1 2 3 chunks +36 lines, -13 lines 0 comments Download
M source/config/mac/x64/vpx_config.asm View 1 2 4 chunks +22 lines, -8 lines 0 comments Download
A source/config/mac/x64/vpx_config.c View 1 2 1 chunk +9 lines, -0 lines 0 comments Download
A source/config/mac/x64/vpx_scale_rtcd.h View 1 2 1 chunk +55 lines, -0 lines 0 comments Download
M source/config/vpx_version.h View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
A source/config/win/ia32/vp8_rtcd.h View 1 2 1 chunk +823 lines, -0 lines 0 comments Download
A source/config/win/ia32/vp9_rtcd.h View 1 2 1 chunk +570 lines, -0 lines 0 comments Download
M source/config/win/ia32/vpx_config.h View 1 2 4 chunks +36 lines, -12 lines 0 comments Download
M source/config/win/ia32/vpx_config.asm View 1 2 3 chunks +23 lines, -9 lines 0 comments Download
M source/config/win/ia32/vpx_config.c View 1 2 1 chunk +8 lines, -1 line 0 comments Download
A source/config/win/ia32/vpx_scale_rtcd.h View 1 2 1 chunk +55 lines, -0 lines 0 comments Download
M source/libvpx/args.h View 1 2 1 chunk +15 lines, -18 lines 0 comments Download
M source/libvpx/args.c View 1 2 1 chunk +145 lines, -172 lines 0 comments Download
M source/libvpx/build/make/Android.mk View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M source/libvpx/build/make/Makefile View 1 2 2 chunks +18 lines, -2 lines 0 comments Download
M source/libvpx/build/make/ads2gas.pl View 1 2 4 chunks +11 lines, -15 lines 0 comments Download
M source/libvpx/build/make/configure.sh View 1 2 3 chunks +3 lines, -5 lines 0 comments Download
M source/libvpx/build/make/gen_msvs_proj.sh View 1 2 8 chunks +26 lines, -10 lines 0 comments Download
M source/libvpx/build/make/obj_int_extract.c View 1 2 4 chunks +608 lines, -707 lines 0 comments Download
A source/libvpx/build/x86-msvs/obj_int_extract.bat.orig View 1 2 1 chunk +15 lines, -0 lines 0 comments Download
M source/libvpx/configure View 1 2 11 chunks +58 lines, -2 lines 0 comments Download
M source/libvpx/example_xma.c View 1 2 1 chunk +131 lines, -154 lines 0 comments Download
M source/libvpx/examples.mk View 1 2 6 chunks +17 lines, -12 lines 0 comments Download
M source/libvpx/examples/decoder_tmpl.c View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M source/libvpx/examples/decoder_tmpl.txt View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/examples/encoder_tmpl.txt View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/examples/postproc.txt View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/libmkv/EbmlBufferWriter.h View 1 2 1 chunk +6 lines, -8 lines 0 comments Download
M source/libvpx/libmkv/EbmlBufferWriter.c View 1 2 1 chunk +34 lines, -40 lines 0 comments Download
M source/libvpx/libmkv/EbmlIDs.h View 1 2 6 chunks +94 lines, -95 lines 0 comments Download
M source/libvpx/libmkv/EbmlWriter.c View 1 2 1 chunk +94 lines, -112 lines 0 comments Download
M source/libvpx/libmkv/WebMElement.h View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M source/libvpx/libmkv/WebMElement.c View 1 2 5 chunks +83 lines, -89 lines 0 comments Download
M source/libvpx/libmkv/testlibmkv.c View 1 2 1 chunk +40 lines, -41 lines 0 comments Download
M source/libvpx/libs.mk View 1 2 14 chunks +144 lines, -90 lines 0 comments Download
M source/libvpx/md5_utils.h View 1 2 1 chunk +4 lines, -5 lines 0 comments Download
M source/libvpx/md5_utils.c View 1 2 6 chunks +143 lines, -153 lines 0 comments Download
M source/libvpx/nestegg/include/nestegg/nestegg.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M source/libvpx/nestegg/src/nestegg.c View 1 2 2 chunks +4 lines, -0 lines 0 comments Download
M source/libvpx/test/datarate_test.cc View 1 2 2 chunks +4 lines, -13 lines 0 comments Download
A source/libvpx/test/dct16x16_test.cc View 1 2 1 chunk +356 lines, -0 lines 0 comments Download
M source/libvpx/test/fdct4x4_test.cc View 1 2 7 chunks +55 lines, -84 lines 0 comments Download
A source/libvpx/test/fdct8x8_test.cc View 1 2 1 chunk +168 lines, -0 lines 0 comments Download
A source/libvpx/test/idct8x8_test.cc View 1 2 1 chunk +162 lines, -0 lines 0 comments Download
M source/libvpx/test/idctllm_test.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/test/intrapred_test.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/test/pp_filter_test.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/test/sad_test.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/test/sixtap_predict_test.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/test/subtract_test.cc View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/test/test.mk View 1 2 3 chunks +25 lines, -3 lines 0 comments Download
M source/libvpx/test/test_libvpx.cc View 1 2 2 chunks +19 lines, -6 lines 0 comments Download
A source/libvpx/test/variance_test.cc View 1 2 1 chunk +123 lines, -0 lines 0 comments Download
A source/libvpx/test/vp8_boolcoder_test.cc View 1 2 1 chunk +90 lines, -0 lines 0 comments Download
A source/libvpx/test/vp8_fdct4x4_test.cc View 1 2 1 chunk +169 lines, -0 lines 0 comments Download
A source/libvpx/test/vp9_boolcoder_test.cc View 1 2 1 chunk +88 lines, -0 lines 0 comments Download
A source/libvpx/third_party/x86inc/LICENSE View 1 2 1 chunk +18 lines, -0 lines 0 comments Download
A source/libvpx/third_party/x86inc/README.webm View 1 2 1 chunk +11 lines, -0 lines 0 comments Download
A source/libvpx/third_party/x86inc/x86inc.asm View 1 2 1 chunk +1118 lines, -0 lines 0 comments Download
A source/libvpx/tools/all_builds.py View 1 2 1 chunk +72 lines, -0 lines 0 comments Download
A source/libvpx/tools/cpplint.py View 1 2 1 chunk +3361 lines, -0 lines 0 comments Download
A source/libvpx/tools/diff.py View 1 2 1 chunk +127 lines, -0 lines 0 comments Download
M source/libvpx/tools/ftfy.sh View 1 2 2 chunks +8 lines, -8 lines 0 comments Download
M source/libvpx/tools/intersect-diffs.py View 1 2 2 chunks +3 lines, -115 lines 0 comments Download
A source/libvpx/tools/lint-hunks.py View 1 2 1 chunk +144 lines, -0 lines 0 comments Download
A source/libvpx/tools/vpx-astyle.sh View 1 2 1 chunk +27 lines, -0 lines 0 comments Download
M source/libvpx/tools_common.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/tools_common.c View 1 2 1 chunk +4 lines, -5 lines 0 comments Download
M source/libvpx/vp8/common/arm/armv6/idct_blk_v6.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/arm/bilinearfilter_arm.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/arm/filter_arm.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/arm/loopfilter_arm.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/arm/neon/idct_blk_neon.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/arm/reconintra_arm.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/arm/variance_arm.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/asm_com_offsets.c View 1 2 3 chunks +0 lines, -19 lines 0 comments Download
M source/libvpx/vp8/common/dequantize.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/generic/systemdependent.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/idct_blk.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/invtrans.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/loopfilter.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/loopfilter.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/mfqe.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/mips/dspr2/dequantize_dspr2.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/mips/dspr2/filter_dspr2.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/mips/dspr2/idct_blk_dspr2.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/mips/dspr2/idctllm_dspr2.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/mips/dspr2/loopfilter_filters_dspr2.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/mips/dspr2/reconinter_dspr2.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/onyxc_int.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/postproc.c View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M source/libvpx/vp8/common/ppc/systemdependent.c View 1 2 1 chunk +0 lines, -5 lines 0 comments Download
M source/libvpx/vp8/common/reconinter.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/reconintra.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/reconintra4x4.c View 1 2 1 chunk +3 lines, -3 lines 0 comments Download
M source/libvpx/vp8/common/rtcd.c View 1 2 1 chunk +5 lines, -89 lines 0 comments Download
M source/libvpx/vp8/common/rtcd_defs.sh View 1 2 4 chunks +6 lines, -40 lines 0 comments Download
M source/libvpx/vp8/common/x86/idct_blk_mmx.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/x86/idct_blk_sse2.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/x86/recon_wrapper_sse2.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/common/x86/vp8_asm_stubs.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/decoder/decodframe.c View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M source/libvpx/vp8/decoder/onyxd_if.c View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M source/libvpx/vp8/decoder/threading.c View 1 2 4 chunks +19 lines, -25 lines 0 comments Download
M source/libvpx/vp8/encoder/arm/armv5te/boolhuff_armv5te.asm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/arm/armv5te/vp8_packtokens_armv5.asm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/arm/armv5te/vp8_packtokens_mbrow_armv5.asm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/arm/armv5te/vp8_packtokens_partitions_armv5.asm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/arm/armv6/vp8_fast_quantize_b_armv6.asm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/arm/armv6/vp8_subtract_armv6.asm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/arm/dct_arm.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/arm/neon/fastquantizeb_neon.asm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/arm/neon/subtract_neon.asm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/arm/quantize_arm.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/bitstream.c View 1 2 8 chunks +6 lines, -8 lines 0 comments Download
M source/libvpx/vp8/encoder/block.h View 1 2 1 chunk +0 lines, -7 lines 0 comments Download
M source/libvpx/vp8/encoder/denoising.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/encodeframe.c View 1 2 12 chunks +20 lines, -79 lines 0 comments Download
M source/libvpx/vp8/encoder/encodeintra.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/encodemb.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/encodemv.c View 1 2 1 chunk +2 lines, -4 lines 0 comments Download
M source/libvpx/vp8/encoder/ethreading.c View 1 2 2 chunks +6 lines, -7 lines 0 comments Download
M source/libvpx/vp8/encoder/firstpass.c View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M source/libvpx/vp8/encoder/onyx_if.c View 1 2 4 chunks +37 lines, -8 lines 0 comments Download
M source/libvpx/vp8/encoder/onyx_int.h View 1 2 5 chunks +12 lines, -1 line 0 comments Download
M source/libvpx/vp8/encoder/pickinter.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/pickinter.c View 1 2 2 chunks +5 lines, -6 lines 0 comments Download
M source/libvpx/vp8/encoder/picklpf.c View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M source/libvpx/vp8/encoder/ratectrl.c View 1 2 2 chunks +4 lines, -4 lines 0 comments Download
M source/libvpx/vp8/encoder/rdopt.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/rdopt.c View 1 2 11 chunks +19 lines, -16 lines 0 comments Download
M source/libvpx/vp8/encoder/tokenize.c View 1 2 25 chunks +48 lines, -54 lines 0 comments Download
M source/libvpx/vp8/encoder/x86/denoising_sse2.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/x86/quantize_sse2.asm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/x86/quantize_sse4.asm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/x86/quantize_ssse3.asm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/x86/vp8_enc_stubs_mmx.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/encoder/x86/vp8_enc_stubs_sse2.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/vp8_common.mk View 1 2 1 chunk +5 lines, -0 lines 0 comments Download
M source/libvpx/vp8/vp8_cx_iface.c View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M source/libvpx/vp8/vp8_dx_iface.c View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M source/libvpx/vp8/vp8cx.mk View 1 2 4 chunks +13 lines, -4 lines 0 comments Download
M source/libvpx/vp8/vp8cx_arm.mk View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vp8/vp8dx.mk View 1 2 3 chunks +3 lines, -28 lines 0 comments Download
A source/libvpx/vp9/common/generic/vp9_systemdependent.c View 1 2 1 chunk +20 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/ppc/vp9_copy_altivec.asm View 1 2 1 chunk +47 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/ppc/vp9_filter_altivec.asm View 1 2 1 chunk +1013 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/ppc/vp9_filter_bilinear_altivec.asm View 1 2 1 chunk +677 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/ppc/vp9_idctllm_altivec.asm View 1 2 1 chunk +189 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/ppc/vp9_loopfilter_altivec.c View 1 2 1 chunk +127 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/ppc/vp9_loopfilter_filters_altivec.asm View 1 2 1 chunk +1253 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/ppc/vp9_platform_altivec.asm View 1 2 1 chunk +59 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/ppc/vp9_recon_altivec.asm View 1 2 1 chunk +175 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/ppc/vp9_systemdependent.c View 1 2 1 chunk +166 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_alloccommon.h View 1 2 1 chunk +26 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_alloccommon.c View 1 2 1 chunk +223 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_asm_com_offsets.c View 1 2 1 chunk +21 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_blockd.h View 1 2 1 chunk +653 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_blockd.c View 1 2 1 chunk +29 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_coefupdateprobs.h View 1 2 1 chunk +16 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_common.h View 1 2 1 chunk +41 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_common_types.h View 1 2 1 chunk +18 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_context.c View 1 2 1 chunk +397 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_debugmodes.c View 1 2 1 chunk +146 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_default_coef_probs.h View 1 2 1 chunk +1377 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_entropy.h View 1 2 1 chunk +114 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_entropy.c View 1 2 1 chunk +447 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_entropymode.h View 1 2 1 chunk +117 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_entropymode.c View 1 2 1 chunk +705 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_entropymv.h View 1 2 1 chunk +129 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_entropymv.c View 1 2 1 chunk +469 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_extend.h View 1 2 1 chunk +27 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_extend.c View 1 2 1 chunk +169 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_filter.h View 1 2 1 chunk +28 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_filter.c View 1 2 1 chunk +1159 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_findnearmv.h View 1 2 1 chunk +185 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_findnearmv.c View 1 2 1 chunk +298 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_header.h View 1 2 1 chunk +42 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_idctllm.c View 1 2 1 chunk +1776 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_implicit_segmentation.c View 1 2 1 chunk +255 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_invtrans.h View 1 2 1 chunk +41 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_invtrans.c View 1 2 1 chunk +145 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_loopfilter.h View 1 2 1 chunk +96 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_loopfilter.c View 1 2 1 chunk +524 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_loopfilter_filters.c View 1 2 1 chunk +480 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_maskingmv.c View 1 2 1 chunk +806 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_mbpitch.c View 1 2 1 chunk +124 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_modecont.h View 1 2 1 chunk +16 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_modecont.c View 1 2 1 chunk +22 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_modecontext.c View 1 2 1 chunk +147 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_mv.h View 1 2 1 chunk +26 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_mvref_common.h View 1 2 1 chunk +28 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_mvref_common.c View 1 2 1 chunk +398 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_onyx.h View 1 2 1 chunk +225 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_onyxc_int.h View 1 2 1 chunk +306 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_onyxd.h View 1 2 1 chunk +68 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_postproc.h View 1 2 1 chunk +41 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_postproc.c View 1 2 1 chunk +1012 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_ppflags.h View 1 2 1 chunk +38 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_pragmas.h View 1 2 1 chunk +19 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_pred_common.h View 1 2 1 chunk +56 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_pred_common.c View 1 2 1 chunk +465 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_quant_common.h View 1 2 1 chunk +22 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_quant_common.c View 1 2 1 chunk +125 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_recon.c View 1 2 1 chunk +197 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_reconinter.h View 1 2 1 chunk +78 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_reconinter.c View 1 2 1 chunk +1144 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_reconintra.h View 1 2 1 chunk +44 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_reconintra.c View 1 2 1 chunk +863 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_reconintra4x4.h View 1 2 1 chunk +17 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_reconintra4x4.c View 1 2 1 chunk +472 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_rtcd.c View 1 2 1 chunk +21 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_rtcd_defs.sh View 1 2 1 chunk +679 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_sadmxn.h View 1 2 1 chunk +37 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_seg_common.h View 1 2 1 chunk +64 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_seg_common.c View 1 2 1 chunk +112 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_setupintrarecon.h View 1 2 1 chunk +13 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_setupintrarecon.c View 1 2 1 chunk +31 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_subpelvar.h View 1 2 1 chunk +147 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_subpixel.h View 1 2 1 chunk +21 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_swapyv12buffer.h View 1 2 1 chunk +19 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_swapyv12buffer.c View 1 2 1 chunk +32 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_systemdependent.h View 1 2 1 chunk +23 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_tapify.py View 1 2 1 chunk +106 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_textblit.h View 1 2 1 chunk +19 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_textblit.c View 1 2 1 chunk +117 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_treecoder.h View 1 2 1 chunk +83 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_treecoder.c View 1 2 1 chunk +138 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/vp9_type_aliases.h View 1 2 1 chunk +120 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_asm_stubs.c View 1 2 1 chunk +625 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_filter_sse2.c View 1 2 1 chunk +289 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_filter_sse4.c View 1 2 1 chunk +362 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_idct_x86.h View 1 2 1 chunk +64 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_idctllm_mmx.asm View 1 2 1 chunk +241 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_idctllm_sse2.asm View 1 2 1 chunk +712 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_iwalsh_mmx.asm View 1 2 1 chunk +173 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_iwalsh_sse2.asm View 1 2 1 chunk +119 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_loopfilter_mmx.asm View 1 2 1 chunk +969 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_loopfilter_sse2.asm View 1 2 1 chunk +1238 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_loopfilter_x86.h View 1 2 1 chunk +43 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_loopfilter_x86.c View 1 2 1 chunk +686 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_mask_sse3.asm View 1 2 1 chunk +484 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_postproc_mmx.asm View 1 2 1 chunk +534 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_postproc_sse2.asm View 1 2 1 chunk +695 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_postproc_x86.h View 1 2 1 chunk +64 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_recon_mmx.asm View 1 2 1 chunk +321 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_recon_sse2.asm View 1 2 1 chunk +688 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_recon_wrapper_sse2.c View 1 2 1 chunk +101 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_sadmxn_x86.c View 1 2 1 chunk +99 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_subpixel_8t_ssse3.asm View 1 2 1 chunk +550 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_subpixel_mmx.asm View 1 2 1 chunk +727 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_subpixel_sse2.asm View 1 2 1 chunk +1372 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_subpixel_ssse3.asm View 1 2 1 chunk +1515 lines, -0 lines 0 comments Download
A source/libvpx/vp9/common/x86/vp9_subpixel_x86.h View 1 2 1 chunk +122 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/vp9_asm_dec_offsets.c View 1 2 1 chunk +20 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/vp9_dboolhuff.h View 1 2 1 chunk +155 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/vp9_dboolhuff.c View 1 2 1 chunk +112 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/vp9_decodemv.h View 1 2 1 chunk +19 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/vp9_decodemv.c View 1 2 1 chunk +1262 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/vp9_decodframe.h View 1 2 1 chunk +19 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/vp9_decodframe.c View 1 2 1 chunk +1718 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/vp9_dequantize.h View 1 2 1 chunk +102 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/vp9_dequantize.c View 1 2 1 chunk +354 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/vp9_detokenize.h View 1 2 1 chunk +29 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/vp9_detokenize.c View 1 2 1 chunk +463 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/vp9_idct_blk.c View 1 2 1 chunk +373 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/vp9_onyxd_if.c View 1 2 1 chunk +454 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/vp9_onyxd_int.h View 1 2 1 chunk +106 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/vp9_reconintra_mt.h View 1 2 1 chunk +15 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/vp9_treereader.h View 1 2 1 chunk +37 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/x86/vp9_dequantize_mmx.asm View 1 2 1 chunk +406 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/x86/vp9_idct_blk_mmx.c View 1 2 1 chunk +145 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/x86/vp9_idct_blk_sse2.c View 1 2 1 chunk +117 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/x86/vp9_idct_mmx.h View 1 2 1 chunk +25 lines, -0 lines 0 comments Download
A source/libvpx/vp9/decoder/x86/vp9_x86_dsystemdependent.c View 1 2 1 chunk +26 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/ppc/vp9_csystemdependent.c View 1 2 1 chunk +155 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/ppc/vp9_encodemb_altivec.asm View 1 2 1 chunk +153 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/ppc/vp9_fdct_altivec.asm View 1 2 1 chunk +205 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/ppc/vp9_rdopt_altivec.asm View 1 2 1 chunk +51 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/ppc/vp9_sad_altivec.asm View 1 2 1 chunk +277 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/ppc/vp9_variance_altivec.asm View 1 2 1 chunk +375 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/ppc/vp9_variance_subpixel_altivec.asm View 1 2 1 chunk +865 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_asm_enc_offsets.c View 1 2 1 chunk +41 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_bitstream.h View 1 2 1 chunk +17 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_bitstream.c View 1 2 1 chunk +2365 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_block.h View 1 2 1 chunk +186 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_boolhuff.h View 1 2 1 chunk +112 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_boolhuff.c View 1 2 1 chunk +162 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_dct.c View 1 2 1 chunk +1332 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_encodeframe.h View 1 2 1 chunk +21 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_encodeframe.c View 1 2 1 chunk +2471 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_encodeintra.h View 1 2 1 chunk +25 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_encodeintra.c View 1 2 1 chunk +277 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_encodemb.h View 1 2 1 chunk +64 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_encodemb.c View 1 2 1 chunk +989 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_encodemv.h View 1 2 1 chunk +33 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_encodemv.c View 1 2 1 chunk +661 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_firstpass.h View 1 2 1 chunk +23 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_firstpass.c View 1 2 1 chunk +2530 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_lookahead.h View 1 2 1 chunk +105 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_lookahead.c View 1 2 1 chunk +191 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_mbgraph.h View 1 2 1 chunk +16 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_mbgraph.c View 1 2 1 chunk +479 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_mcomp.h View 1 2 1 chunk +85 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_mcomp.c View 1 2 1 chunk +2216 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_modecosts.h View 1 2 1 chunk +17 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_modecosts.c View 1 2 1 chunk +51 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_onyx_if.c View 1 2 1 chunk +4523 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_onyx_int.h View 1 2 1 chunk +828 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_picklpf.h View 1 2 1 chunk +26 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_picklpf.c View 1 2 1 chunk +341 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_psnr.h View 1 2 1 chunk +17 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_psnr.c View 1 2 1 chunk +30 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_quantize.h View 1 2 1 chunk +93 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_quantize.c View 1 2 1 chunk +741 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_ratectrl.h View 1 2 1 chunk +38 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_ratectrl.c View 1 2 1 chunk +699 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_rdopt.h View 1 2 1 chunk +41 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_rdopt.c View 1 2 1 chunk +4850 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_sad_c.c View 1 2 1 chunk +480 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_satd_c.c View 1 2 1 chunk +47 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_segmentation.h View 1 2 1 chunk +46 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_segmentation.c View 1 2 1 chunk +335 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_ssim.c View 1 2 1 chunk +147 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_temporal_filter.h View 1 2 1 chunk +16 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_temporal_filter.c View 1 2 1 chunk +498 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_tokenize.h View 1 2 1 chunk +67 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_tokenize.c View 1 2 1 chunk +887 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_treewriter.h View 1 2 1 chunk +108 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_treewriter.c View 1 2 1 chunk +39 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_variance.h View 1 2 1 chunk +84 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/vp9_variance_c.c View 1 2 1 chunk +340 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_dct_mmx.h View 1 2 1 chunk +17 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_dct_mmx.asm View 1 2 1 chunk +241 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_dct_sse2.asm View 1 2 1 chunk +432 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_encodeopt.asm View 1 2 1 chunk +386 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_fwalsh_sse2.asm View 1 2 1 chunk +164 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_mcomp_x86.h View 1 2 1 chunk +40 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_quantize_mmx.asm View 1 2 1 chunk +286 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_quantize_sse2.asm View 1 2 1 chunk +380 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_quantize_sse4.asm View 1 2 1 chunk +254 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_quantize_ssse3.asm View 1 2 1 chunk +138 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_quantize_x86.h View 1 2 1 chunk +48 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_sad_mmx.asm View 1 2 1 chunk +427 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_sad_sse2.asm View 1 2 1 chunk +410 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_sad_sse3.asm View 1 2 1 chunk +960 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_sad_sse4.asm View 1 2 1 chunk +353 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_sad_ssse3.asm View 1 2 1 chunk +370 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_ssim_opt.asm View 1 2 1 chunk +216 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_subtract_mmx.asm View 1 2 1 chunk +432 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_subtract_sse2.asm View 1 2 1 chunk +356 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_temporal_filter_apply_sse2.asm View 1 2 1 chunk +207 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_variance_impl_mmx.asm View 1 2 1 chunk +851 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_variance_impl_sse2.asm View 1 2 1 chunk +1367 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_variance_impl_ssse3.asm View 1 2 1 chunk +372 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_variance_mmx.c View 1 2 1 chunk +382 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_variance_sse2.c View 1 2 1 chunk +517 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_variance_ssse3.c View 1 2 1 chunk +151 lines, -0 lines 0 comments Download
A source/libvpx/vp9/encoder/x86/vp9_x86_csystemdependent.c View 1 2 1 chunk +79 lines, -0 lines 0 comments Download
A source/libvpx/vp9/exports_dec View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
A source/libvpx/vp9/exports_enc View 1 2 1 chunk +4 lines, -0 lines 0 comments Download
A source/libvpx/vp9/vp9_cx_iface.c View 1 2 1 chunk +1136 lines, -0 lines 0 comments Download
A source/libvpx/vp9/vp9_dx_iface.c View 1 2 1 chunk +714 lines, -0 lines 0 comments Download
M source/libvpx/vpx/internal/vpx_codec_internal.h View 1 2 16 chunks +129 lines, -143 lines 0 comments Download
M source/libvpx/vpx/src/vpx_codec.c View 1 2 1 chunk +65 lines, -80 lines 0 comments Download
M source/libvpx/vpx/src/vpx_decoder.c View 1 2 2 chunks +139 lines, -158 lines 0 comments Download
M source/libvpx/vpx/src/vpx_encoder.c View 1 2 4 chunks +269 lines, -305 lines 0 comments Download
M source/libvpx/vpx/src/vpx_image.c View 1 2 4 chunks +163 lines, -189 lines 0 comments Download
M source/libvpx/vpx/vp8.h View 1 2 3 chunks +31 lines, -36 lines 0 comments Download
M source/libvpx/vpx/vp8cx.h View 1 2 8 chunks +93 lines, -88 lines 0 comments Download
M source/libvpx/vpx/vp8dx.h View 1 2 2 chunks +18 lines, -15 lines 0 comments Download
M source/libvpx/vpx/vpx_codec.h View 1 2 4 chunks +382 lines, -385 lines 0 comments Download
M source/libvpx/vpx/vpx_codec.mk View 1 2 2 chunks +0 lines, -16 lines 0 comments Download
M source/libvpx/vpx/vpx_decoder.h View 1 2 1 chunk +250 lines, -252 lines 0 comments Download
M source/libvpx/vpx/vpx_encoder.h View 1 2 1 chunk +726 lines, -737 lines 0 comments Download
M source/libvpx/vpx/vpx_image.h View 1 2 4 chunks +149 lines, -151 lines 0 comments Download
M source/libvpx/vpx_mem/include/vpx_mem_intrnl.h View 1 2 4 chunks +11 lines, -11 lines 0 comments Download
M source/libvpx/vpx_mem/include/vpx_mem_tracker.h View 1 2 1 chunk +129 lines, -130 lines 0 comments Download
M source/libvpx/vpx_mem/memory_manager/hmm_alloc.c View 1 2 1 chunk +27 lines, -29 lines 0 comments Download
M source/libvpx/vpx_mem/memory_manager/hmm_base.c View 1 2 5 chunks +222 lines, -251 lines 0 comments Download
M source/libvpx/vpx_mem/memory_manager/hmm_dflt_abort.c View 1 2 1 chunk +16 lines, -17 lines 0 comments Download
M source/libvpx/vpx_mem/memory_manager/hmm_grow.c View 1 2 1 chunk +18 lines, -19 lines 0 comments Download
M source/libvpx/vpx_mem/memory_manager/hmm_largest.c View 1 2 1 chunk +28 lines, -31 lines 0 comments Download
M source/libvpx/vpx_mem/memory_manager/hmm_resize.c View 1 2 1 chunk +63 lines, -68 lines 0 comments Download
M source/libvpx/vpx_mem/memory_manager/hmm_shrink.c View 1 2 1 chunk +58 lines, -66 lines 0 comments Download
M source/libvpx/vpx_mem/memory_manager/hmm_true.c View 1 2 1 chunk +9 lines, -10 lines 0 comments Download
M source/libvpx/vpx_mem/memory_manager/include/cavl_if.h View 1 2 5 chunks +24 lines, -27 lines 0 comments Download
M source/libvpx/vpx_mem/memory_manager/include/cavl_impl.h View 1 2 10 chunks +663 lines, -782 lines 0 comments Download
M source/libvpx/vpx_mem/memory_manager/include/heapmm.h View 1 2 2 chunks +34 lines, -35 lines 0 comments Download
M source/libvpx/vpx_mem/memory_manager/include/hmm_cnfg.h View 1 2 3 chunks +5 lines, -5 lines 0 comments Download
M source/libvpx/vpx_mem/memory_manager/include/hmm_intrnl.h View 1 2 4 chunks +31 lines, -33 lines 0 comments Download
M source/libvpx/vpx_mem/vpx_mem.h View 1 2 5 chunks +63 lines, -62 lines 0 comments Download
M source/libvpx/vpx_mem/vpx_mem.c View 1 2 3 chunks +357 lines, -422 lines 0 comments Download
M source/libvpx/vpx_mem/vpx_mem_tracker.c View 1 2 20 chunks +317 lines, -375 lines 0 comments Download
A source/libvpx/vpx_ports/arm_cpudetect.c.orig View 1 2 1 chunk +219 lines, -0 lines 0 comments Download
M source/libvpx/vpx_ports/asm_offsets.h View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
A source/libvpx/vpx_ports/config.h View 1 2 1 chunk +10 lines, -0 lines 0 comments Download
M source/libvpx/vpx_ports/mem.h View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M source/libvpx/vpx_ports/mem_ops.h View 1 2 2 chunks +77 lines, -89 lines 0 comments Download
M source/libvpx/vpx_ports/mem_ops_aligned.h View 1 2 1 chunk +40 lines, -40 lines 0 comments Download
A source/libvpx/vpx_ports/vpx_once.h View 1 2 1 chunk +97 lines, -0 lines 0 comments Download
M source/libvpx/vpx_ports/vpx_timer.h View 1 2 3 chunks +30 lines, -33 lines 0 comments Download
M source/libvpx/vpx_ports/vpxtypes.h View 1 2 3 chunks +18 lines, -19 lines 0 comments Download
M source/libvpx/vpx_ports/x86.h View 1 2 6 chunks +115 lines, -112 lines 0 comments Download
M source/libvpx/vpx_ports/x86_cpuid.c View 1 2 1 chunk +28 lines, -32 lines 0 comments Download
M source/libvpx/vpx_scale/arm/neon/vp8_vpxyv12_copy_y_neon.asm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vpx_scale/arm/neon/vp8_vpxyv12_copyframe_func_neon.asm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vpx_scale/arm/neon/vp8_vpxyv12_copysrcframe_func_neon.asm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vpx_scale/arm/neon/vp8_vpxyv12_extendframeborders_neon.asm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vpx_scale/arm/neon/yv12extend_arm.c View 1 2 1 chunk +1 line, -1 line 0 comments Download
M source/libvpx/vpx_scale/generic/gen_scalers.c View 1 2 2 chunks +0 lines, -682 lines 0 comments Download
M source/libvpx/vpx_scale/generic/vpxscale.c View 1 2 3 chunks +1 line, -481 lines 0 comments Download
M source/libvpx/vpx_scale/vpx_scale.mk View 1 2 2 chunks +6 lines, -2 lines 0 comments Download
A source/libvpx/vpx_scale/vpx_scale_asm_offsets.c View 1 2 1 chunk +40 lines, -0 lines 0 comments Download
A source/libvpx/vpx_scale/vpx_scale_rtcd.c View 1 2 1 chunk +18 lines, -0 lines 0 comments Download
A source/libvpx/vpx_scale/vpx_scale_rtcd.sh View 1 2 1 chunk +26 lines, -0 lines 0 comments Download
M source/libvpx/vpx_scale/vpxscale.h View 1 2 1 chunk +0 lines, -10 lines 0 comments Download
M source/libvpx/vpx_scale/win32/scaleopt.c View 1 2 3 chunks +0 lines, -1193 lines 0 comments Download
M source/libvpx/vpxdec.c View 1 2 6 chunks +771 lines, -843 lines 0 comments Download
M source/libvpx/vpxenc.c View 1 2 5 chunks +1884 lines, -1848 lines 0 comments Download
M source/libvpx/y4minput.h View 1 2 2 chunks +4 lines, -4 lines 0 comments Download
M source/libvpx/y4minput.c View 1 2 14 chunks +358 lines, -361 lines 0 comments Download

Messages

Total messages: 10 (0 generated)
Alpha Left Google
https://codereview.chromium.org/11555023/diff/1/generate_gypi.sh File generate_gypi.sh (right): https://codereview.chromium.org/11555023/diff/1/generate_gypi.sh#newcode32 generate_gypi.sh:32: grep -v '_offsets\.c' | \ This is hard to ...
8 years ago (2012-12-12 21:52:56 UTC) #1
fgalligan1
https://codereview.chromium.org/11555023/diff/1/generate_gypi.sh File generate_gypi.sh (right): https://codereview.chromium.org/11555023/diff/1/generate_gypi.sh#newcode32 generate_gypi.sh:32: grep -v '_offsets\.c' | \ On 2012/12/12 21:52:56, Alpha ...
8 years ago (2012-12-13 00:07:54 UTC) #2
Alpha Left Google
https://codereview.chromium.org/11555023/diff/1/libvpx.gyp File libvpx.gyp (right): https://codereview.chromium.org/11555023/diff/1/libvpx.gyp#newcode411 libvpx.gyp:411: { On 2012/12/13 00:07:54, fgalligan1 wrote: > On 2012/12/12 ...
8 years ago (2012-12-13 00:15:22 UTC) #3
fgalligan1
https://codereview.chromium.org/11555023/diff/1/libvpx.gyp File libvpx.gyp (right): https://codereview.chromium.org/11555023/diff/1/libvpx.gyp#newcode411 libvpx.gyp:411: { On 2012/12/13 00:15:22, Alpha wrote: > On 2012/12/13 ...
8 years ago (2012-12-13 00:38:08 UTC) #4
Alpha Left Google
alright, lgtm. Please make sure those are fixed, the gyp file is getting complicated already.
8 years ago (2012-12-13 00:40:20 UTC) #5
holmer
On 2012/12/13 00:40:20, Alpha wrote: > alright, lgtm. Please make sure those are fixed, the ...
8 years ago (2012-12-13 07:59:50 UTC) #6
holmer
I know this has been committed already, but please have a look at my two ...
8 years ago (2012-12-13 08:08:08 UTC) #7
fgalligan1
I will make a CL to remove the .orig files. https://codereview.chromium.org/11555023/diff/14126/libvpx.gyp File libvpx.gyp (right): https://codereview.chromium.org/11555023/diff/14126/libvpx.gyp#newcode415 ...
8 years ago (2012-12-13 17:09:23 UTC) #8
holmer
lgtm https://codereview.chromium.org/11555023/diff/14126/libvpx.gyp File libvpx.gyp (right): https://codereview.chromium.org/11555023/diff/14126/libvpx.gyp#newcode415 libvpx.gyp:415: 'action_name': 'unpack_lib_posix', Weird. It does look okay in ...
8 years ago (2012-12-14 08:51:23 UTC) #9
memyy
7 years, 12 months ago (2012-12-23 20:48:52 UTC) #10
Message was sent while issue was closed.

          

Powered by Google App Engine
This is Rietveld 408576698