QMediaPlaylist::addMedia() returns true for nonexi

2019-08-06 13:11发布

The docs say that QMediaPlaylist::addMedia returns false if it fails:

bool QMediaPlaylist::addMedia(const QMediaContent & content) Append the media content to the playlist. Returns true if the operation is successful, otherwise return false.

But this code will print true even though the file doesn't exist:

QMediaPlayer *player = new QMediaPlayer;
QMediaPlaylist *playlist = new QMediaPlaylist(player);
qDebug() << playlist->addMedia(QUrl("this file doesn't exist.mp4"));

If the file doesn't exist how can the operation be considered successful?

1条回答
相关推荐>>
2楼-- · 2019-08-06 13:41

After stepping into the Qt sources, I saw that QMediaPlaylist::addMedia() calls QMediaNetworkPlaylistProvider::addMedia(), which always returns true:

bool QMediaPlaylist::addMedia(const QMediaContent &content)
{
    return d_func()->control->playlistProvider()->addMedia(content);
}

bool QMediaNetworkPlaylistProvider::addMedia(const QMediaContent &content)
{
    Q_D(QMediaNetworkPlaylistProvider);

    int pos = d->resources.count();

    emit mediaAboutToBeInserted(pos, pos);
    d->resources.append(content);
    emit mediaInserted(pos, pos);

    return true;
}

Although why it needs to return a bool that's always true is a mystery to me.

查看更多
登录 后发表回答