summaryrefslogtreecommitdiff
path: root/libtiff/tif_codec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtiff/tif_codec.c')
-rw-r--r--libtiff/tif_codec.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/libtiff/tif_codec.c b/libtiff/tif_codec.c
index 931eb093..ef9a8123 100644
--- a/libtiff/tif_codec.c
+++ b/libtiff/tif_codec.c
@@ -80,8 +80,8 @@ static int NotConfigured(TIFF*, int);
#define TIFFInitWebP NotConfigured
#endif
-/*
- * Compression schemes statically built into the library.
+/**
+ * @brief Built-in compression schemes.
*/
const TIFFCodec _TIFFBuiltinCODECS[] = {
{ "None", COMPRESSION_NONE, TIFFInitDumpMode },
@@ -134,17 +134,6 @@ NotConfigured(TIFF* tif, int scheme)
return (1);
}
-/************************************************************************/
-/* TIFFIsCODECConfigured() */
-/************************************************************************/
-
-/**
- * Check whether we have working codec for the specific coding scheme.
- *
- * @return returns 1 if the codec is configured and working. Otherwise
- * 0 will be returned.
- */
-
int
TIFFIsCODECConfigured(uint16_t scheme)
{