diff options
author | Moonchild <moonchild@palemoon.org> | 2020-05-15 09:01:29 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-05-20 13:55:43 +0000 |
commit | 3ab7bd811f8f901806e51c046b6f032c260dc64a (patch) | |
tree | ed4638c20d7e3f9b47f8dafae7ce79e3dd97043c | |
parent | 8c4892fb45ceeb870ff7f893a546cf33fafee7c4 (diff) | |
download | UXP-3ab7bd811f8f901806e51c046b6f032c260dc64a.tar UXP-3ab7bd811f8f901806e51c046b6f032c260dc64a.tar.gz UXP-3ab7bd811f8f901806e51c046b6f032c260dc64a.tar.lz UXP-3ab7bd811f8f901806e51c046b6f032c260dc64a.tar.xz UXP-3ab7bd811f8f901806e51c046b6f032c260dc64a.zip |
Issue #80 - De-unify gfx/ycbcr
-rw-r--r-- | gfx/ycbcr/moz.build | 2 | ||||
-rw-r--r-- | gfx/ycbcr/scale_yuv_argb.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gfx/ycbcr/moz.build b/gfx/ycbcr/moz.build index 04855e2e9..092079899 100644 --- a/gfx/ycbcr/moz.build +++ b/gfx/ycbcr/moz.build @@ -8,7 +8,7 @@ EXPORTS += [ 'YCbCrUtils.h', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'scale_yuv_argb.cpp', 'ycbcr_to_rgb565.cpp', 'YCbCrUtils.cpp', diff --git a/gfx/ycbcr/scale_yuv_argb.cpp b/gfx/ycbcr/scale_yuv_argb.cpp index 91a96cb9f..13b16c802 100644 --- a/gfx/ycbcr/scale_yuv_argb.cpp +++ b/gfx/ycbcr/scale_yuv_argb.cpp @@ -9,6 +9,8 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include "scale_yuv_argb.h" + #include "libyuv/scale.h" #include <assert.h> |