mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 21:01:08 +00:00
ea398a02dc
Removes armv6 and mmx optimizations. Removes x86inc.asm distinction. This was put in place because of issues with 32bit PIC builds but x86inc.asm has since been improved to support those. Switch to '.S' for arm assembly. There is now an #include for a helper file. All build systems appear to support .S so switch to it for consistency. Remove clang-cl.patch. There have been numerous changes upstream to improve clang support. MozReview-Commit-ID: IHVTbqSY2U7 --HG-- extra : rebase_source : 788796674e3eabed0c178ca327bc5e7628e03382
24 lines
873 B
Diff
24 lines
873 B
Diff
diff --git a/media/libvpx/libvpx/vp8/encoder/block.h b/media/libvpx/libvpx/vp8/encoder/block.h
|
|
--- a/media/libvpx/libvpx/vp8/encoder/block.h
|
|
+++ b/media/libvpx/libvpx/vp8/encoder/block.h
|
|
@@ -87,17 +87,18 @@ typedef struct macroblock {
|
|
int rddiv;
|
|
int rdmult;
|
|
unsigned int *mb_activity_ptr;
|
|
int *mb_norm_activity_ptr;
|
|
signed int act_zbin_adj;
|
|
signed int last_act_zbin_adj;
|
|
|
|
int *mvcost[2];
|
|
- int *mvsadcost[2];
|
|
+ /* MSVC generates code that thinks this is 16-byte aligned */
|
|
+ DECLARE_ALIGNED(16, int*, mvsadcost[2]);
|
|
int (*mbmode_cost)[MB_MODE_COUNT];
|
|
int (*intra_uv_mode_cost)[MB_MODE_COUNT];
|
|
int (*bmode_costs)[10][10];
|
|
int *inter_bmode_costs;
|
|
int (*token_costs)[COEF_BANDS][PREV_COEF_CONTEXTS][MAX_ENTROPY_TOKENS];
|
|
|
|
/* These define limits to motion vector components to prevent
|
|
* them from extending outside the UMV borders.
|