diff options
| author | 2025-05-11 15:10:54 -0400 | |
|---|---|---|
| committer | 2025-05-11 15:10:54 -0400 | |
| commit | cb342b234defc1205de5d8b10ddf79deae0a551a (patch) | |
| tree | 135a8f17ef297dcfa71cfa24de0170797add999e /src/fruits/cmc/ui/util | |
| parent | bbdc4ed66aa171f89f675aa1c82316477d5fd47e (diff) | |
| download | camu-cb342b234defc1205de5d8b10ddf79deae0a551a.tar.gz camu-cb342b234defc1205de5d8b10ddf79deae0a551a.tar.bz2 camu-cb342b234defc1205de5d8b10ddf79deae0a551a.zip | |
Add keybind to disable scaling filter
- Fix no FFmpeg build.
- Cleanup commented code from cmc ui.
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/fruits/cmc/ui/util')
| -rw-r--r-- | src/fruits/cmc/ui/util/waveform.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fruits/cmc/ui/util/waveform.c b/src/fruits/cmc/ui/util/waveform.c index 8d37543..535f219 100644 --- a/src/fruits/cmc/ui/util/waveform.c +++ b/src/fruits/cmc/ui/util/waveform.c @@ -103,6 +103,7 @@ static void test_write_bitmap(struct cmc_list_entry *entry, u32 width, u32 heigh } #endif +/* static const char *octant_lut[] = { " ", "๐บจ", "๐บซ", "๐ฎ", "๐ด", "โ", "๐ด", "๐ด", "๐ด", "๐ด", "โ", "๐ด
", "๐ด", "๐ด", "๐ด", "โ", "๐ด", "๐ด", "๐ด", "๐ด", "๐ฏฆ", "๐ด", "๐ด", "๐ด", "๐ด", "๐ด", "๐ด", "๐ด", "๐ด", "๐ด", "๐ด", "๐ด", @@ -121,11 +122,14 @@ static const char *octant_lut[] = { "๐ท", "๐ท", "๐ท", "๐ท", "๐ท", "๐ท", "๐ท", "๐ท", "๐ท", "๐ท", "๐ท", "๐ท", "๐ท", "๐ท", "๐ท", "๐ท", "โ", "๐ท", "๐ท", "๐ท", "๐ท", "โ", "๐ท", "๐ท ", "๐ทก", "๐ทข", "โ", "๐ทฃ", "โ", "๐ทค", "๐ทฅ", "โ" }; +*/ #define RMS_BIT (1 << 8) void cmc_draw_waveform(struct cmc_list_entry *entry, u32 width, u32 height, bool include_rms, char ***buf, u32 **rgba) { + (void)include_rms; + (void)buf; #ifdef OUTPUT_WAVEFORM_PNG test_write_bitmap(entry, width, height, rgba); return; |