Mercurial > mplayer.hg
changeset 13346:046918174c25
fix not matching prototype, patch by Mikulas Patocka <mikulas at artax.karlin.mff.cuni.cz>; remove ^M
author | faust3 |
---|---|
date | Wed, 15 Sep 2004 14:19:41 +0000 |
parents | fec54060c91f |
children | 0b4f2d91b27c |
files | libvo/vesa_lvo.h |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/vesa_lvo.h Wed Sep 15 14:08:46 2004 +0000 +++ b/libvo/vesa_lvo.h Wed Sep 15 14:19:41 2004 +0000 @@ -12,13 +12,12 @@ #ifndef __VESA_LVO_INCLUDED #define __VESA_LVO_INCLUDED -int vlvo_preinit( -const char *drvname); +int vlvo_preinit(const char *drvname); int vlvo_init(unsigned src_width,unsigned src_height, unsigned x_org,unsigned y_org,unsigned dst_width, unsigned dst_height,unsigned format,unsigned dest_bpp); void vlvo_term( void ); -uint32_t vlvo_query_info(unsigned format); +uint32_t vlvo_query_info(uint32_t format); uint32_t vlvo_draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y); uint32_t vlvo_draw_frame(uint8_t *src[]);