mirror of
https://github.com/webmproject/libwebp.git
synced 2024-12-26 13:48:21 +01:00
filters_sse2: import Chromium change
VerticalUnfilter_SSE2 has long been disabled due to a crash in an Android emulator that hasn't reproduced elsewhere (crbug.com/654974). this synchronizes the code for now to avoid needing to locally edit the file on import. Bug: 1141126 Change-Id: Ib61aeab93caaff1759606566b9e499eaac1576cf
This commit is contained in:
parent
cc3577e9b9
commit
47f64f6edd
@ -320,7 +320,12 @@ extern void VP8FiltersInitSSE2(void);
|
||||
|
||||
WEBP_TSAN_IGNORE_FUNCTION void VP8FiltersInitSSE2(void) {
|
||||
WebPUnfilters[WEBP_FILTER_HORIZONTAL] = HorizontalUnfilter_SSE2;
|
||||
#if defined(CHROMIUM)
|
||||
// TODO(crbug.com/654974)
|
||||
(void)VerticalUnfilter_SSE2;
|
||||
#else
|
||||
WebPUnfilters[WEBP_FILTER_VERTICAL] = VerticalUnfilter_SSE2;
|
||||
#endif
|
||||
WebPUnfilters[WEBP_FILTER_GRADIENT] = GradientUnfilter_SSE2;
|
||||
|
||||
WebPFilters[WEBP_FILTER_HORIZONTAL] = HorizontalFilter_SSE2;
|
||||
|
Loading…
Reference in New Issue
Block a user