summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/nullvideo.c8
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,105 +1,105 @@
1 1
2/*#include <xine.h>*/ 2/*#include <xine.h>*/
3#include <stdlib.h> 3#include <stdlib.h>
4#include <stdio.h> 4#include <stdio.h>
5 5
6#include <video_out.h> 6#include <xine/video_out.h>
7#include <xine_internal.h> 7#include <xine/xine_internal.h>
8#include <xineutils.h> 8#include <xine/xineutils.h>
9#include <configfile.h> 9#include <xine/configfile.h>
10 10
11typedef struct null_driver_s null_driver_t; 11typedef struct null_driver_s null_driver_t;
12 12
13struct null_driver_s { 13struct null_driver_s {
14 vo_driver_t vo_driver; 14 vo_driver_t vo_driver;
15 uint32_t m_capabilities; 15 uint32_t m_capabilities;
16 16
17}; 17};
18typedef struct opie_frame_s opie_frame_t; 18typedef struct opie_frame_s opie_frame_t;
19struct opie_frame_s { 19struct opie_frame_s {
20 vo_frame_t frame; 20 vo_frame_t frame;
21 char* name; 21 char* name;
22 int version; 22 int version;
23 int m_width; 23 int m_width;
24 int m_height; 24 int m_height;
25 uint8_t *chunk[3]; 25 uint8_t *chunk[3];
26 null_driver_t *output; 26 null_driver_t *output;
27}; 27};
28 28
29static uint32_t null_get_capabilities(vo_driver_t *self ){ 29static uint32_t null_get_capabilities(vo_driver_t *self ){
30 null_driver_t* this = (null_driver_t*)self; 30 null_driver_t* this = (null_driver_t*)self;
31 printf("capabilities\n"); 31 printf("capabilities\n");
32 return this->m_capabilities; 32 return this->m_capabilities;
33} 33}
34 34
35/* take care of the frame*/ 35/* take care of the frame*/
36static void null_frame_dispose( vo_frame_t* vo_img){ 36static void null_frame_dispose( vo_frame_t* vo_img){
37 opie_frame_t* frame = (opie_frame_t*)vo_img; 37 opie_frame_t* frame = (opie_frame_t*)vo_img;
38 printf("frame_dispose\n"); 38 printf("frame_dispose\n");
39 free (frame); 39 free (frame);
40} 40}
41static void null_frame_field( vo_frame_t* frame, int inti ){ 41static void null_frame_field( vo_frame_t* frame, int inti ){
42 printf("frame_field\n"); 42 printf("frame_field\n");
43 /* not needed */ 43 /* not needed */
44} 44}
45 45
46/* end take care of frames*/ 46/* end take care of frames*/
47 47
48static vo_frame_t* null_alloc_frame( vo_driver_t* self ){ 48static vo_frame_t* null_alloc_frame( vo_driver_t* self ){
49 null_driver_t* this = (null_driver_t*)self; 49 null_driver_t* this = (null_driver_t*)self;
50 opie_frame_t* frame = (opie_frame_t*)malloc ( sizeof(opie_frame_t) ); 50 opie_frame_t* frame = (opie_frame_t*)malloc ( sizeof(opie_frame_t) );
51 memset( frame, 0, sizeof( opie_frame_t) ); 51 memset( frame, 0, sizeof( opie_frame_t) );
52 printf("alloc_frame\n"); 52 printf("alloc_frame\n");
53 frame->name = "opie\0"; 53 frame->name = "opie\0";
54 frame->version = 1; 54 frame->version = 1;
55 frame->output = this; 55 frame->output = this;
56 56
57 /* initialize the frame*/ 57 /* initialize the frame*/
58 frame->frame.driver = self; 58 frame->frame.driver = self;
59 /*frame.frame.free = null_frame_free;*/ 59 /*frame.frame.free = null_frame_free;*/
60 frame->frame.copy = NULL; 60 frame->frame.copy = NULL;
61 frame->frame.field = null_frame_field; 61 frame->frame.field = null_frame_field;
62 frame->frame.dispose = null_frame_dispose; 62 frame->frame.dispose = null_frame_dispose;
63 63
64 64
65 return (vo_frame_t*) frame; 65 return (vo_frame_t*) frame;
66} 66}
67static void null_update_frame_format( vo_driver_t* self, vo_frame_t* img, 67static void null_update_frame_format( vo_driver_t* self, vo_frame_t* img,
68 uint32_t width, uint32_t height, 68 uint32_t width, uint32_t height,
69 int ratio_code, int format, int flags ){ 69 int ratio_code, int format, int flags ){
70 null_driver_t* this = (null_driver_t*) self; 70 null_driver_t* this = (null_driver_t*) self;
71 opie_frame_t* frame = (opie_frame_t*)img; 71 opie_frame_t* frame = (opie_frame_t*)img;
72 /* not needed now */ 72 /* not needed now */
73 printf("update_frame_format\n"); 73 printf("update_frame_format\n");
74 printf("al crash aye?\n"); 74 printf("al crash aye?\n");
75 75
76 if(frame->chunk[0] ){ 76 if(frame->chunk[0] ){
77 free( frame->chunk[0] ); 77 free( frame->chunk[0] );
78 frame->chunk[0] = NULL; 78 frame->chunk[0] = NULL;
79 } 79 }
80 if(frame->chunk[1] ){ 80 if(frame->chunk[1] ){
81 free ( frame->chunk[1] ); 81 free ( frame->chunk[1] );
82 frame->chunk[1] = NULL; 82 frame->chunk[1] = NULL;
83 } 83 }
84 if(frame->chunk[2] ){ 84 if(frame->chunk[2] ){
85 free ( frame->chunk[2] ); 85 free ( frame->chunk[2] );
86 frame->chunk[2] = NULL; 86 frame->chunk[2] = NULL;
87 } 87 }
88 88
89 89
90 if( format == IMGFMT_YV12 ) { 90 if( format == IMGFMT_YV12 ) {
91 int image_size = width * height; /* cast ouch*/ 91 int image_size = width * height; /* cast ouch*/
92 frame->frame.base[0] = xine_xmalloc_aligned(16, image_size, 92 frame->frame.base[0] = xine_xmalloc_aligned(16, image_size,
93 (void **)&frame->chunk[0] ); 93 (void **)&frame->chunk[0] );
94 frame->frame.base[1] = xine_xmalloc_aligned(16, image_size, 94 frame->frame.base[1] = xine_xmalloc_aligned(16, image_size,
95 (void **)&frame->chunk[1] ); 95 (void **)&frame->chunk[1] );
96 frame->frame.base[2] = xine_xmalloc_aligned(16, image_size, 96 frame->frame.base[2] = xine_xmalloc_aligned(16, image_size,
97 (void **)&frame->chunk[2] ); 97 (void **)&frame->chunk[2] );
98 }else{ 98 }else{
99 int image_size = width * height; /* cast ouch*/ 99 int image_size = width * height; /* cast ouch*/
100 frame->frame.base[0] = xine_xmalloc_aligned(16, image_size, 100 frame->frame.base[0] = xine_xmalloc_aligned(16, image_size,
101 (void **)&frame->chunk[0] ); 101 (void **)&frame->chunk[0] );
102 frame->chunk[1] = NULL; 102 frame->chunk[1] = NULL;
103 frame->chunk[2] = NULL; 103 frame->chunk[2] = NULL;
104 } 104 }
105 105