Backed out changeset b88172246b66 due to Win32 debug failures.
[mozilla-central.git] / gfx / ycbcr / ycbcr_to_rgb565.cpp
blob810e6b87c0dcde9f5554f80157715f31a58bf88a
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 2002
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
23 * Tom Brinkman <reportbase@gmail.com>
25 * Alternatively, the contents of this file may be used under the terms of
26 * either the GNU General Public License Version 2 or later (the "GPL"), or
27 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
39 #include "ycbcr_to_rgb565.h"
41 //The logic for have_ycbcr_to_rgb565 is taken from pixman-cpu.c
43 #if !defined (HAVE_ARM_NEON)
45 int have_ycbcr_to_rgb565 ()
47 return 0;
50 #else
52 #include <stdio.h>
53 #include <stdlib.h>
54 #include <string.h>
55 #include <unistd.h>
56 #include <sys/types.h>
57 #include <sys/stat.h>
58 #include <sys/mman.h>
59 #include <fcntl.h>
60 #include <elf.h>
62 #ifdef ANDROID
64 int have_ycbcr_to_rgb565 ()
66 static int have_ycbcr_to_rgb565_initialized = 0;
67 static int arm_has_neon = 0;
68 if (!have_ycbcr_to_rgb565_initialized)
70 have_ycbcr_to_rgb565_initialized = 1;
72 char buf[1024];
73 const char* ver_token = "CPU architecture: ";
74 FILE* f = fopen("/proc/cpuinfo", "r");
75 if (!f) {
76 return 0;
79 fread(buf, sizeof(char), 1024, f);
80 arm_has_neon = strstr(buf, "neon") != NULL;
81 fclose(f);
83 return arm_has_neon;
86 #else
88 int have_ycbcr_to_rgb565 ()
90 static int have_ycbcr_to_rgb565_initialized = 0;
91 static int arm_has_neon = 0;
92 if (!have_ycbcr_to_rgb565_initialized)
94 have_ycbcr_to_rgb565_initialized = 1;
95 int fd;
96 Elf32_auxv_t aux;
98 fd = open ("/proc/self/auxv", O_RDONLY);
99 if (fd >= 0)
101 while (read (fd, &aux, sizeof(Elf32_auxv_t)) == sizeof(Elf32_auxv_t))
103 if (aux.a_type == AT_HWCAP)
105 uint32_t hwcap = aux.a_un.a_val;
106 arm_has_neon = (hwcap & 4096) != 0;
107 break;
110 close (fd);
114 return arm_has_neon;
117 #endif //ANDROID
119 #endif //_MSC_VER