From 7717d088351d7ee571989fb6cd6a9aa679e52989 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 14 Jan 2017 15:27:19 +0000 Subject: [PATCH] flacenc: fix other icon counter check It's never going to be 0 if we first increment and then check. --- ext/flac/gstflacenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/flac/gstflacenc.c b/ext/flac/gstflacenc.c index 8a5ec78..d31de07 100644 --- a/ext/flac/gstflacenc.c +++ b/ext/flac/gstflacenc.c @@ -661,7 +661,7 @@ gst_flac_enc_set_metadata (GstFlacEnc * flacenc, GstAudioInfo * info, && gst_structure_has_name (structure, "image/png") && png_icon_count++ == 0) { image_type = 1; - } else if (width <= 32 && height <= 32 && ++other_icon_count == 0) { + } else if (width <= 32 && height <= 32 && other_icon_count++ == 0) { image_type = 2; } else { image_type = 0; /* Other */ -- 2.7.4