Various build fixes, ref #802
This commit is contained in:
@@ -52,7 +52,7 @@ namespace lms::api::subsonic
|
||||
{
|
||||
struct OutputFormat
|
||||
{
|
||||
std::string name;
|
||||
std::string_view name;
|
||||
core::media::Container container;
|
||||
core::media::Codec codec;
|
||||
};
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
|
||||
namespace lms::api::subsonic
|
||||
{
|
||||
struct RequestContext;
|
||||
class RequestContext;
|
||||
|
||||
Response handleGetTranscodeDecision(RequestContext& context);
|
||||
void handleGetTranscodeStream(RequestContext& context, const Wt::Http::Request& request, Wt::Http::Response& response);
|
||||
|
||||
@@ -43,6 +43,13 @@ namespace lms::api::subsonic
|
||||
Clock::time_point addedTimePoint;
|
||||
AudioFileId audioFileId;
|
||||
StreamDetails targetStreamInfo;
|
||||
|
||||
Entry(Clock::time_point _addedTimePoint, AudioFileId _audioFileId, const StreamDetails& _targetStreamInfo)
|
||||
: addedTimePoint{ _addedTimePoint }
|
||||
, audioFileId{ _audioFileId }
|
||||
, targetStreamInfo{ _targetStreamInfo }
|
||||
{
|
||||
}
|
||||
};
|
||||
|
||||
virtual core::UUID add(AudioFileId audioFileId, const StreamDetails& targetStreamInfo) = 0;
|
||||
|
||||
Reference in New Issue
Block a user