[vlc-devel] commit: Remove unused VOUT_GET_SIZE... ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sun Feb 15 18:26:41 CET 2009
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sun Feb 15 19:01:15 2009 +0200| [f62e78e30b58dd7a4eb8efaa9aa803a49022500f] | committer: Rémi Denis-Courmont
Remove unused VOUT_GET_SIZE...
...and it is probably no use considering vout thread already has the
informations.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f62e78e30b58dd7a4eb8efaa9aa803a49022500f
---
include/vlc_vout.h | 1 -
modules/gui/qt4/main_interface.cpp | 8 --------
modules/video_output/drawable.c | 9 ---------
modules/video_output/msw/events.c | 13 -------------
modules/video_output/x11/xcommon.c | 12 ------------
5 files changed, 0 insertions(+), 43 deletions(-)
diff --git a/include/vlc_vout.h b/include/vlc_vout.h
index 4055f4c..cd1a18d 100644
--- a/include/vlc_vout.h
+++ b/include/vlc_vout.h
@@ -700,7 +700,6 @@ static inline int vout_Control( vout_thread_t *p_vout, int i_query, ... )
enum output_query_e
{
- VOUT_GET_SIZE, /* arg1= unsigned int*, arg2= unsigned int*, res= */
VOUT_SET_SIZE, /* arg1= unsigned int, arg2= unsigned int, res= */
VOUT_SET_STAY_ON_TOP, /* arg1= bool res= */
VOUT_REPARENT,
diff --git a/modules/gui/qt4/main_interface.cpp b/modules/gui/qt4/main_interface.cpp
index e7dfb1e..0dff96a 100644
--- a/modules/gui/qt4/main_interface.cpp
+++ b/modules/gui/qt4/main_interface.cpp
@@ -699,14 +699,6 @@ int MainInterface::controlVideo( int i_query, va_list args )
int i_ret = VLC_SUCCESS;
switch( i_query )
{
- case VOUT_GET_SIZE:
- {
- unsigned int *pi_width = va_arg( args, unsigned int * );
- unsigned int *pi_height = va_arg( args, unsigned int * );
- *pi_width = videoWidget->videoSize.width();
- *pi_height = videoWidget->videoSize.height();
- break;
- }
case VOUT_SET_SIZE:
{
unsigned int i_width = va_arg( args, unsigned int );
diff --git a/modules/video_output/drawable.c b/modules/video_output/drawable.c
index b904ff9..25ef494 100644
--- a/modules/video_output/drawable.c
+++ b/modules/video_output/drawable.c
@@ -140,15 +140,6 @@ static int Control (vout_window_t *wnd, int query, va_list ap)
{
switch (query)
{
- case VOUT_GET_SIZE:
- {
- unsigned int *pi_width = va_arg (ap, unsigned int *);
- unsigned int *pi_height = va_arg (ap, unsigned int *);
- *pi_width = wnd->width;
- *pi_height = wnd->height;
- return VLC_SUCCESS;
- }
-
case VOUT_SET_SIZE: /* not allowed */
case VOUT_SET_STAY_ON_TOP: /* not allowed either, would be ugly */
return VLC_EGENERIC;
diff --git a/modules/video_output/msw/events.c b/modules/video_output/msw/events.c
index 873321a..9fe3c95 100644
--- a/modules/video_output/msw/events.c
+++ b/modules/video_output/msw/events.c
@@ -1044,19 +1044,6 @@ static int Control( vout_thread_t *p_vout, int i_query, va_list args )
switch( i_query )
{
- case VOUT_GET_SIZE:
- if( p_vout->p_sys->parent_window )
- return vaControlParentWindow( p_vout, i_query, args );
-
- pi_width = va_arg( args, unsigned int * );
- pi_height = va_arg( args, unsigned int * );
-
- GetClientRect( p_vout->p_sys->hwnd, &rect_window );
-
- *pi_width = rect_window.right - rect_window.left;
- *pi_height = rect_window.bottom - rect_window.top;
- return VLC_SUCCESS;
-
case VOUT_SET_SIZE:
if( p_vout->p_sys->parent_window )
return vaControlParentWindow( p_vout, i_query, args );
diff --git a/modules/video_output/x11/xcommon.c b/modules/video_output/x11/xcommon.c
index e715339..699a8cc 100644
--- a/modules/video_output/x11/xcommon.c
+++ b/modules/video_output/x11/xcommon.c
@@ -3128,18 +3128,6 @@ static int Control( vout_thread_t *p_vout, int i_query, va_list args )
switch( i_query )
{
- case VOUT_GET_SIZE:
- if( p_vout->p_sys->p_win->owner_window )
- return vout_ControlWindow( p_vout->p_sys->p_win->owner_window,
- i_query, args);
-
- pi_width = va_arg( args, unsigned int * );
- pi_height = va_arg( args, unsigned int * );
-
- *pi_width = p_vout->p_sys->p_win->i_width;
- *pi_height = p_vout->p_sys->p_win->i_height;
- return VLC_SUCCESS;
-
case VOUT_SET_SIZE:
if( p_vout->p_sys->p_win->owner_window )
return vout_ControlWindow( p_vout->p_sys->p_win->owner_window,
More information about the vlc-devel
mailing list