From d00952175456274eb52c33c3f6fc68cf84d93e4e Mon Sep 17 00:00:00 2001 From: GetAway Date: Sun, 19 Feb 2023 18:40:10 +0100 Subject: [PATCH] playback_cs: fix GetMetadata for CST --- lib/hardware/coolstream/hd1/libcoolstream/playback_cs.h | 4 +--- lib/hardware/coolstream/hd2/libcoolstream/playback_cs.h | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/lib/hardware/coolstream/hd1/libcoolstream/playback_cs.h b/lib/hardware/coolstream/hd1/libcoolstream/playback_cs.h index 681bc229d..c031e86d6 100644 --- a/lib/hardware/coolstream/hd1/libcoolstream/playback_cs.h +++ b/lib/hardware/coolstream/hd1/libcoolstream/playback_cs.h @@ -74,9 +74,7 @@ public: void GetTitles(std::vector &playlists, std::vector &titles, int ¤t); void SetTitle(int title); uint64_t GetReadCount(void); - - /* dummies for compatibility with libstb-hal */ - void GetMetadata(std::vector /*&keys*/, std::vector /*&values*/){}; + void GetMetadata(std::vector &keys, std::vector &values); }; #endif // __PLAYBACK_CS_H_ diff --git a/lib/hardware/coolstream/hd2/libcoolstream/playback_cs.h b/lib/hardware/coolstream/hd2/libcoolstream/playback_cs.h index 2966f903d..00719a650 100644 --- a/lib/hardware/coolstream/hd2/libcoolstream/playback_cs.h +++ b/lib/hardware/coolstream/hd2/libcoolstream/playback_cs.h @@ -75,9 +75,7 @@ public: void GetTitles(std::vector &playlists, std::vector &titles, int ¤t); void SetTitle(int title); uint64_t GetReadCount(void); - - /* dummies for compatibility with libstb-hal */ - void GetMetadata(std::vector /*&keys*/, std::vector /*&values*/){}; + void GetMetadata(std::vector &keys, std::vector &values); }; #endif // __PLAYBACK_CS_H_