From 94b1e38e7b95863d126759f652568671b70a1be0 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sat, 8 Sep 2007 18:05:06 +0000 Subject: remove dead code git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@406 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- lib/libpgm2.c | 29 ----------------------------- 1 file changed, 29 deletions(-) (limited to 'lib/libpgm2.c') diff --git a/lib/libpgm2.c b/lib/libpgm2.c index 7a04f09b..9f607d73 100644 --- a/lib/libpgm2.c +++ b/lib/libpgm2.c @@ -57,35 +57,6 @@ putus(unsigned short const n, -void -pgm_writerawsample(FILE * const fileP, - gray const val, - gray const maxval) { - - if (maxval < 256) { - /* Samples fit in one byte, so write just one byte */ - int rc; - rc = putc(val, fileP); - if (rc == EOF) - pm_error("Error writing single byte sample to file"); - } else { - /* Samples are too big for one byte, so write two */ - int n_written; - unsigned char outval[2]; - /* We could save a few instructions if we exploited the internal - format of a gray, i.e. its endianness. Then we might be able - to skip the shifting and anding. - */ - outval[0] = val >> 8; - outval[1] = val & 0xFF; - n_written = fwrite(&outval, 2, 1, fileP); - if (n_written == 0) - pm_error("Error writing double byte sample to file"); - } -} - - - static void format1bpsRow(const gray * const grayrow, unsigned int const cols, -- cgit 1.4.1