1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
/*
* Copyright (C) 2022 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "DiscsUtils.h"
#include "FileItem.h"
//! @todo it's wrong to include videoplayer scoped files, refactor
// dvd inputstream so they can be used by other components. Or just use libdvdnav directly.
#include "cores/VideoPlayer/DVDInputStreams/DVDInputStreamNavigator.h"
#ifdef HAVE_LIBBLURAY
//! @todo it's wrong to include vfs scoped files in a utils class, refactor
// to use libbluray directly.
#include "filesystem/BlurayDirectory.h"
#endif
bool UTILS::DISCS::GetDiscInfo(UTILS::DISCS::DiscInfo& info, const std::string& mediaPath)
{
// try to probe as a DVD
info = ProbeDVDDiscInfo(mediaPath);
if (!info.empty())
return true;
// try to probe as Blu-ray
info = ProbeBlurayDiscInfo(mediaPath);
if (!info.empty())
return true;
return false;
}
UTILS::DISCS::DiscInfo UTILS::DISCS::ProbeDVDDiscInfo(const std::string& mediaPath)
{
DiscInfo info;
CFileItem item{mediaPath, false};
CDVDInputStreamNavigator dvdNavigator{nullptr, item};
if (dvdNavigator.Open())
{
info.type = DiscType::DVD;
info.name = dvdNavigator.GetDVDTitleString();
// fallback to DVD volume id
if (info.name.empty())
{
info.name = dvdNavigator.GetDVDVolIdString();
}
info.serial = dvdNavigator.GetDVDSerialString();
}
return info;
}
UTILS::DISCS::DiscInfo UTILS::DISCS::ProbeBlurayDiscInfo(const std::string& mediaPath)
{
DiscInfo info;
#ifdef HAVE_LIBBLURAY
XFILE::CBlurayDirectory bdDir;
if (!bdDir.InitializeBluray(mediaPath))
return info;
info.type = DiscType::BLURAY;
info.name = bdDir.GetBlurayTitle();
info.serial = bdDir.GetBlurayID();
#endif
return info;
}
|