diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2017-01-14 15:27:19 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2017-01-14 15:27:37 +0000 |
commit | 7717d088351d7ee571989fb6cd6a9aa679e52989 (patch) | |
tree | de9d62e3fa4b7e427c2bfbc2cd778fe5d9c2d6d0 /ext/flac | |
parent | 5404304facbec97e8d6d31370b8ea6ba89572336 (diff) |
flacenc: fix other icon counter check
It's never going to be 0 if we first increment and then check.
Diffstat (limited to 'ext/flac')
-rw-r--r-- | ext/flac/gstflacenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/flac/gstflacenc.c b/ext/flac/gstflacenc.c index 8a5ec78d0..d31de07d8 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 */ |