Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
167a7a53
Commit
167a7a53
authored
Jan 29, 2014
by
Felix Abecassis
Committed by
Jean-Baptiste Kempf
Feb 08, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vout: remove commented code (moved to vlc_vout_wrapper.h)
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
fd161f46
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
82 deletions
+0
-82
src/video_output/display.h
src/video_output/display.h
+0
-82
No files found.
src/video_output/display.h
View file @
167a7a53
...
...
@@ -23,88 +23,6 @@
#include <vlc_vout_wrapper.h>
#if 0
#include <vlc_vout_display.h>
#include <vlc_filter.h>
/**
* It retreive a picture from the display
*/
static inline picture_pool_t *vout_display_Pool(vout_display_t *vd, unsigned count)
{
return vd->pool(vd, count);
}
/**
* It preparse a picture for display.
*/
static inline void vout_display_Prepare(vout_display_t *vd, picture_t *picture)
{
if (vd->prepare )
vd->prepare(vd, picture);
}
/**
* It display a picture.
*/
static inline void vout_display_Display(vout_display_t *vd, picture_t *picture)
{
vd->display(vd, picture);
}
/**
* It holds a state for a vout display.
*/
typedef struct {
vout_display_cfg_t cfg;
bool is_on_top;
struct {
int num;
int den;
} sar;
} vout_display_state_t;
/**
* It creates a vout managed display.
*/
vout_display_t *vout_NewDisplay( vout_thread_t *,
const video_format_t *,
const vout_display_state_t *,
const char *psz_module,
mtime_t i_double_click_timeout,
mtime_t i_hide_timeout );
/**
* It creates a vout managed display wrapping a video splitter.
*/
vout_display_t *vout_NewSplitter(vout_thread_t *,
const video_format_t *source,
const vout_display_state_t *state,
const char *module,
const char *splitter,
mtime_t double_click_timeout,
mtime_t hide_timeout );
/**
* It destroy a vout managed display.
*/
void vout_DeleteDisplay(vout_display_t *, vout_display_state_t *);
picture_t *vout_FilterDisplay(vout_display_t *, picture_t *);
void vout_ManageDisplay(vout_display_t *, bool allow_reset_pictures);
void vout_SetDisplayFullscreen(vout_display_t *, bool is_fullscreen);
void vout_SetDisplayFilled(vout_display_t *, bool is_filled);
void vout_SetDisplayZoom(vout_display_t *, int num, int den);
void vout_SetWindowState(vout_display_t *, unsigned state);
void vout_SetDisplayAspect(vout_display_t *, unsigned sar_num, unsigned sar_den);
void vout_SetDisplayCrop(vout_display_t *,
unsigned crop_num, unsigned crop_den,
unsigned x, unsigned y, unsigned width, unsigned height);
#endif
vout_display_t
*
vout_NewSplitter
(
vout_thread_t
*
vout
,
const
video_format_t
*
source
,
const
vout_display_state_t
*
state
,
...
...
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