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 (3)
variables:
VLC30_IMAGE: registry.videolan.org/medialibrary:20201009131431
VLC40_IMAGE: registry.videolan.org/libvlcpp-unstable:20220314072210
VLC40_IMAGE: registry.videolan.org/libvlcpp-unstable:20220316125112
.common_build:
rules:
......
......@@ -355,7 +355,6 @@ class MediaEventManager : public EventManager
(*callback)( media != nullptr ? std::make_shared<Media>( media, true ) : nullptr );
});
}
#endif
/**
* \brief onStateChanged Registers an event called when the Media state changes
......@@ -372,6 +371,7 @@ class MediaEventManager : public EventManager
(*callback)( e->u.media_state_changed.new_state );
});
}
#endif
/**
* \brief onSubItemTreeAdded Registers an event called when all subitem have been added.
......
......@@ -470,6 +470,7 @@ public:
return libvlc_media_save_meta(*this) != 0;
}
#if LIBVLC_VERSION_INT < LIBVLC_VERSION(4, 0, 0, 0)
/**
* Get current state of media descriptor object. Possible media states
* are defined in libvlc_structures.c ( libvlc_NothingSpecial=0,
......@@ -484,7 +485,7 @@ public:
{
return libvlc_media_get_state(*this);
}
#endif
/**
* Get the current statistics about the media
*
......