- 13 Aug, 2014 - 1 commit
-
-
James Zern authored
Change-Id: I38dad398844ee424a7a92a745ab703645018d02b
-
- 11 Aug, 2014 - 3 commits
-
-
Dmitry Kovalev authored
-
Jingning Han authored
-
Jingning Han authored
-
- 10 Aug, 2014 - 1 commit
-
-
Deb Mukherjee authored
-
- 09 Aug, 2014 - 3 commits
-
-
Tom Finegan authored
-
Marco Paniconi authored
-
Dmitry Kovalev authored
Change-Id: Ia88eebf10c8620dadaa66722543db291e44fe104
-
- 08 Aug, 2014 - 15 commits
-
-
Marco Paniconi authored
Change-Id: Icb9918dd38d15061d62852e6a2d905e8ceb2c1ac
-
Deb Mukherjee authored
Adds a couple of CONFIG_SPATIAL_SVC macros to allow compilation when spatial-svc is disabled. Change-Id: I67f84406d1d3fa26f225d9c6518161a0841f2d29
-
Dmitry Kovalev authored
-
Adrian Grange authored
-
Tom Finegan authored
- Split vpxenc() into vpxenc() and vpxenc_pipe(). - Drop all but one positional param (the input file) in favor of passing args directly to vpxenc. - Add an extra lossless test that explicitly sets min-q and max-q to 0. Change-Id: I7d5f7b495f8b9447388c5f459bc9f6de2214caf2
-
Dmitry Kovalev authored
-
Dmitry Kovalev authored
We had a very complicated way to initialize cpi->pass from cfg->g_pass: switch (cfg->g_pass) { case VPX_RC_ONE_PASS: oxcf->mode = ONE_PASS_GOOD; break; case VPX_RC_FIRST_PASS: oxcf->mode = TWO_PASS_FIRST; break; case VPX_RC_LAST_PASS: oxcf->mode = TWO_PASS_SECOND_BEST; break; } cpi->pass = get_pass(oxcf->mode). Now pass is moved to VP9EncoderConfig and initialization is simple: switch (cfg->g_pass) { case VPX_RC_ONE_PASS: oxcf->pass = 0; break; case VPX_RC_FIRST_PASS: oxcf->pass = 1; break; case VPX_RC_LAST_PASS: oxcf->pass = 2; break; } Change-Id: I8f582203a4575f5e39b071598484a8ad2b72e0d9
-
Dmitry Kovalev authored
-
Adrian Grange authored
Replaced encoder and decoder functions to get a pointer to a reference frame with a common function, vp9_get_ref_frame, and simplified it. Change-Id: Icb206fcce8caace3bfd1db3dbfa318dde79043ee
-
Adrian Grange authored
This was shadowing the use of error_resilient_mode, but with the opposite sense. Change-Id: Ie4d30263a304fe4b3e94f0c7741db6888cc6afd8
-
Alex Converse authored
-
Alex Converse authored
-
James Zern authored
-
levytamar82 authored
in the sub_pixel_*variance* function the dst is aligned to 16 bytes and not to 32 bytes - now load unaligned data Change-Id: I2e0b9745543697efc56fefa32857ea10117af135
-
Tom Finegan authored
Change-Id: Iff403dfb4c8face0494f0dba840ce91f51e9ca04
-
- 07 Aug, 2014 - 17 commits
-
-
James Zern authored
-
Tom Finegan authored
-
James Zern authored
-
Alex Converse authored
Fix the interaction between active map and reuse_inter_pred_sby. The reuse_inter_pred_sby feature expects inter predictors to already be built, but blocks with active map on skip this step. Change-Id: Ibb2bf0d228f678935d82a0ede9cb0919ab7c8878
-
Alex Converse authored
Change-Id: Ib7497ba08696765cbc1b2cc4218d37f4298f278c
-
Tom Finegan authored
The disabled tests require a mode parameter that has been removed from the ssvc example. BUG=https://code.google.com/p/webm/issues/detail?id=833 Change-Id: I1a5d67628ed769cc5372c4a864f33d5569b6eb13
-
Jim Bankoski authored
-
Dmitry Kovalev authored
Change-Id: Ia3001ae5c44faee3978fc3eb7a027cd9712a0373
-
Marco Paniconi authored
-
levytamar82 authored
in the function sad32x32x4d and sad64x64x4d the source is aligned to 16 bytes and not to 32 bytes - the load is now unaligned. Change-Id: I922fdba56d0936b5cf72e4503519f185645a168c
-
Dmitry Kovalev authored
-
Marco Paniconi authored
Change-Id: I1827efe2126501a4a5637ee3ae85233d7526bc0e
-
James Zern authored
-
Tom Finegan authored
Move vpxenc() from tools_common.sh to vpxenc.sh. Change-Id: If3bc1e8616f7e0334d39b560946e467482fe5cf4
-
Deb Mukherjee authored
-
James Zern authored
Change-Id: Ic49e290c7c88c55e730a0b2b0eb16ee3d0f120e7
-
Alex Converse authored
-