summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-05-17md5_helper.h: fix type conversion warningJames Zern
add a cast in Add() from size_t -> uint32; quiets a visual studio build warning Change-Id: I0d87a3e460faf1fe2d4fb44df5f4042ef7500190
2015-05-16test_intra_pred_speed: reuse test_libvpx's main()James Zern
this allows test_libvpx's simd caps check to be used; it also fixes a link error on OS X with -fcommon. Change-Id: I1a62a3e74ba06b8f3b37a22fcfdebf90c04ab289
2015-05-16test_libvpx: add <arch>.* to negative filterJames Zern
in addition to <arch>/*. this will pick up tests defined with TEST() instead of INSTANTIATE_TEST_CASE_P() Change-Id: I0917741baac89d9ce857f4d4aa53790e8a0c6c12
2015-05-16dec_build_inter_predictors: don't return a void fnJames Zern
split call of extend_and_predict() and return, fixes visual studio build warning since: 0a80164 Move mc_buf to cut down size of MACROBLOCKD. Change-Id: I7cdf712941ef773a07f038539cb8080dc27861cd
2015-05-15Merge "tests: add test_intra_pred_speed"James Zern
2015-05-15Merge changes from topic 'missing-proto'James Zern
* changes: vp9_subexp.h: add a missing prototype vp9: add some missing includes vp9 intrinsics: add vp9_rtcd include vp9: correct some function signatures vp9_variance_sse2: sync function signatures vp9/encoder: make some functions static vp9_dct_sse2: make some functions static vp9_decodeframe.c: make a function static
2015-05-15Merge "Change tx_size_search_method setting for non-rd speed 5."Marco
2015-05-15Change tx_size_search_method setting for non-rd speed 5.Marco
Use the same settting as in speed >=6. This will use same logic for tx_size selecton as in speed >=6, which limits the transform size and reduces ringing artifact. Also metrics go up on average with this change: ~2% for PSNR, ~10% for SSIM. Change-Id: Ia2d50db236ae1cc72f742bfa6c9ec5ea50ff0e0a
2015-05-15vp9_subexp.h: add a missing prototypeJames Zern
+ include the .h in the .c silences missing prototype warnings Change-Id: Ia87366dccb4bf4e9f2ffa5d3ab51ac6ca5488c91
2015-05-15vp9: add some missing includesJames Zern
mostly: <file>.c should include <file>.h silences missing prototype warnings Change-Id: Ic05ec32c6f7b2224b78825904d96d73aacad6000
2015-05-15vp9 intrinsics: add vp9_rtcd includeJames Zern
silences a missing declaration warning Change-Id: I59a34e1a1377cf3529b678d7ec0122bd43ab1bf1
2015-05-15vp9: correct some function signaturesJames Zern
silences missing prototype warnings Change-Id: Idaf68d83d2cb03847f3ee002c4d00c2ac79da604
2015-05-15vp9_variance_sse2: sync function signaturesJames Zern
+ include vp9_rtcd.h silences missing prototype warnings Change-Id: I77902f07a454029baad4fe5fe6fc37c65644e6f7
2015-05-15vp9/encoder: make some functions staticJames Zern
silences missing prototype warnings Change-Id: I3338fcaa67b5dcdf6bf237e8b374db3befd18753
2015-05-15vp9_dct_sse2: make some functions staticJames Zern
silences missing prototype warnings Change-Id: I773b6a6b5bd7c57db18c3b17c519534f80e131de
2015-05-15vp9_decodeframe.c: make a function staticJames Zern
silences a missing declaration warning Change-Id: I2f49ebca9ba7a47f3c48f5fe919b90cd4114a9bc
2015-05-15Merge "Fix illegal memory access when stream starts w/ invisible frame."Adrian Grange
2015-05-15Merge changes from topic 'missing-proto'James Zern
* changes: vp8/rdopt.h+onyx_int.h: add some missing prototypes vp8: add some missing includes vp8: make some functions static vp8/common/variance*: add vp8_rtcd include vp8_copy32xn: sync function signature
2015-05-15Merge changes from topic 'missing-proto'James Zern
* changes: sad*_avx2.c: sync function signatures vpx_scale: add missing rtcd + vpx_scale includes
2015-05-15Merge changes from topic 'missing-proto'James Zern
* changes: fdct8x8_test: move functions to an anonymous namespace md5_utils.c: make a function static vpx_config.c: add vpx_codec include
2015-05-15Merge "Move mc_buf to cut down size of MACROBLOCKD."Frank Galligan
2015-05-15Merge "Revert "Skip the last frame update for some frame repeats.""paulwilkins
2015-05-14vp8/rdopt.h+onyx_int.h: add some missing prototypesJames Zern
silences missing prototype warnings Change-Id: Icd477e37b502205d0a60e7389e51b1ba17d8888e
2015-05-14vp8: add some missing includesJames Zern
silences missing prototype warnings Change-Id: Ib62e4743532b871e63bc99732875fff20501b8ac
2015-05-14vp8: make some functions staticJames Zern
silences missing prototype warnings Change-Id: I9f24a3214c832c982ca0dc5a032316eba48472ff
2015-05-14vp8/common/variance*: add vp8_rtcd includeJames Zern
silences missing prototype warnings Change-Id: I5ca198b56a5ff0cf5b93c89957526f243c04e9c8
2015-05-14vp8_copy32xn: sync function signatureJames Zern
+ include vp8_rtcd.h in copy_c.c silences missing prototype warnings Change-Id: Iecc279c695b08a26b231dedb41e3b84c551703f3
2015-05-14sad*_avx2.c: sync function signaturesJames Zern
+ include vpx_dsp_rtcd.h silences missing prototype warnings Change-Id: Ifa1780bcf72b1fa2b153025d0d78d91ad38774c3
2015-05-14vpx_scale: add missing rtcd + vpx_scale includesJames Zern
silences missing prototype warnings Change-Id: I33320f66c789b8c5c51d69f9dc0e017f9e06b0d0
2015-05-14fdct8x8_test: move functions to an anonymous namespaceJames Zern
silences missing declaration warnings Change-Id: I9486c13c973df3d25fcdc2c3de9a0da783ce8fd6
2015-05-14md5_utils.c: make a function staticJames Zern
silences a missing prototype warning Change-Id: I982c9c70e0e9f94a5201559300cadb8bd22441f9
2015-05-14vpx_config.c: add vpx_codec includeJames Zern
silences a missing prototype warning Change-Id: I31a11c8390ae58e9a99ecc7cdf2a36334fac3f65
2015-05-14Move mc_buf to cut down size of MACROBLOCKD.Frank Galligan
Change-Id: Icea64b9e5632b41aaa7cd7018c501d6add9b7a7f
2015-05-14tests: add test_intra_pred_speedJames Zern
useful for speed testing / verifying individual function optimizations; currently tests non-high-bitdepth VP9 intra predictors Change-Id: Ibd247765e43a31894697d43f1d39d312e0ba2090
2015-05-14Fix illegal memory access when stream starts w/ invisible frame.Adrian Grange
Add a check to make sure we have a decoded frame available before copying its 'corrupt' flag. (Originally submitted to the old repository by Alexander Voronov as: https://gerrit.chromium.org/gerrit/#/c/74305/). Change-Id: Iceb4686c785afb437b668015bf8818b18d60e0ce
2015-05-14Merge "Remove BUILD_LIBVPX_SO variable from the build system."Tom Finegan
2015-05-14Merge "Remove the BUILD_LIBVPX variable from the build system."Tom Finegan
2015-05-14Remove BUILD_LIBVPX_SO variable from the build system.Tom Finegan
Was just an additional layer of indirection for CONFIG_SHARED, so use CONFIG_SHARED directly. Change-Id: I7c022b9f926a63c2c5884def5f03dfd648329afc
2015-05-14Remove the BUILD_LIBVPX variable from the build system.Tom Finegan
Replace it with it's value (yes), which is constant. Change-Id: Ifb0c0408a53ecadf81156da6a64fa583b2ada746
2015-05-14Revert "Skip the last frame update for some frame repeats."paulwilkins
Testing on another rate control patch reveals that in some situations, where the encoder is flipping in and out of arf mode, we get an encoder decoder mismatch. Whilst it is still not clear why, skipping the last buffer update seems to trigger the problem. Until I can establish why, or if there is another underlying cause, I am reverting this change. This reverts commit e5112b3ae3352c4c55fb31235305f3f80f4b8f7e. Change-Id: I315c5200414de89458015823344b7367e9dd75ba
2015-05-13Merge "Relocate memory operations for common code"Johann
2015-05-13Relocate memory operations for common codeJohann
With the sad functions, and hopefully the variance functions soon, moving to the vpx_dsp location, place the defines used in the reference C code in a common location. Change-Id: I4c8ce7778eb38a0a3ee674d2f1c488eda01cfeca
2015-05-13Avoid failed include when Makefile is processed with no target.Tom Finegan
Basically just a warning, but disconcerting nonetheless. Removes this output from the build: Makefile:59: -x86_64-darwin13-gcc.mk: No such file or directory Change-Id: Ibb379506352b2f613ef4a7b1ac47e9c95d0d1580
2015-05-13Merge "Remove claims of universal target support from the build system."Tom Finegan
2015-05-13Merge "mips msa vp9 idct 8x8 optimization"Parag Salasakar
2015-05-12Remove claims of universal target support from the build system.Tom Finegan
These targets no longer build (PPC support was removed from libvpx). Remove the dead code and misleading help output. BUG=https://code.google.com/p/webm/issues/detail?id=997 Change-Id: Ib35614806adeae970f3821da0d8dbcc54ab8d868
2015-05-12Merge "Remove unneeded variable declaration"Yunqing Wang
2015-05-12Merge "Protect new metric computation with use_highbitdepth flag"Yaowu Xu
2015-05-12Protect new metric computation with use_highbitdepth flagYaowu Xu
The computation of new metrics is not supported yet in highbitdepth mode. This commit adds protection to make sure the computation is done only when highbitdepth is not on. This protection shall be revised when support of highbitdpeth computation is added. This resolves the encoder crash when configured with both --enable-internal-stats --enable-vp9-highbitdepth Change-Id: Id9f4bcc4fa26d9ca0e9eabade83f3f88a5b212e6
2015-05-12Remove unneeded variable declarationYunqing Wang
This patch fixed the following warning: src\third_party\libvpx\source\libvpx\vp9\encoder\vp9_pickmode.c(1607) : warning C6246: Local declaration of 'this_mode' hides declaration of the same name in outer scope. Change-Id: I1d93c4a47a13cb13089fec5bd61e8b58e6cd8d58