diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /media/libvpx/bug1137614.patch | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'media/libvpx/bug1137614.patch')
-rw-r--r-- | media/libvpx/bug1137614.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/media/libvpx/bug1137614.patch b/media/libvpx/bug1137614.patch new file mode 100644 index 000000000..6f4e35088 --- /dev/null +++ b/media/libvpx/bug1137614.patch @@ -0,0 +1,23 @@ +diff --git a/media/libvpx/vp8/encoder/block.h b/media/libvpx/vp8/encoder/block.h +--- a/media/libvpx/vp8/encoder/block.h ++++ b/media/libvpx/vp8/encoder/block.h +@@ -93,17 +93,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 |