comparison foosdk/sdk/foobar2000/helpers/album_art_helpers.h @ 1:20d02a178406 default tip

*: check in everything else yay
author Paper <paper@tflc.us>
date Mon, 05 Jan 2026 02:15:46 -0500
parents
children
comparison
equal deleted inserted replaced
0:e9bb126753e7 1:20d02a178406
1 #pragma once
2
3 namespace album_art_helpers {
4 bool isJPEG(album_art_data_ptr p);
5 bool isPNG(album_art_data_ptr p);
6 bool isWebP(album_art_data_ptr p);
7
8 #ifdef _WIN32
9 album_art_data_ptr encodeJPEG(album_art_data_ptr source, int quality1to100);
10 #endif
11 }