strawberry-audio-player-win.../src/core/urlhandler.cpp

51 lines
1.6 KiB
C++
Raw Normal View History

2018-02-27 18:06:05 +01:00
/*
* Strawberry Music Player
* This file was part of Clementine.
* Copyright 2010, David Sansome <me@davidsansome.com>
2018-09-21 01:12:21 +02:00
* Copyright 2018, Jonas Kvinge <jonas@jkvinge.net>
2018-02-27 18:06:05 +01:00
*
* Strawberry is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Strawberry is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
2018-08-09 18:39:44 +02:00
*
2018-02-27 18:06:05 +01:00
*/
2018-02-27 18:06:05 +01:00
#include "config.h"
#include <QtGlobal>
#include <QObject>
#include <QUrl>
2018-09-20 22:48:52 +02:00
#include "song.h"
2018-02-27 18:06:05 +01:00
#include "urlhandler.h"
2021-07-23 21:30:08 +02:00
UrlHandler::UrlHandler(QObject *parent) : QObject(parent) {}
2023-04-21 16:20:00 +02:00
UrlHandler::LoadResult::LoadResult(const QUrl &media_url, const Type type, const QUrl &stream_url, const Song::FileType filetype, const int samplerate, const int bit_depth, const qint64 length_nanosec, const QString &error) : media_url_(media_url),
type_(type),
stream_url_(stream_url),
filetype_(filetype),
samplerate_(samplerate),
bit_depth_(bit_depth),
length_nanosec_(length_nanosec),
error_(error)
{}
2018-02-27 18:06:05 +01:00
2023-04-21 16:20:00 +02:00
UrlHandler::LoadResult::LoadResult(const QUrl &media_url, const Type type, const QString &error) : media_url_(media_url),
2020-08-23 18:52:30 +02:00
type_(type),
2023-02-18 14:09:27 +01:00
filetype_(Song::FileType::Stream),
2020-08-23 18:52:30 +02:00
samplerate_(-1),
bit_depth_(-1),
length_nanosec_(-1),
error_(error)
{}