summaryrefslogtreecommitdiff
path: root/libgphoto2
diff options
context:
space:
mode:
authorSijawusz Pur Rahnama <sija@sija.pl>2020-05-25 17:49:22 +0200
committerSijawusz Pur Rahnama <sija@sija.pl>2020-05-25 17:55:09 +0200
commitfd0be84db57825472483432390fc4b87d29b4fbe (patch)
tree24b6a09976a57c208369ab75246cf75356f8c5bb /libgphoto2
parentacafc3324695b6f51ada104af461fdf8905b03cd (diff)
downloadlibgphoto2-fd0be84db57825472483432390fc4b87d29b4fbe.tar.gz
Fix typos throughout the codebase
Diffstat (limited to 'libgphoto2')
-rw-r--r--libgphoto2/ahd_bayer.c6
-rw-r--r--libgphoto2/bayer.c6
-rw-r--r--libgphoto2/bayer.h2
-rw-r--r--libgphoto2/gphoto2-filesys.c2
4 files changed, 8 insertions, 8 deletions
diff --git a/libgphoto2/ahd_bayer.c b/libgphoto2/ahd_bayer.c
index 5254d28dc..98d44b68a 100644
--- a/libgphoto2/ahd_bayer.c
+++ b/libgphoto2/ahd_bayer.c
@@ -14,7 +14,7 @@
* The algorithm is based upon the paper
*
* \par
- * Adaptive Homogeneity-Directed Democsaicing Algoritm,
+ * Adaptive Homogeneity-Directed Democsaicing Algorithm,
* Keigo Hirakawa and Thomas W. Parks, presented in the
* IEEE Transactions on Image Processing, vol. 14, no. 3, March 2005.
*
@@ -384,7 +384,7 @@ int get_diffs_row2(unsigned char * hom_buffer_h, unsigned char *hom_buffer_v,
* \param image the linear RGB array as both input and output
* \param w width of the above array
* \param h height of the above array
- * \param tile how the 2x2 bayer array is layed out
+ * \param tile how the 2x2 bayer array is laid out
*
* This function interpolates a bayer array which has been pre-expanded
* by gp_bayer_expand() to an RGB image. It applies the method of adaptive
@@ -622,7 +622,7 @@ int gp_ahd_interpolate (unsigned char *image, int w, int h, BayerTile tile)
* \param w width of the above array
* \param h height of the above array
* \param output RGB output array (linear, 3 bytes of R,G,B for every pixel)
- * \param tile how the 2x2 bayer array is layed out
+ * \param tile how the 2x2 bayer array is laid out
*
* A regular CCD uses a raster of 2 green, 1 blue and 1 red components to
* cover a 2x2 pixel area. The camera or the driver then interpolates a
diff --git a/libgphoto2/bayer.c b/libgphoto2/bayer.c
index 36414017e..48537c057 100644
--- a/libgphoto2/bayer.c
+++ b/libgphoto2/bayer.c
@@ -59,7 +59,7 @@ gp_bayer_accrue (unsigned char *image, int w, int h, int x0, int y0,
* \param w width of the above array
* \param h height of the above array
* \param output RGB output array (linear, 3 bytes of R,G,B for every pixel)
- * \param tile how the 2x2 bayer array is layed out
+ * \param tile how the 2x2 bayer array is laid out
*
* A regular CCD uses a raster of 2 green, 1 blue and 1 red components to
* cover a 2x2 pixel area. The camera or the driver then interpolates a
@@ -135,7 +135,7 @@ gp_bayer_expand (unsigned char *input, int w, int h, unsigned char *output,
* \param image the linear RGB array as both input and output
* \param w width of the above array
* \param h height of the above array
- * \param tile how the 2x2 bayer array is layed out
+ * \param tile how the 2x2 bayer array is laid out
*
* This function interpolates a bayer array which has been pre-expanded
* by gp_bayer_expand() to an RGB image. It uses various interpolation
@@ -356,7 +356,7 @@ gp_bayer_accrue (unsigned char *image, int w, int h, int x0, int y0,
* \param w width of the above array
* \param h height of the above array
* \param output RGB output array (linear, 3 bytes of R,G,B for every pixel)
- * \param tile how the 2x2 bayer array is layed out
+ * \param tile how the 2x2 bayer array is laid out
*
* A regular CCD uses a raster of 2 green, 1 blue and 1 red components to
* cover a 2x2 pixel area. The camera or the driver then interpolates a
diff --git a/libgphoto2/bayer.h b/libgphoto2/bayer.h
index bfef7b05a..ad96e1b29 100644
--- a/libgphoto2/bayer.h
+++ b/libgphoto2/bayer.h
@@ -25,7 +25,7 @@
#define __BAYER_H__
/**
- * \brief how the bayer CCD array is layed out
+ * \brief how the bayer CCD array is laid out
*
* This enumeration defines how the CCD bayer array is laid out.
*/
diff --git a/libgphoto2/gphoto2-filesys.c b/libgphoto2/gphoto2-filesys.c
index 8726e9def..4afbf1613 100644
--- a/libgphoto2/gphoto2-filesys.c
+++ b/libgphoto2/gphoto2-filesys.c
@@ -97,7 +97,7 @@ typedef struct _CameraFilesystemFolder {
/**
* The default number of pictures to keep in the internal cache,
- * can be overriden by settings.
+ * can be overridden by settings.
*/
#define PICTURES_TO_KEEP 2
/**