mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-06 11:36:59 +03:00
fix copy typo - release
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2024-01-01
|
||||||
|
- ogg stream are parsed to foward metadata to LMS
|
||||||
|
- fix some ogg parsing on multi-stream containers
|
||||||
|
|
||||||
2023-11-19
|
2023-11-19
|
||||||
- more robust (?) airplay RTP frame recovery
|
- more robust (?) airplay RTP frame recovery
|
||||||
- initialize of scratch string in monitor (trying to figure out random reboot)
|
- initialize of scratch string in monitor (trying to figure out random reboot)
|
||||||
|
|||||||
@@ -227,7 +227,7 @@ static int read_opus_header(void) {
|
|||||||
} else if (u->status == OGG_COMMENT_HEADER) {
|
} else if (u->status == OGG_COMMENT_HEADER) {
|
||||||
// don't consume VorbisComment which could be a huge packet, just skip it
|
// don't consume VorbisComment which could be a huge packet, just skip it
|
||||||
if (!OG(&go, page_packets, &u->page)) continue;
|
if (!OG(&go, page_packets, &u->page)) continue;
|
||||||
LOG_INFO("[%p]: comment skipped successfully", ctx);
|
LOG_INFO("comment skipped successfully");
|
||||||
done = 1;
|
done = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -261,7 +261,7 @@ static void stream_ogg(size_t n) {
|
|||||||
|
|
||||||
stream.meta_send = true;
|
stream.meta_send = true;
|
||||||
wake_controller();
|
wake_controller();
|
||||||
LOG_INFO("Ogg meta len: %u", stream.header_len);
|
LOG_INFO("Ogg metadata length: %u", stream.header_len - 3);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
free(stream.ogg.data);
|
free(stream.ogg.data);
|
||||||
|
|||||||
Reference in New Issue
Block a user