- 21 May, 2013 - 11 commits
-
-
Johann authored
-
James Zern authored
* changes: msvs: Don't link to winmm.lib msvs: Pass dependency project vcxproj files to the project generation script msvs: Support producing both vcproj and vcxproj depending on configure variables configure: Add x86*-vs10/11 targets gen_msvs_sln: Support producing versions 10 and 11, handle vcxproj files Add a new script for producing vcxproj files
-
Marco Paniconi authored
-
Marco Paniconi authored
Use a separate counter for resetting the pattern upon a change in temporal layers, and set/initialize the layer context parameters for the new temporal layer state. Also moved the setting of layer configuation in init_config() to a separate function. Change-Id: Ic7fc023a1e5490020509e107004645098f4c00f0
-
Martin Storsjo authored
Change-Id: Ie7b83ad696e4743c844df8e9ef5899aca65cc92e
-
Martin Storsjo authored
Linking to this library doesn't seem to be necessary, and this library isn't available in the windows phone API subset. Change-Id: I179837d6f9c7407f1cb6101533dc978316a30adf
-
Martin Storsjo authored
This is required since the dependencies are specified within the vcxproj files themselves, not in the solution file. This doesn't do anything for the old vcproj files. Change-Id: If7818d8e9dbf4aac5bcb34abe648946cf24db51c
-
Martin Storsjo authored
Change-Id: Ifa27c7064118c24401ea4e55a64e129c4f503cd5
-
Martin Storsjo authored
Change-Id: I4be8ca12ccdce86d1409b7121cff94b4784ab31c
-
Martin Storsjo authored
Change-Id: I3c23a2ce383d9291a823d2be7364608ce0e01570
-
Martin Storsjo authored
Change-Id: If02a7b85f417b9693dcdab73573fc13f67e17016
-
- 15 May, 2013 - 1 commit
-
-
Martin Storsjo authored
Using == ended up matching no matter what string was passed in (which so far only happened if when the -thumb parameter was set). Change-Id: Ifa7b611d016d984aec3b697b5a1a07839f7508dc
-
- 13 May, 2013 - 2 commits
-
-
Martin Storsjo authored
Change-Id: I5a46645064c2fe1c13287cf06c3244820b4e699e
-
Martin Storsjo authored
Currently this only supports thumb2. This involves rewriting certain instructions that can't be expressed in thumb2 into equivalent instruction sequences. The regexps for rewriting are currently written pretty narrowly, only covering the exact cases currently encountered in the code base. No IT instructions are added (since that would require more logic than plain regexps), so using the thumb mode requires enabling -mimplicit-it=always/thumb. Change-Id: I1f676ad1d351381f02bcf00105102aa8dd7ae364
-
- 03 May, 2013 - 2 commits
-
-
Johann authored
-
John Koleszar authored
-
- 02 May, 2013 - 3 commits
-
-
Johann authored
When using 'always_inline' 'inline' should be specified as well. Thanks to Digit for identifying this: https://chromiumcodereview.appspot.com/14820003/ Change-Id: If1647fac91b85ecabe6d3cd04290d5c08c5a11ea
-
Johann authored
-
changjun.yang authored
Change-Id: I3fe24001cda08d7322b630f65c5e3fad881f8036
-
- 01 May, 2013 - 1 commit
-
-
Martin Storsjo authored
The support for detecting hardfp toolchains in af9dd50e is a step in the right direction, but that particular switch case isn't executed at all if the toolchain variable is set. This fixes cross building from x86 ubuntu to armhf ubuntu, in configurations such as "CROSS=arm-linux-gnueabihf- ./configure --target=armv7-linux-gcc". Change-Id: I6f141361e40374fbab564f9196d90e598fe9a0f6
-
- 30 Apr, 2013 - 1 commit
-
-
John Koleszar authored
-
- 29 Apr, 2013 - 2 commits
-
-
Jim Bankoski authored
Change-Id: Ia16f167d904d53bc38cb3a8c841c6c52daad500f
-
Johann authored
Fixes build warning in MSVC: vp9\vp9_dx_iface.c(420) : warning C4018: '<' : signed/unsigned mismatch vp9\vp9_dx_iface.c(423) : warning C4018: '<' : signed/unsigned mismatch Change-Id: Ia238071aee94b2f882c1e74c380adc3df506dfb6
-
- 26 Apr, 2013 - 5 commits
-
-
Johann authored
-
changjun.yang authored
Change-Id: I5c49a983ced45197e1035fa5615d71b0bdad4109
-
Johann authored
Change-Id: I7486970c57cda75d26ec2c6d1f36bd668c955f66
-
Johann authored
-
Johann authored
vp9_dequantize_x86 has only sse2 functions. vp9_dct_sse2_intrinsics has no namespace collision and can drop _intrinsics. vp9_idct_mmx.h is unused. Change-Id: Ic16e31fb372a1d1e841a62ecb4189fe8f95808ec
-
- 25 Apr, 2013 - 2 commits
- 24 Apr, 2013 - 3 commits
-
-
Johann authored
This can be manually overridden with --libc= Change-Id: I0b857c751d5dc5423f79785e934bc8a714758e75
-
Johann authored
-
Johann authored
The only reason for the _intrinsics part of the file name was for the interim period where only one of the functions was redone and the base file name was the same. Change-Id: I7851154f1633d48821bee885b1cadb2148e65a23
-
- 23 Apr, 2013 - 2 commits
-
-
Johann authored
Clean Windows build warnings: warning C4028: formal parameter <N> different from declaration This was fixed independently in master and experimental but the fixes were in opposite directions. One added const to the declaration and the other removed it from the implementation. Also update the variable names. This doesn't modify the data so call it ref, matching the functions in the vicinity, rather than dst. Change-Id: I2ffc6b4a874cb98c26487b909d20a5e099b5582c
-
Johann authored
Fix warning on windows: signed/unsigned mismatch on lines 415, 454 Comparison was between size_t data_sz >= int index_sz on 415 and unsigned int data_sz >= int index_sz on 454. Both might be changed to size_t but that would be tracing and replacing all comparisons is outside the scope of this change. In the rest of these two functions ensure unsigned values are used consistently. Change-Id: I922b399ceca612a92f44b9d1d331c1c6bae9d768
-
- 19 Apr, 2013 - 3 commits
-
-
Scott LaVarnway authored
-
Scott LaVarnway authored
-
Scott LaVarnway authored
-
- 18 Apr, 2013 - 2 commits
-
-
John Koleszar authored
-
James Zern authored
should have no effect as they are used in nestegg mappings, but aligns the defines with vpxenc.c Change-Id: Ic2295cd63701894c2963274239602b54cbb58631
-