Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • videolan/libvlcpp
  • robUx4/libvlcpp
  • stolyarchuk/libvlcpp
  • hacker1024/libvlcpp
  • mfkl/libvlcpp
  • The-personified-devil/libvlcpp
  • chouquette/libvlcpp
  • aillean/libvlcpp
  • adtadas19/libvlcpp
  • aad9805066254/libvlcpp
  • asenat/libvlcpp
  • rovenmaburak/libvlcpp
  • mstorsjo/libvlcpp
  • ranjuranjith/libvlcpp
  • tguillem/libvlcpp
  • akbaralisalar/libvlcpp
  • king7532/libvlcpp
  • Skantes/libvlcpp
  • f45431082/libvlcpp
  • alexandre-janniaux/libvlcpp
  • deyayush6/libvlcpp
21 results
Show changes
Commits on Source (2)
variables:
VLC30_IMAGE: registry.videolan.org/medialibrary:20201009131431
VLC40_IMAGE: registry.videolan.org/libvlcpp-unstable:20211211153737
VLC40_IMAGE: registry.videolan.org/libvlcpp-unstable:20220121173942
.common_build:
rules:
......
......@@ -807,16 +807,16 @@ public:
libvlc_media_thumbnail_request_destroy( request );
}
enum class Stat : uint8_t
enum class FileStat : uint8_t
{
Mtime = libvlc_media_stat_mtime,
Size = libvlc_media_stat_size,
Mtime = libvlc_media_filestat_mtime,
Size = libvlc_media_filestat_size,
};
std::pair<bool, uint64_t> stat( Stat s )
std::pair<bool, uint64_t> fileStat( FileStat s )
{
uint64_t value = 0;
auto res = libvlc_media_get_stat( *this, static_cast<uint8_t>( s ), &value ) == 1;
auto res = libvlc_media_get_filestat( *this, static_cast<uint8_t>( s ), &value ) == 1;
return std::make_pair( res, value );
}
#endif
......