Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
b6cb1510
Commit
b6cb1510
authored
Dec 12, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed useless empty vout_display_t::manage functions in some modules.
parent
b0fc931f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
46 deletions
+5
-46
modules/video_output/egl.c
modules/video_output/egl.c
+1
-7
modules/video_output/fb.c
modules/video_output/fb.c
+1
-20
modules/video_output/snapshot.c
modules/video_output/snapshot.c
+1
-7
modules/video_output/vmem.c
modules/video_output/vmem.c
+1
-6
modules/video_output/yuv.c
modules/video_output/yuv.c
+1
-6
No files found.
modules/video_output/egl.c
View file @
b6cb1510
...
...
@@ -85,7 +85,6 @@ static picture_pool_t *Pool (vout_display_t *, unsigned);
static
void
PictureRender
(
vout_display_t
*
,
picture_t
*
);
static
void
PictureDisplay
(
vout_display_t
*
,
picture_t
*
);
static
int
Control
(
vout_display_t
*
,
int
,
va_list
);
static
void
Manage
(
vout_display_t
*
);
/* OpenGL callbacks */
static
void
SwapBuffers
(
vout_opengl_t
*
gl
);
...
...
@@ -270,7 +269,7 @@ static int Open (vlc_object_t *obj)
vd
->
prepare
=
PictureRender
;
vd
->
display
=
PictureDisplay
;
vd
->
control
=
Control
;
vd
->
manage
=
Manage
;
vd
->
manage
=
NULL
;
return
VLC_SUCCESS
;
error:
...
...
@@ -413,8 +412,3 @@ static int Control (vout_display_t *vd, int query, va_list ap)
return
VLC_EGENERIC
;
}
static
void
Manage
(
vout_display_t
*
vd
)
{
//vout_display_sys_t *sys = vd->sys;
(
void
)
vd
;
}
modules/video_output/fb.c
View file @
b6cb1510
...
...
@@ -103,7 +103,6 @@ vlc_module_end ()
static
picture_pool_t
*
Pool
(
vout_display_t
*
,
unsigned
);
static
void
Display
(
vout_display_t
*
,
picture_t
*
,
subpicture_t
*
);
static
int
Control
(
vout_display_t
*
,
int
,
va_list
);
static
void
Manage
(
vout_display_t
*
);
/* */
static
int
OpenDisplay
(
vout_display_t
*
,
bool
force_resolution
);
...
...
@@ -311,7 +310,7 @@ static int Open(vlc_object_t *object)
vd
->
prepare
=
NULL
;
vd
->
display
=
Display
;
vd
->
control
=
Control
;
vd
->
manage
=
Manage
;
vd
->
manage
=
NULL
;
/* */
vout_display_SendEventFullscreen
(
vd
,
true
);
...
...
@@ -410,24 +409,6 @@ static int Control(vout_display_t *vd, int query, va_list args)
return
VLC_EGENERIC
;
}
}
static
void
Manage
(
vout_display_t
*
vd
)
{
VLC_UNUSED
(
vd
);
#if 0
/*
* Size change
*/
if (vd->i_changes & VOUT_SIZE_CHANGE)
{
msg_Dbg(vd, "reinitializing framebuffer screen");
vd->i_changes &= ~VOUT_SIZE_CHANGE;
vout_display_SendEventDisplaySize();
ClearScreen(vd->sys);
}
#endif
}
/* following functions are local */
static
int
TtyInit
(
vout_display_t
*
vd
)
...
...
modules/video_output/snapshot.c
View file @
b6cb1510
...
...
@@ -93,7 +93,6 @@ vlc_module_end ()
static
picture_pool_t
*
Pool
(
vout_display_t
*
,
unsigned
);
static
void
Display
(
vout_display_t
*
,
picture_t
*
,
subpicture_t
*
);
static
int
Control
(
vout_display_t
*
,
int
,
va_list
);
static
void
Manage
(
vout_display_t
*
);
typedef
struct
{
mtime_t
date
;
/* Presentation time */
...
...
@@ -247,7 +246,7 @@ static int Open(vlc_object_t *object)
vd
->
prepare
=
NULL
;
vd
->
display
=
Display
;
vd
->
control
=
Control
;
vd
->
manage
=
Manage
;
vd
->
manage
=
NULL
;
/* */
vout_display_SendEventFullscreen
(
vd
,
false
);
...
...
@@ -334,8 +333,3 @@ static int Control(vout_display_t *vd, int query, va_list args)
}
}
static
void
Manage
(
vout_display_t
*
vd
)
{
VLC_UNUSED
(
vd
);
}
modules/video_output/vmem.c
View file @
b6cb1510
...
...
@@ -107,7 +107,6 @@ typedef unsigned (*vlc_format_cb)(void **, char *, unsigned *, unsigned *,
static
picture_pool_t
*
Pool
(
vout_display_t
*
,
unsigned
);
static
void
Display
(
vout_display_t
*
,
picture_t
*
,
subpicture_t
*
);
static
int
Control
(
vout_display_t
*
,
int
,
va_list
);
static
void
Manage
(
vout_display_t
*
);
static
int
Lock
(
picture_t
*
);
static
void
Unlock
(
picture_t
*
);
...
...
@@ -221,7 +220,7 @@ static int Open(vlc_object_t *object)
vd
->
prepare
=
NULL
;
vd
->
display
=
Display
;
vd
->
control
=
Control
;
vd
->
manage
=
Manage
;
vd
->
manage
=
NULL
;
/* */
vout_display_SendEventFullscreen
(
vd
,
false
);
...
...
@@ -324,10 +323,6 @@ static int Control(vout_display_t *vd, int query, va_list args)
return
VLC_EGENERIC
;
}
}
static
void
Manage
(
vout_display_t
*
vd
)
{
VLC_UNUSED
(
vd
);
}
/* */
static
int
Lock
(
picture_t
*
picture
)
...
...
modules/video_output/yuv.c
View file @
b6cb1510
...
...
@@ -83,7 +83,6 @@ static const char *const ppsz_vout_options[] = {
static
picture_pool_t
*
Pool
(
vout_display_t
*
,
unsigned
);
static
void
Display
(
vout_display_t
*
,
picture_t
*
,
subpicture_t
*
subpicture
);
static
int
Control
(
vout_display_t
*
,
int
,
va_list
);
static
void
Manage
(
vout_display_t
*
);
/*****************************************************************************
* vout_display_sys_t: video output descriptor
...
...
@@ -168,7 +167,7 @@ static int Open(vlc_object_t *object)
vd
->
prepare
=
NULL
;
vd
->
display
=
Display
;
vd
->
control
=
Control
;
vd
->
manage
=
Manage
;
vd
->
manage
=
NULL
;
vout_display_SendEventFullscreen
(
vd
,
false
);
return
VLC_SUCCESS
;
...
...
@@ -277,8 +276,4 @@ static int Control(vout_display_t *vd, int query, va_list args)
return
VLC_EGENERIC
;
}
}
static
void
Manage
(
vout_display_t
*
vd
)
{
VLC_UNUSED
(
vd
);
}
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