From ddeecdac0600a3fe72660fb1e14b652c59f09d33 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 11 Aug 2022 16:37:57 +0200 Subject: [PATCH] Cleanup: remove duplicated code. --- test/test.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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: -- 2.30.2