Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
28c09f9f
Commit
28c09f9f
authored
Dec 16, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Note that embedded video cannot go to fullscreen directly
parent
5fdee8ec
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
include/vlc/libvlc_media_player.h
include/vlc/libvlc_media_player.h
+13
-2
No files found.
include/vlc/libvlc_media_player.h
View file @
28c09f9f
...
@@ -511,7 +511,10 @@ VLC_PUBLIC_API void libvlc_track_description_release( libvlc_track_description_t
...
@@ -511,7 +511,10 @@ VLC_PUBLIC_API void libvlc_track_description_release( libvlc_track_description_t
*/
*/
/**
/**
* Toggle fullscreen status on video output.
* Toggle fullscreen status on a non-embedded video output.
*
* @warning The same limitations applies to this function
* as to libvlc_set_fullscreen().
*
*
* \param p_mediaplayer the media player
* \param p_mediaplayer the media player
* \param p_e an initialized exception pointer
* \param p_e an initialized exception pointer
...
@@ -519,7 +522,15 @@ VLC_PUBLIC_API void libvlc_track_description_release( libvlc_track_description_t
...
@@ -519,7 +522,15 @@ VLC_PUBLIC_API void libvlc_track_description_release( libvlc_track_description_t
VLC_PUBLIC_API
void
libvlc_toggle_fullscreen
(
libvlc_media_player_t
*
,
libvlc_exception_t
*
);
VLC_PUBLIC_API
void
libvlc_toggle_fullscreen
(
libvlc_media_player_t
*
,
libvlc_exception_t
*
);
/**
/**
* Enable or disable fullscreen on a video output.
* Enable or disable fullscreen on a non-embedded video output.
*
* @warning With most window managers, only a top-level windows can switch to
* full-screen mode. Hence, this function will not operate properly if
* libvlc_media_player_set_xid() or libvlc_media_player_set_hwnd() was
* used to embed the video in a non-LibVLC widget. If you want to to render an
* embedded LibVLC video full-screen, the parent embedding widget must expanded
* to full screen (LibVLC cannot take care of that).
* LibVLC will then automatically resize the video as appropriate.
*
*
* \param p_mediaplayer the media player
* \param p_mediaplayer the media player
* \param b_fullscreen boolean for fullscreen status
* \param b_fullscreen boolean for fullscreen status
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment