diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2014-09-29 18:48:47 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-09-29 18:48:47 +0100 |
commit | 65731d1c3ee1f9ffc811aa290fd520cdb50ff11f (patch) | |
tree | b0cb0a76b50dc80abbf64dda4cec2ab35a6b121c /hw/display | |
parent | 8f95ce2e4ceecc861dc20038871c6c0df7d40842 (diff) |
hw/display/blizzard.c: Delete unused function blizzard_rgb2yuv
The function blizzard_rgb2yuv() is unused; delete it.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1410723223-17711-2-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'hw/display')
-rw-r--r-- | hw/display/blizzard.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/hw/display/blizzard.c b/hw/display/blizzard.c index 55c0ddf00b..92b1fac563 100644 --- a/hw/display/blizzard.c +++ b/hw/display/blizzard.c @@ -134,14 +134,6 @@ static const int blizzard_iformat_bpp[0x10] = { 0, 0, 0, 0, 0, 0, }; -static inline void blizzard_rgb2yuv(int r, int g, int b, - int *y, int *u, int *v) -{ - *y = 0x10 + ((0x838 * r + 0x1022 * g + 0x322 * b) >> 13); - *u = 0x80 + ((0xe0e * b - 0x04c1 * r - 0x94e * g) >> 13); - *v = 0x80 + ((0xe0e * r - 0x0bc7 * g - 0x247 * b) >> 13); -} - static void blizzard_window(BlizzardState *s) { DisplaySurface *surface = qemu_console_surface(s->con); |