-rw-r--r-- | noncore/multimedia/opieplayer2/nullvideo.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/noncore/multimedia/opieplayer2/nullvideo.c b/noncore/multimedia/opieplayer2/nullvideo.c index 90f62f2..378bbd4 100644 --- a/noncore/multimedia/opieplayer2/nullvideo.c +++ b/noncore/multimedia/opieplayer2/nullvideo.c @@ -200,7 +200,8 @@ static vo_frame_t* null_alloc_frame( vo_driver_t* self ){ static void null_update_frame_format( vo_driver_t* self, vo_frame_t* img, uint32_t width, uint32_t height, - double ratio_code, int format, int flags ){ + double ratio_code, int format, + int flags ){ null_driver_t* this = (null_driver_t*) self; opie_frame_t* frame = (opie_frame_t*)img; /* not needed now */ @@ -369,7 +370,8 @@ static void null_overlay_clut_yuv2rgb (null_driver_t *this, for (i = 0; i < sizeof(overlay->color)/sizeof(overlay->color[0]); i++) { *((uint32_t *)&clut[i]) = frame->yuv2rgb->yuv2rgb_single_pixel_fun (frame->yuv2rgb, - clut[i].y, clut[i].cb, clut[i].cr); + clut[i].y, clut[i].cb, + clut[i].cr); } overlay->rgb_clut++; } @@ -384,7 +386,8 @@ static void null_overlay_clut_yuv2rgb (null_driver_t *this, } } -static void null_overlay_blend ( vo_driver_t *this_gen, vo_frame_t *frame_gen, vo_overlay_t *overlay) { +static void null_overlay_blend ( vo_driver_t *this_gen, vo_frame_t *frame_gen, + vo_overlay_t *overlay) { null_driver_t *this = (null_driver_t *) this_gen; opie_frame_t *frame = (opie_frame_t *) frame_gen; @@ -452,7 +455,9 @@ static int null_redraw_needed( vo_driver_t* self ){ xine_vo_driver_t* init_video_out_plugin( xine_t *xine, - void* video, display_xine_frame_t frameDisplayFunc, void *userData ){ + void* video, + display_xine_frame_t frameDisplayFunc, + void *userData ){ null_driver_t *vo; vo = (null_driver_t*)malloc( sizeof(null_driver_t ) ); |