diff options
| -rw-r--r-- | apps/plugins/lib/read_image.c | 1 | ||||
| -rw-r--r-- | apps/recorder/jpeg_load.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/lib/read_image.c b/apps/plugins/lib/read_image.c index 0420ed8..8b6d784 100644 --- a/apps/plugins/lib/read_image.c +++ b/apps/plugins/lib/read_image.c @@ -23,6 +23,7 @@ #include <plugin.h> #include "feature_wrappers.h" +#include "read_image.h" int read_image_file(const char* filename, struct bitmap *bm, int maxsize, int format, const struct custom_format *cformat) diff --git a/apps/recorder/jpeg_load.c b/apps/recorder/jpeg_load.c index d05671c..8b2c3f2 100644 --- a/apps/recorder/jpeg_load.c +++ b/apps/recorder/jpeg_load.c @@ -1689,7 +1689,7 @@ INLINE int huff_decode_ac(struct jpeg *p_jpeg, struct derived_tbl* tbl) return s; } -struct img_part *store_row_jpeg(void *jpeg_args) +static struct img_part *store_row_jpeg(void *jpeg_args) { struct jpeg *p_jpeg = (struct jpeg*) jpeg_args; unsigned int width = p_jpeg->x_mbl << p_jpeg->h_scale[1]; |