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)
......@@ -127,7 +127,7 @@ public:
auto media = libvlc_media_player_get_media(*this);
if ( media == nullptr )
return nullptr;
return std::make_shared<Media>( media, true );
return std::make_shared<Media>( media, false );
}
/**
......@@ -1690,7 +1690,7 @@ public:
bool updateViewpoint( const VideoViewpoint& viewpoint, bool b_absolute )
{
return libvlc_video_update_viewpoint( *this,
return libvlc_video_update_viewpoint( *this,
static_cast<const libvlc_video_viewpoint_t*>( &viewpoint ), b_absolute ) == 0;
}
......
......@@ -652,7 +652,7 @@ public:
///
/// \brief C++ Type wrapper for libvlc_video_viewpoint_t
/// \brief C++ Type wrapper for libvlc_video_viewpoint_t
///
class VideoViewpoint : public libvlc_video_viewpoint_t
{
......