diff mediaplayer.h @ 2296:789802d99629

Add basic FLAC decoder and add FLAC playback support to the media player
author Michael Pavone <pavone@retrodev.com>
date Sun, 19 Feb 2023 21:12:46 -0800
parents c4980d89614b
children 97f164d1f0f6
line wrap: on
line diff
--- a/mediaplayer.h	Fri Feb 10 23:17:43 2023 -0800
+++ b/mediaplayer.h	Sun Feb 19 21:12:46 2023 -0800
@@ -5,6 +5,7 @@
 #include "system.h"
 #include "vgm.h"
 #include "wave.h"
+#include "flac.h"
 #include "render_audio.h"
 
 typedef struct chip_info chip_info;
@@ -28,6 +29,7 @@
 	vgm_extended_header *vgm_ext;
 	data_block          *ym_seek_block;
 	wave_header         *wave;
+	flac_file           *flac;
 	audio_source        *audio;
 	chip_info           *chips;
 	uint32_t            num_chips;