From: Carl Hetherington Date: Thu, 11 Aug 2022 14:37:57 +0000 (+0200) Subject: Cleanup: remove duplicated code. X-Git-Tag: v2.16.20~12 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=ddeecdac0600a3fe72660fb1e14b652c59f09d33 Cleanup: remove duplicated code. --- diff --git a/test/test.cc b/test/test.cc index fd9c6941b..a761eb520 100644 --- a/test/test.cc +++ b/test/test.cc @@ -715,15 +715,13 @@ png_error_fn (png_structp, char const * message) void write_image (shared_ptr 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: