Cleanup: remove duplicated code.
authorCarl Hetherington <cth@carlh.net>
Thu, 11 Aug 2022 14:37:57 +0000 (16:37 +0200)
committerCarl Hetherington <cth@carlh.net>
Thu, 11 Aug 2022 14:37:57 +0000 (16:37 +0200)
test/test.cc

index fd9c6941be30e4aac818a3debf3f2b6706df865b..a761eb520c2b79352b21c836809c4d61c088d633 100644 (file)
@@ -715,15 +715,13 @@ png_error_fn (png_structp, char const * message)
 void
 write_image (shared_ptr<const Image> image, boost::filesystem::path file)
 {
-       int png_color_type = 0;
+       int png_color_type = PNG_COLOR_TYPE_RGB;
        int bits_per_pixel = 0;
        switch (image->pixel_format()) {
        case AV_PIX_FMT_RGB24:
-               png_color_type = PNG_COLOR_TYPE_RGB;
                bits_per_pixel = 8;
                break;
        case AV_PIX_FMT_XYZ12LE:
-               png_color_type = PNG_COLOR_TYPE_RGB;
                bits_per_pixel = 16;
                break;
        default: