summaryrefslogtreecommitdiff
path: root/camlibs/sq905
diff options
context:
space:
mode:
authorMarcus Meissner <marcus@jet.franken.de>2007-05-16 19:02:25 +0000
committerMarcus Meissner <marcus@jet.franken.de>2007-05-16 19:02:25 +0000
commit3d4e3586a87093abf9b9dd41f15ffa8b1aac3882 (patch)
tree98cd7463b2f1c10c89009f9c9442ca14ba6078b0 /camlibs/sq905
parent1f8279d77404bcd2686eb133fba9d45c7dd1a570 (diff)
downloadlibgphoto2-3d4e3586a87093abf9b9dd41f15ffa8b1aac3882.tar.gz
made 1 function static
git-svn-id: https://svn.code.sf.net/p/gphoto/code/trunk/libgphoto2@10231 67ed7778-7388-44ab-90cf-0a291f65f57c
Diffstat (limited to 'camlibs/sq905')
-rw-r--r--camlibs/sq905/postprocess.c4
-rw-r--r--camlibs/sq905/sq905.h3
2 files changed, 4 insertions, 3 deletions
diff --git a/camlibs/sq905/postprocess.c b/camlibs/sq905/postprocess.c
index fbd45f9d3..d487abadd 100644
--- a/camlibs/sq905/postprocess.c
+++ b/camlibs/sq905/postprocess.c
@@ -45,6 +45,9 @@
#endif
+static int
+decode_panel (unsigned char *panel_out, unsigned char *panel,
+ int panelwidth, int height, int color);
int
sq_decompress (SQModel model, unsigned char *output, unsigned char *data,
@@ -123,6 +126,7 @@ sq_decompress (SQModel model, unsigned char *output, unsigned char *data,
return(GP_OK);
}
+static
int decode_panel (unsigned char *panel_out, unsigned char *panel,
int panelwidth, int height, int color) {
/* Here, "panelwidth" signifies width of panel_out
diff --git a/camlibs/sq905/sq905.h b/camlibs/sq905/sq905.h
index 6c2734419..d70c91a48 100644
--- a/camlibs/sq905/sq905.h
+++ b/camlibs/sq905/sq905.h
@@ -58,8 +58,5 @@ sq_preprocess (SQModel model, int comp_ratio,
int
sq_decompress (SQModel model, unsigned char *output, unsigned char *data,
int w, int h);
-int
-decode_panel (unsigned char *panel_out, unsigned char *panel,
- int panelwidth, int height, int color);
#endif