diff options
author | Andrew Mahone <andrew.mahone@gmail.com> | 2009-05-09 10:32:07 +0000 |
---|---|---|
committer | Andrew Mahone <andrew.mahone@gmail.com> | 2009-05-09 10:32:07 +0000 |
commit | 59e70b50d8532568b5df09b01b9f0df042766267 (patch) | |
tree | 1c032550bd4b597c9dcc3035ace070fcc965a341 /apps/recorder/bmp.h | |
parent | e3b1d78dfc06ec69248558630d3a4afd7c1ec9c2 (diff) |
Inline output_row_8_native when building bmp.c in core without HAVE_JPEG or HAVE_BMP_SCALING.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20886 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder/bmp.h')
-rw-r--r-- | apps/recorder/bmp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/recorder/bmp.h b/apps/recorder/bmp.h index 6437e42d26..c6a34dfd94 100644 --- a/apps/recorder/bmp.h +++ b/apps/recorder/bmp.h @@ -212,7 +212,7 @@ int read_bmp_fd(int fd, int format, const struct custom_format *cformat); -#if LCD_DEPTH > 1 +#if LCD_DEPTH > 1 && (defined(PLUGIN) || defined(HAVE_BMP_SCALING) || defined(HAVE_JPEG)) void output_row_8_native(uint32_t row, void * row_in, struct scaler_context *ctx); #endif |