Remove symbian target and associated files. These targets are no longer maintained. Change-Id: I923103006c439849fc015c1ac45ee7a5443ebc6d
diff --git a/README b/README index dddc5ea..49bf7da 100644 --- a/README +++ b/README
@@ -44,11 +44,9 @@ armv5te-linux-rvct armv5te-linux-gcc - armv5te-symbian-gcc armv6-darwin-gcc armv6-linux-rvct armv6-linux-gcc - armv6-symbian-gcc iwmmxt-linux-rvct iwmmxt-linux-gcc iwmmxt2-linux-rvct
diff --git a/build/make/configure.sh b/build/make/configure.sh index 0426f92..7a84c01 100755 --- a/build/make/configure.sh +++ b/build/make/configure.sh
@@ -678,11 +678,9 @@ case ${tgt_cc} in gcc) - if enabled iwmmxt || enabled iwmmxt2 + if enabled iwmmxt || enabled iwmmxt2 then CROSS=${CROSS:-arm-iwmmxt-linux-gnueabi-} - elif enabled symbian; then - CROSS=${CROSS:-arm-none-symbianelf-} else CROSS=${CROSS:-arm-none-linux-gnueabi-} fi @@ -692,7 +690,7 @@ arch_int=${arch_int%%te} check_add_asflags --defsym ARCHITECTURE=${arch_int} tune_cflags="-mtune=" - if enabled iwmmxt || enabled iwmmxt2 + if enabled iwmmxt || enabled iwmmxt2 then check_add_asflags -mcpu=${tgt_isa} elif enabled armv7 @@ -802,19 +800,6 @@ fi ;; - symbian*) - enable symbian - # Add the paths for the alternate libc - for d in include/libc; do - try_dir="${alt_libc}/${d}" - [ -d "${try_dir}" ] && add_cflags -I"${try_dir}" - done - for d in release/armv5/urel; do - try_dir="${alt_libc}/${d}" - [ -d "${try_dir}" ] && add_ldflags -L"${try_dir}" - done - add_cflags -DIMPORT_C= - esac ;; mips*)
diff --git a/configure b/configure index 6f20c6b..3e87f39 100755 --- a/configure +++ b/configure
@@ -83,12 +83,10 @@ all_platforms="${all_platforms} armv5te-linux-rvct" all_platforms="${all_platforms} armv5te-linux-gcc" all_platforms="${all_platforms} armv5te-none-rvct" -all_platforms="${all_platforms} armv5te-symbian-gcc" all_platforms="${all_platforms} armv6-darwin-gcc" all_platforms="${all_platforms} armv6-linux-rvct" all_platforms="${all_platforms} armv6-linux-gcc" all_platforms="${all_platforms} armv6-none-rvct" -all_platforms="${all_platforms} armv6-symbian-gcc" all_platforms="${all_platforms} iwmmxt-linux-rvct" all_platforms="${all_platforms} iwmmxt-linux-gcc" all_platforms="${all_platforms} iwmmxt2-linux-rvct"
diff --git a/vpx_ports/vpxtypes.h b/vpx_ports/vpxtypes.h index c7ccc05..f2fb089 100644 --- a/vpx_ports/vpxtypes.h +++ b/vpx_ports/vpxtypes.h
@@ -96,11 +96,6 @@ # define PRId64 "lld" # define VPX64 PRId64 typedef long vpxs64; -#elif defined(__SYMBIAN32__) -# undef PRId64 -# define PRId64 "u" -# define VPX64 PRId64 -typedef unsigned int vpxs64; #else # error "64 bit integer type undefined for this platform!" #endif
diff --git a/vpx_scale/generic/vpxscale.c b/vpx_scale/generic/vpxscale.c index 13c9122..29b1308 100644 --- a/vpx_scale/generic/vpxscale.c +++ b/vpx_scale/generic/vpxscale.c
@@ -27,7 +27,6 @@ /**************************************************************************** * Exports ****************************************************************************/ -#ifndef VPX_NO_GLOBALS void (*vp8_vertical_band_4_5_scale)(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width) = 0; void (*vp8_last_vertical_band_4_5_scale)(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width) = 0; void (*vp8_vertical_band_2_3_scale)(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width) = 0; @@ -51,9 +50,6 @@ void (*vp8_horizontal_line_2_1_scale)(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width) = 0; void (*vp8_horizontal_line_5_3_scale)(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width) = 0; void (*vp8_horizontal_line_5_4_scale)(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width) = 0; -#else -# include "vpxscale_nofp.h" -#endif typedef struct {
diff --git a/vpx_scale/include/arm/vpxscale_nofp.h b/vpx_scale/include/arm/vpxscale_nofp.h deleted file mode 100644 index 3e1a9fa..0000000 --- a/vpx_scale/include/arm/vpxscale_nofp.h +++ /dev/null
@@ -1,68 +0,0 @@ -/* - * Copyright (c) 2010 The WebM project authors. All Rights Reserved. - * - * Use of this source code is governed by a BSD-style license - * that can be found in the LICENSE file in the root of the source - * tree. An additional intellectual property rights grant can be found - * in the file PATENTS. All contributing project authors may - * be found in the AUTHORS file in the root of the source tree. - */ - - -void vp8cx_vertical_band_4_5_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_last_vertical_band_4_5_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_2_3_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_last_vertical_band_2_3_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_3_5_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_last_vertical_band_3_5_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_3_4_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_last_vertical_band_3_4_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_horizontal_line_1_2_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_3_4_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_3_5_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_2_3_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_4_5_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_vertical_band_1_2_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_last_vertical_band_1_2_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); - -void vp8cx_vertical_band_5_4_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_5_3_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_2_1_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_2_1_scale_i_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); - -void horizontal_line_4_5_scale_armv4(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void horizontal_line_2_3_scale_armv4(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void horizontal_line_3_5_scale_armv4(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void horizontal_line_3_4_scale_armv4(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void horizontal_line_1_2_scale_armv4(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vertical_band_4_5_scale_armv4(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vertical_band_2_3_scale_armv4(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vertical_band_3_5_scale_armv4(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vertical_band_3_4_scale_armv4(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vertical_band_1_2_scale_armv4(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); - -#define vp8_vertical_band_4_5_scale vertical_band_4_5_scale_armv4 -#define vp8_last_vertical_band_4_5_scale vp8cx_last_vertical_band_4_5_scale_c -#define vp8_vertical_band_2_3_scale vertical_band_2_3_scale_armv4 -#define vp8_last_vertical_band_2_3_scale vp8cx_last_vertical_band_2_3_scale_c -#define vp8_vertical_band_3_5_scale vertical_band_3_5_scale_armv4 -#define vp8_last_vertical_band_3_5_scale vp8cx_last_vertical_band_3_5_scale_c -#define vp8_vertical_band_3_4_scale vertical_band_3_4_scale_armv4 -#define vp8_last_vertical_band_3_4_scale vp8cx_last_vertical_band_3_4_scale_c -#define vp8_horizontal_line_1_2_scale horizontal_line_1_2_scale_armv4 -#define vp8_horizontal_line_3_5_scale horizontal_line_3_5_scale_armv4 -#define vp8_horizontal_line_3_4_scale horizontal_line_3_4_scale_armv4 -#define vp8_horizontal_line_4_5_scale horizontal_line_4_5_scale_armv4 -#define vp8_horizontal_line_2_3_scale horizontal_line_2_3_scale_armv4 -#define vp8_vertical_band_1_2_scale vertical_band_1_2_scale_armv4 -#define vp8_last_vertical_band_1_2_scale vp8cx_last_vertical_band_1_2_scale_c -#define vp8_vertical_band_5_4_scale vp8cx_vertical_band_5_4_scale_c -#define vp8_vertical_band_5_3_scale vp8cx_vertical_band_5_3_scale_c -#define vp8_vertical_band_2_1_scale vp8cx_vertical_band_2_1_scale_c -#define vp8_vertical_band_2_1_scale_i vp8cx_vertical_band_2_1_scale_i_c -#define vp8_horizontal_line_2_1_scale vp8cx_horizontal_line_2_1_scale_c -#define vp8_horizontal_line_5_3_scale vp8cx_horizontal_line_5_3_scale_c -#define vp8_horizontal_line_5_4_scale vp8cx_horizontal_line_5_4_scale_c
diff --git a/vpx_scale/include/generic/vpxscale_nofp.h b/vpx_scale/include/generic/vpxscale_nofp.h deleted file mode 100644 index 7b8205a..0000000 --- a/vpx_scale/include/generic/vpxscale_nofp.h +++ /dev/null
@@ -1,51 +0,0 @@ -/* - * Copyright (c) 2010 The WebM project authors. All Rights Reserved. - * - * Use of this source code is governed by a BSD-style license - * that can be found in the LICENSE file in the root of the source - * tree. An additional intellectual property rights grant can be found - * in the file PATENTS. All contributing project authors may - * be found in the AUTHORS file in the root of the source tree. - */ - - -void vp8cx_vertical_band_4_5_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_last_vertical_band_4_5_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_2_3_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_last_vertical_band_2_3_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_3_5_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_last_vertical_band_3_5_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_horizontal_line_1_2_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_3_5_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_2_3_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_4_5_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_vertical_band_1_2_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_last_vertical_band_1_2_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); - -void vp8cx_vertical_band_5_4_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_5_3_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_2_1_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_2_1_scale_i_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); - -#define vp8_vertical_band_4_5_scale vp8cx_vertical_band_4_5_scale_c -#define vp8_last_vertical_band_4_5_scale vp8cx_last_vertical_band_4_5_scale_c -#define vp8_vertical_band_2_3_scale vp8cx_vertical_band_2_3_scale_c -#define vp8_last_vertical_band_2_3_scale vp8cx_last_vertical_band_2_3_scale_c -#define vp8_vertical_band_3_5_scale vp8cx_vertical_band_3_5_scale_c -#define vp8_last_vertical_band_3_5_scale vp8cx_last_vertical_band_3_5_scale_c -#define vp8_horizontal_line_1_2_scale vp8cx_horizontal_line_1_2_scale_c -#define vp8_horizontal_line_3_5_scale vp8cx_horizontal_line_3_5_scale_c -#define vp8_horizontal_line_4_5_scale vp8cx_horizontal_line_4_5_scale_c -#define vp8_horizontal_line_2_3_scale vp8cx_horizontal_line_2_3_scale_c -#define vp8_vertical_band_1_2_scale vp8cx_vertical_band_1_2_scale_c -#define vp8_last_vertical_band_1_2_scale vp8cx_last_vertical_band_1_2_scale_c -#define vp8_vertical_band_5_4_scale vp8cx_vertical_band_5_4_scale_c -#define vp8_vertical_band_5_3_scale vp8cx_vertical_band_5_3_scale_c -#define vp8_vertical_band_2_1_scale vp8cx_vertical_band_2_1_scale_c -#define vp8_vertical_band_2_1_scale_i vp8cx_vertical_band_2_1_scale_i_c -#define vp8_horizontal_line_2_1_scale vp8cx_horizontal_line_2_1_scale_c -#define vp8_horizontal_line_5_3_scale vp8cx_horizontal_line_5_3_scale_c -#define vp8_horizontal_line_5_4_scale vp8cx_horizontal_line_5_4_scale_c
diff --git a/vpx_scale/include/symbian/vpxscale_nofp.h b/vpx_scale/include/symbian/vpxscale_nofp.h deleted file mode 100644 index 3e1a9fa..0000000 --- a/vpx_scale/include/symbian/vpxscale_nofp.h +++ /dev/null
@@ -1,68 +0,0 @@ -/* - * Copyright (c) 2010 The WebM project authors. All Rights Reserved. - * - * Use of this source code is governed by a BSD-style license - * that can be found in the LICENSE file in the root of the source - * tree. An additional intellectual property rights grant can be found - * in the file PATENTS. All contributing project authors may - * be found in the AUTHORS file in the root of the source tree. - */ - - -void vp8cx_vertical_band_4_5_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_last_vertical_band_4_5_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_2_3_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_last_vertical_band_2_3_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_3_5_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_last_vertical_band_3_5_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_3_4_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_last_vertical_band_3_4_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_horizontal_line_1_2_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_3_4_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_3_5_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_2_3_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_4_5_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_vertical_band_1_2_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_last_vertical_band_1_2_scale_c(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); - -void vp8cx_vertical_band_5_4_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_5_3_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_2_1_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_vertical_band_2_1_scale_i_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vp8cx_horizontal_line_2_1_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_5_3_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vp8cx_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); - -void horizontal_line_4_5_scale_armv4(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void horizontal_line_2_3_scale_armv4(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void horizontal_line_3_5_scale_armv4(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void horizontal_line_3_4_scale_armv4(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void horizontal_line_1_2_scale_armv4(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width); -void vertical_band_4_5_scale_armv4(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vertical_band_2_3_scale_armv4(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vertical_band_3_5_scale_armv4(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vertical_band_3_4_scale_armv4(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); -void vertical_band_1_2_scale_armv4(unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width); - -#define vp8_vertical_band_4_5_scale vertical_band_4_5_scale_armv4 -#define vp8_last_vertical_band_4_5_scale vp8cx_last_vertical_band_4_5_scale_c -#define vp8_vertical_band_2_3_scale vertical_band_2_3_scale_armv4 -#define vp8_last_vertical_band_2_3_scale vp8cx_last_vertical_band_2_3_scale_c -#define vp8_vertical_band_3_5_scale vertical_band_3_5_scale_armv4 -#define vp8_last_vertical_band_3_5_scale vp8cx_last_vertical_band_3_5_scale_c -#define vp8_vertical_band_3_4_scale vertical_band_3_4_scale_armv4 -#define vp8_last_vertical_band_3_4_scale vp8cx_last_vertical_band_3_4_scale_c -#define vp8_horizontal_line_1_2_scale horizontal_line_1_2_scale_armv4 -#define vp8_horizontal_line_3_5_scale horizontal_line_3_5_scale_armv4 -#define vp8_horizontal_line_3_4_scale horizontal_line_3_4_scale_armv4 -#define vp8_horizontal_line_4_5_scale horizontal_line_4_5_scale_armv4 -#define vp8_horizontal_line_2_3_scale horizontal_line_2_3_scale_armv4 -#define vp8_vertical_band_1_2_scale vertical_band_1_2_scale_armv4 -#define vp8_last_vertical_band_1_2_scale vp8cx_last_vertical_band_1_2_scale_c -#define vp8_vertical_band_5_4_scale vp8cx_vertical_band_5_4_scale_c -#define vp8_vertical_band_5_3_scale vp8cx_vertical_band_5_3_scale_c -#define vp8_vertical_band_2_1_scale vp8cx_vertical_band_2_1_scale_c -#define vp8_vertical_band_2_1_scale_i vp8cx_vertical_band_2_1_scale_i_c -#define vp8_horizontal_line_2_1_scale vp8cx_horizontal_line_2_1_scale_c -#define vp8_horizontal_line_5_3_scale vp8cx_horizontal_line_5_3_scale_c -#define vp8_horizontal_line_5_4_scale vp8cx_horizontal_line_5_4_scale_c
diff --git a/vpx_scale/include/vpxscale_nofp.h b/vpx_scale/include/vpxscale_nofp.h deleted file mode 100644 index a704bd9..0000000 --- a/vpx_scale/include/vpxscale_nofp.h +++ /dev/null
@@ -1,16 +0,0 @@ -/* - * Copyright (c) 2010 The WebM project authors. All Rights Reserved. - * - * Use of this source code is governed by a BSD-style license - * that can be found in the LICENSE file in the root of the source - * tree. An additional intellectual property rights grant can be found - * in the file PATENTS. All contributing project authors may - * be found in the AUTHORS file in the root of the source tree. - */ - - -#if defined(__S60_V20__) || defined(__SYMBIAN32__) && !defined(__WINS__) -#include "symbian\vpxscale_nofp.h" -#else -#include "generic\vpxscale_nofp.h" -#endif