Index: third_party/libjpeg_turbo/jsimd_none.c |
=================================================================== |
--- third_party/libjpeg_turbo/jsimd_none.c (revision 95020) |
+++ third_party/libjpeg_turbo/jsimd_none.c (working copy) |
@@ -2,10 +2,11 @@ |
* jsimd_none.c |
* |
* Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB |
- * Copyright 2009 D. R. Commander |
+ * Copyright 2009-2011 D. R. Commander |
* |
* Based on the x86 SIMD extension for IJG JPEG library, |
* Copyright (C) 1999-2006, MIYASAKA Masaru. |
+ * For conditions of distribution and use, see copyright notice in jsimdext.inc |
* |
* This file contains stubs for when there is no SIMD support available. |
*/ |
@@ -24,6 +25,12 @@ |
} |
GLOBAL(int) |
+jsimd_can_rgb_gray (void) |
+{ |
+ return 0; |
+} |
+ |
+GLOBAL(int) |
jsimd_can_ycc_rgb (void) |
{ |
return 0; |
@@ -37,6 +44,13 @@ |
} |
GLOBAL(void) |
+jsimd_rgb_gray_convert (j_compress_ptr cinfo, |
+ JSAMPARRAY input_buf, JSAMPIMAGE output_buf, |
+ JDIMENSION output_row, int num_rows) |
+{ |
+} |
+ |
+GLOBAL(void) |
jsimd_ycc_rgb_convert (j_decompress_ptr cinfo, |
JSAMPIMAGE input_buf, JDIMENSION input_row, |
JSAMPARRAY output_buf, int num_rows) |