mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-09 13:07:03 +03:00
catchup with cspot "official" - release
This commit is contained in:
@@ -1,3 +1,6 @@
|
|||||||
|
2023-10.07
|
||||||
|
- catchup with official cspot
|
||||||
|
|
||||||
2023-10-06
|
2023-10-06
|
||||||
- fix cspot PREV on first track, NEXT on last track and normal ending
|
- fix cspot PREV on first track, NEXT on last track and normal ending
|
||||||
- use DMA_AUTO for SPI
|
- use DMA_AUTO for SPI
|
||||||
|
|||||||
@@ -101,8 +101,7 @@ class BellLogger : public bell::AbstractLogger {
|
|||||||
gmt_time = localtime(&now_time);
|
gmt_time = localtime(&now_time);
|
||||||
std::cout << std::put_time(gmt_time, "[%H:%M:%S") << '.'
|
std::cout << std::put_time(gmt_time, "[%H:%M:%S") << '.'
|
||||||
<< std::setfill('0') << std::setw(3) << nowMs.count() << "] ";
|
<< std::setfill('0') << std::setw(3) << nowMs.count() << "] ";
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
gmt_time = gmtime(&now_time);
|
gmt_time = gmtime(&now_time);
|
||||||
std::cout << std::put_time(gmt_time, "[%Y-%m-%d %H:%M:%S") << '.'
|
std::cout << std::put_time(gmt_time, "[%Y-%m-%d %H:%M:%S") << '.'
|
||||||
<< std::setfill('0') << std::setw(3) << nowMs.count() << "] ";
|
<< std::setfill('0') << std::setw(3) << nowMs.count() << "] ";
|
||||||
|
|||||||
@@ -32,7 +32,8 @@ struct TrackReference;
|
|||||||
class TrackPlayer : bell::Task {
|
class TrackPlayer : bell::Task {
|
||||||
public:
|
public:
|
||||||
// Callback types
|
// Callback types
|
||||||
typedef std::function<void(std::shared_ptr<QueuedTrack>, bool)> TrackLoadedCallback;
|
typedef std::function<void(std::shared_ptr<QueuedTrack>, bool)>
|
||||||
|
TrackLoadedCallback;
|
||||||
typedef std::function<size_t(uint8_t*, size_t, std::string_view)>
|
typedef std::function<size_t(uint8_t*, size_t, std::string_view)>
|
||||||
DataCallback;
|
DataCallback;
|
||||||
typedef std::function<void()> EOFCallback;
|
typedef std::function<void()> EOFCallback;
|
||||||
|
|||||||
@@ -31,8 +31,10 @@ SpircHandler::SpircHandler(std::shared_ptr<cspot::Context> ctx) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
auto trackLoadedCallback = [this](std::shared_ptr<QueuedTrack> track, bool paused = false) {
|
auto trackLoadedCallback = [this](std::shared_ptr<QueuedTrack> track,
|
||||||
playbackState->setPlaybackState(paused ? PlaybackState::State::Paused : PlaybackState::State::Playing);
|
bool paused = false) {
|
||||||
|
playbackState->setPlaybackState(paused ? PlaybackState::State::Paused
|
||||||
|
: PlaybackState::State::Playing);
|
||||||
playbackState->updatePositionMs(track->requestedPosition);
|
playbackState->updatePositionMs(track->requestedPosition);
|
||||||
|
|
||||||
this->notify();
|
this->notify();
|
||||||
|
|||||||
@@ -531,8 +531,10 @@ bool TrackQueue::skipTrack(SkipDirection dir, bool expectNotify) {
|
|||||||
std::scoped_lock lock(tracksMutex);
|
std::scoped_lock lock(tracksMutex);
|
||||||
|
|
||||||
if (dir == SkipDirection::PREV) {
|
if (dir == SkipDirection::PREV) {
|
||||||
uint64_t position = !playbackState->innerFrame.state.has_position_ms ? 0 :
|
uint64_t position =
|
||||||
playbackState->innerFrame.state.position_ms +
|
!playbackState->innerFrame.state.has_position_ms
|
||||||
|
? 0
|
||||||
|
: playbackState->innerFrame.state.position_ms +
|
||||||
ctx->timeProvider->getSyncedTimestamp() -
|
ctx->timeProvider->getSyncedTimestamp() -
|
||||||
playbackState->innerFrame.state.position_measured_at;
|
playbackState->innerFrame.state.position_measured_at;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user