Started implementing local music playback

This commit is contained in:
2026-02-13 23:07:01 +10:00
parent ba554dc716
commit 66aa616286
5 changed files with 68 additions and 2 deletions
+24
View File
@@ -0,0 +1,24 @@
/*
* OpenSubsonicPlayer
* Goldenkrew3000 2025
* License: GNU General Public License 3.0
* Info: Local Music File Handler
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <dirent.h>
#include <errno.h>
#include <sys/stat.h>
#include "localMusicHandler.hpp"
extern "C" {
#include <libavformat/avformat.h>
#include <libavutil/dict.h>
#include <libavformat/avio.h>
}
void localMusicHandler_scan() {
//
}