author | zecke <zecke> | 2002-07-08 21:06:22 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-07-08 21:06:22 (UTC) |
commit | 40a1b5f7519c70b5335937573e3425bbc9d0f690 (patch) (side-by-side diff) | |
tree | 9aa449984d192b30fcf9f38d946a10ed696c0413 | |
parent | 6fc7de0c8dba90b84d65574e9d3022e10e41ddb3 (diff) | |
download | opie-40a1b5f7519c70b5335937573e3425bbc9d0f690.zip opie-40a1b5f7519c70b5335937573e3425bbc9d0f690.tar.gz opie-40a1b5f7519c70b5335937573e3425bbc9d0f690.tar.bz2 |
fix the fix
-rw-r--r-- | noncore/multimedia/opieplayer2/nullvideo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/multimedia/opieplayer2/nullvideo.c b/noncore/multimedia/opieplayer2/nullvideo.c index 877e49a..5224862 100644 --- a/noncore/multimedia/opieplayer2/nullvideo.c +++ b/noncore/multimedia/opieplayer2/nullvideo.c @@ -1,57 +1,57 @@ /*#include <xine.h>*/ #include <stdlib.h> #include <stdio.h> -#include <video_out.h> -#include <xine_internal.h> -#include <xineutils.h> -#include <configfile.h> +#include <xine/video_out.h> +#include <xine/xine_internal.h> +#include <xine/xineutils.h> +#include <xine/configfile.h> typedef struct null_driver_s null_driver_t; struct null_driver_s { vo_driver_t vo_driver; uint32_t m_capabilities; }; typedef struct opie_frame_s opie_frame_t; struct opie_frame_s { vo_frame_t frame; char* name; int version; int m_width; int m_height; uint8_t *chunk[3]; null_driver_t *output; }; static uint32_t null_get_capabilities(vo_driver_t *self ){ null_driver_t* this = (null_driver_t*)self; printf("capabilities\n"); return this->m_capabilities; } /* take care of the frame*/ static void null_frame_dispose( vo_frame_t* vo_img){ opie_frame_t* frame = (opie_frame_t*)vo_img; printf("frame_dispose\n"); free (frame); } static void null_frame_field( vo_frame_t* frame, int inti ){ printf("frame_field\n"); /* not needed */ } /* end take care of frames*/ static vo_frame_t* null_alloc_frame( vo_driver_t* self ){ null_driver_t* this = (null_driver_t*)self; opie_frame_t* frame = (opie_frame_t*)malloc ( sizeof(opie_frame_t) ); memset( frame, 0, sizeof( opie_frame_t) ); printf("alloc_frame\n"); frame->name = "opie\0"; frame->version = 1; frame->output = this; /* initialize the frame*/ |