Commit 1538dd9e authored by Gildas Bazin's avatar Gildas Bazin

* Restored vout_CopyPicture(). It is needed by the directx plugin damnit ;-)
* Restored AOUT_BUFFER_DURATION to its old value. It should solve quite a few
    underrun problems.
* A little bit of DirectX plugin clean-up.
parent d6af050f
...@@ -134,7 +134,7 @@ ...@@ -134,7 +134,7 @@
* - short, in order to be able to play a new song very quickly (especially a * - short, in order to be able to play a new song very quickly (especially a
* song from the interface) * song from the interface)
* - long, in order to perform the buffer calculations as few as possible */ * - long, in order to perform the buffer calculations as few as possible */
#define AOUT_BUFFER_DURATION 50000 #define AOUT_BUFFER_DURATION 100000
/***************************************************************************** /*****************************************************************************
* Video configuration * Video configuration
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* vout_directx.c: Windows DirectX video output display method * vout_directx.c: Windows DirectX video output display method
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: vout_directx.c,v 1.31 2002/04/23 22:07:05 gbazin Exp $ * $Id: vout_directx.c,v 1.32 2002/04/29 21:22:35 gbazin Exp $
* *
* Authors: Gildas Bazin <gbazin@netcourrier.com> * Authors: Gildas Bazin <gbazin@netcourrier.com>
* *
...@@ -707,8 +707,6 @@ static int DirectXCreateSurface( vout_thread_t *p_vout, ...@@ -707,8 +707,6 @@ static int DirectXCreateSurface( vout_thread_t *p_vout,
LPDIRECTDRAWSURFACE p_surface; LPDIRECTDRAWSURFACE p_surface;
DDSURFACEDESC ddsd; DDSURFACEDESC ddsd;
intf_WarnMsg( 3, "vout: DirectXCreateSurface" );
/* Create the video surface */ /* Create the video surface */
if( b_overlay ) if( b_overlay )
{ {
...@@ -741,13 +739,8 @@ static int DirectXCreateSurface( vout_thread_t *p_vout, ...@@ -741,13 +739,8 @@ static int DirectXCreateSurface( vout_thread_t *p_vout,
dxresult = IDirectDraw2_CreateSurface( p_vout->p_sys->p_ddobject, dxresult = IDirectDraw2_CreateSurface( p_vout->p_sys->p_ddobject,
&ddsd, &ddsd,
&p_surface, NULL ); &p_surface, NULL );
if( dxresult == DD_OK ) if( dxresult != DD_OK )
{
intf_WarnMsg( 3,"vout: DirectX YUV overlay created successfully" );
}
else
{ {
intf_ErrMsg( "vout error: can't create YUV overlay surface." );
*pp_surface_final = NULL; *pp_surface_final = NULL;
return 0; return 0;
} }
...@@ -769,13 +762,8 @@ static int DirectXCreateSurface( vout_thread_t *p_vout, ...@@ -769,13 +762,8 @@ static int DirectXCreateSurface( vout_thread_t *p_vout,
dxresult = IDirectDraw2_CreateSurface( p_vout->p_sys->p_ddobject, dxresult = IDirectDraw2_CreateSurface( p_vout->p_sys->p_ddobject,
&ddsd, &ddsd,
&p_surface, NULL ); &p_surface, NULL );
if( dxresult == DD_OK ) if( dxresult != DD_OK )
{
intf_WarnMsg( 3,"vout: DirectX RGB surface created successfully" );
}
else
{ {
intf_ErrMsg( "vout error: can't create RGB surface." );
*pp_surface_final = NULL; *pp_surface_final = NULL;
return 0; return 0;
} }
...@@ -796,7 +784,6 @@ static int DirectXCreateSurface( vout_thread_t *p_vout, ...@@ -796,7 +784,6 @@ static int DirectXCreateSurface( vout_thread_t *p_vout,
return 1; return 1;
} }
/***************************************************************************** /*****************************************************************************
* DirectXUpdateOverlay: Move or resize overlay surface on video display. * DirectXUpdateOverlay: Move or resize overlay surface on video display.
***************************************************************************** *****************************************************************************
...@@ -812,10 +799,7 @@ void DirectXUpdateOverlay( vout_thread_t *p_vout ) ...@@ -812,10 +799,7 @@ void DirectXUpdateOverlay( vout_thread_t *p_vout )
if( p_vout->p_sys->p_current_surface == NULL || if( p_vout->p_sys->p_current_surface == NULL ||
!p_vout->p_sys->b_using_overlay ) !p_vout->p_sys->b_using_overlay )
{
intf_WarnMsg( 5, "vout: DirectXUpdateOverlay no overlay !!" );
return; return;
}
/* The new window dimensions should already have been computed by the /* The new window dimensions should already have been computed by the
* caller of this function */ * caller of this function */
...@@ -936,10 +920,12 @@ static int NewPictureVec( vout_thread_t *p_vout, picture_t *p_pic, ...@@ -936,10 +920,12 @@ static int NewPictureVec( vout_thread_t *p_vout, picture_t *p_pic,
p_vout->output.i_chroma = FOURCC_YVYU; p_vout->output.i_chroma = FOURCC_YVYU;
break; break;
case FOURCC_YV12: case FOURCC_YV12:
p_vout->output.i_chroma = FOURCC_YV12;
break;
case FOURCC_I420: case FOURCC_I420:
case FOURCC_IYUV: case FOURCC_IYUV:
default: default:
p_vout->output.i_chroma = FOURCC_YV12; p_vout->output.i_chroma = FOURCC_IYUV;
break; break;
} }
...@@ -956,11 +942,24 @@ static int NewPictureVec( vout_thread_t *p_vout, picture_t *p_pic, ...@@ -956,11 +942,24 @@ static int NewPictureVec( vout_thread_t *p_vout, picture_t *p_pic,
/* Triple buffering rocks! it doesn't have any processing overhead /* Triple buffering rocks! it doesn't have any processing overhead
* (you don't have to wait for the vsync) and provides for a very nice * (you don't have to wait for the vsync) and provides for a very nice
* video quality (no tearing). */ * video quality (no tearing). */
b_result_ok = DirectXCreateSurface( p_vout, &p_surface, b_result_ok = DirectXCreateSurface( p_vout, &p_surface,
p_vout->output.i_chroma, p_vout->output.i_chroma,
p_vout->p_sys->b_using_overlay, p_vout->p_sys->b_using_overlay,
2 /* number of backbuffers */ ); 2 /* number of backbuffers */ );
if( !b_result_ok ) if( !b_result_ok )
/* Try another chroma */
if( p_vout->output.i_chroma == FOURCC_IYUV )
{
p_vout->output.i_chroma = FOURCC_YV12;
b_result_ok = DirectXCreateSurface( p_vout, &p_surface,
p_vout->output.i_chroma,
p_vout->p_sys->b_using_overlay,
2 /* number of backbuffers */);
}
if( !b_result_ok )
/* Try to reduce the number of backbuffers */
b_result_ok = DirectXCreateSurface( p_vout, &p_surface, b_result_ok = DirectXCreateSurface( p_vout, &p_surface,
p_vout->output.i_chroma, p_vout->output.i_chroma,
p_vout->p_sys->b_using_overlay, p_vout->p_sys->b_using_overlay,
...@@ -1015,8 +1014,13 @@ static int NewPictureVec( vout_thread_t *p_vout, picture_t *p_pic, ...@@ -1015,8 +1014,13 @@ static int NewPictureVec( vout_thread_t *p_vout, picture_t *p_pic,
DirectXUpdateOverlay( p_vout ); DirectXUpdateOverlay( p_vout );
I_OUTPUTPICTURES = 1; I_OUTPUTPICTURES = 1;
intf_WarnMsg( 3,"vout: DirectX YUV overlay created successfully" );
}
else
{
intf_ErrMsg( "vout error: can't create YUV overlay surface." );
p_vout->p_sys->b_using_overlay = 0;
} }
else p_vout->p_sys->b_using_overlay = 0;
} }
/* As we can't have overlays, we'll try to create plain RBG surfaces in /* As we can't have overlays, we'll try to create plain RBG surfaces in
...@@ -1050,6 +1054,11 @@ static int NewPictureVec( vout_thread_t *p_vout, picture_t *p_pic, ...@@ -1050,6 +1054,11 @@ static int NewPictureVec( vout_thread_t *p_vout, picture_t *p_pic,
else break; else break;
} }
if( I_OUTPUTPICTURES )
intf_WarnMsg( 3,"vout: DirectX RGB surface created successfully" );
else
intf_ErrMsg( "vout error: can't create RGB surface." );
/* We couldn't use an YUV overlay so we need to indicate to /* We couldn't use an YUV overlay so we need to indicate to
* video_output which format we are falling back to */ * video_output which format we are falling back to */
ddpfPixelFormat.dwSize = sizeof(DDPIXELFORMAT); ddpfPixelFormat.dwSize = sizeof(DDPIXELFORMAT);
...@@ -1203,6 +1212,31 @@ static int UpdatePictureStruct( vout_thread_t *p_vout, picture_t *p_pic, ...@@ -1203,6 +1212,31 @@ static int UpdatePictureStruct( vout_thread_t *p_vout, picture_t *p_pic,
p_pic->i_planes = 3; p_pic->i_planes = 3;
break; break;
case FOURCC_IYUV:
p_pic->Y_PIXELS = p_pic->p_sys->ddsd.lpSurface;
p_pic->p[Y_PLANE].i_lines = p_vout->output.i_height;
p_pic->p[Y_PLANE].i_pitch = p_pic->p_sys->ddsd.lPitch;
p_pic->p[Y_PLANE].i_pixel_bytes = 1;
p_pic->p[Y_PLANE].b_margin = 0;
p_pic->U_PIXELS = p_pic->Y_PIXELS
+ p_pic->p[Y_PLANE].i_lines * p_pic->p[Y_PLANE].i_pitch;
p_pic->p[U_PLANE].i_lines = p_vout->output.i_height / 2;
p_pic->p[U_PLANE].i_pitch = p_pic->p[Y_PLANE].i_pitch / 2;
p_pic->p[U_PLANE].i_pixel_bytes = 1;
p_pic->p[U_PLANE].b_margin = 0;
p_pic->V_PIXELS = p_pic->U_PIXELS
+ p_pic->p[U_PLANE].i_lines * p_pic->p[U_PLANE].i_pitch;
p_pic->p[V_PLANE].i_lines = p_vout->output.i_height / 2;
p_pic->p[V_PLANE].i_pitch = p_pic->p[Y_PLANE].i_pitch / 2;
p_pic->p[V_PLANE].i_pixel_bytes = 1;
p_pic->p[V_PLANE].b_margin = 0;
p_pic->i_planes = 3;
break;
default: default:
/* Not supported */ /* Not supported */
return 0; return 0;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* vout_pictures.c : picture management functions * vout_pictures.c : picture management functions
***************************************************************************** *****************************************************************************
* Copyright (C) 2000 VideoLAN * Copyright (C) 2000 VideoLAN
* $Id: vout_pictures.c,v 1.22 2002/04/25 21:52:42 sam Exp $ * $Id: vout_pictures.c,v 1.23 2002/04/29 21:22:35 gbazin Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
...@@ -552,7 +552,6 @@ void vout_AllocatePicture( picture_t *p_pic, ...@@ -552,7 +552,6 @@ void vout_AllocatePicture( picture_t *p_pic,
*****************************************************************************/ *****************************************************************************/
static void vout_CopyPicture( picture_t *p_src, picture_t *p_dest ) static void vout_CopyPicture( picture_t *p_src, picture_t *p_dest )
{ {
#if 0
int i; int i;
for( i = 0; i < p_src->i_planes ; i++ ) for( i = 0; i < p_src->i_planes ; i++ )
...@@ -600,6 +599,5 @@ static void vout_CopyPicture( picture_t *p_src, picture_t *p_dest ) ...@@ -600,6 +599,5 @@ static void vout_CopyPicture( picture_t *p_src, picture_t *p_dest )
} }
} }
} }
#endif
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment