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:20201119105540
VLC40_IMAGE: registry.videolan.org/libvlcpp-unstable:20211211153737
.common_build:
rules:
......
......@@ -807,6 +807,18 @@ public:
libvlc_media_thumbnail_request_destroy( request );
}
enum class Stat : uint8_t
{
Mtime = libvlc_media_stat_mtime,
Size = libvlc_media_stat_size,
};
std::pair<bool, uint64_t> stat( Stat s )
{
uint64_t value = 0;
auto res = libvlc_media_get_stat( *this, static_cast<uint8_t>( s ), &value ) == 1;
return std::make_pair( res, value );
}
#endif
......