author | sandman <sandman> | 2002-08-01 21:18:11 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-08-01 21:18:11 (UTC) |
commit | 54eb82d90a4ee254c0abb6d33937e76aeb32ddf1 (patch) (unidiff) | |
tree | e9628916c721262232efc3314a8ccd29613a7189 | |
parent | c80b2060a6f051f16690db4b8f0ccbc7dde84ec5 (diff) | |
download | opie-54eb82d90a4ee254c0abb6d33937e76aeb32ddf1.zip opie-54eb82d90a4ee254c0abb6d33937e76aeb32ddf1.tar.gz opie-54eb82d90a4ee254c0abb6d33937e76aeb32ddf1.tar.bz2 |
video in qvfb works now with 0/90/180/270° rotation
-rw-r--r-- | noncore/multimedia/opieplayer2/lib.cpp | 6 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/nullvideo.c | 2 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/xinevideowidget.cpp | 25 |
3 files changed, 22 insertions, 11 deletions
diff --git a/noncore/multimedia/opieplayer2/lib.cpp b/noncore/multimedia/opieplayer2/lib.cpp index ac5cdd5..5ae6c21 100644 --- a/noncore/multimedia/opieplayer2/lib.cpp +++ b/noncore/multimedia/opieplayer2/lib.cpp | |||
@@ -62,148 +62,148 @@ Lib::Lib(XineVideoWidget* widget) { | |||
62 | int i = 0; | 62 | int i = 0; |
63 | while ( ( out = files[i] ) != 0 ) { | 63 | while ( ( out = files[i] ) != 0 ) { |
64 | printf("Video %s\n", out ); | 64 | printf("Video %s\n", out ); |
65 | i++; | 65 | i++; |
66 | } | 66 | } |
67 | // m_xine = xine_init( m_videoOutput, | 67 | // m_xine = xine_init( m_videoOutput, |
68 | // m_audioOutput, | 68 | // m_audioOutput, |
69 | // m_config ); | 69 | // m_config ); |
70 | // test loading | 70 | // test loading |
71 | m_videoOutput = ::init_video_out_plugin( m_config, NULL ); | 71 | m_videoOutput = ::init_video_out_plugin( m_config, NULL ); |
72 | if (m_wid != 0 ) { | 72 | if (m_wid != 0 ) { |
73 | printf("!0\n" ); | 73 | printf("!0\n" ); |
74 | ::null_set_gui_width( m_videoOutput, m_wid->image()->width() ); | 74 | ::null_set_gui_width( m_videoOutput, m_wid->image()->width() ); |
75 | ::null_set_gui_height(m_videoOutput, m_wid->image()->height() ); | 75 | ::null_set_gui_height(m_videoOutput, m_wid->image()->height() ); |
76 | ::null_set_mode( m_videoOutput, qt_screen->depth(), qt_screen->pixelType() ); | 76 | ::null_set_mode( m_videoOutput, qt_screen->depth(), qt_screen->pixelType() ); |
77 | m_bytes_per_pixel = ( qt_screen->depth() + 7 ) / 8; | 77 | m_bytes_per_pixel = ( qt_screen->depth() + 7 ) / 8; |
78 | QImage image = Resource::loadImage("SoundPlayer"); | 78 | QImage image = Resource::loadImage("SoundPlayer"); |
79 | image = image.smoothScale( m_wid->width(), m_wid->height() ); | 79 | image = image.smoothScale( m_wid->width(), m_wid->height() ); |
80 | QImage* img = new QImage( image ); | 80 | QImage* img = new QImage( image ); |
81 | m_wid->setImage( img ); | 81 | m_wid->setImage( img ); |
82 | m_wid->repaint(); | 82 | m_wid->repaint(); |
83 | } | 83 | } |
84 | null_display_handler( m_videoOutput, | 84 | null_display_handler( m_videoOutput, |
85 | xine_display_frame, | 85 | xine_display_frame, |
86 | this ); | 86 | this ); |
87 | 87 | ||
88 | m_xine = xine_init( m_videoOutput, | 88 | m_xine = xine_init( m_videoOutput, |
89 | m_audioOutput, m_config ); | 89 | m_audioOutput, m_config ); |
90 | // install the event handler | 90 | // install the event handler |
91 | xine_register_event_listener( m_xine, xine_event_handler, this ); | 91 | xine_register_event_listener( m_xine, xine_event_handler, this ); |
92 | } | 92 | } |
93 | 93 | ||
94 | Lib::~Lib() { | 94 | Lib::~Lib() { |
95 | delete m_config; | 95 | delete m_config; |
96 | xine_remove_event_listener( m_xine, xine_event_handler ); | 96 | xine_remove_event_listener( m_xine, xine_event_handler ); |
97 | xine_exit( m_xine ); | 97 | xine_exit( m_xine ); |
98 | delete m_videoOutput; | 98 | delete m_videoOutput; |
99 | //delete m_audioOutput; | 99 | //delete m_audioOutput; |
100 | 100 | ||
101 | } | 101 | } |
102 | 102 | ||
103 | QCString Lib::version() { | 103 | QCString Lib::version() { |
104 | QCString str( xine_get_str_version() ); | 104 | QCString str( xine_get_str_version() ); |
105 | return str; | 105 | return str; |
106 | }; | 106 | }; |
107 | 107 | ||
108 | int Lib::majorVersion() { | 108 | int Lib::majorVersion() { |
109 | return xine_get_major_version(); | 109 | return xine_get_major_version(); |
110 | } | 110 | } |
111 | int Lib::minorVersion() { | 111 | int Lib::minorVersion() { |
112 | return xine_get_minor_version(); | 112 | return xine_get_minor_version(); |
113 | }; | 113 | }; |
114 | 114 | ||
115 | int Lib::subVersion() { | 115 | int Lib::subVersion() { |
116 | return xine_get_sub_version(); | 116 | return xine_get_sub_version(); |
117 | } | 117 | } |
118 | int Lib::play( const QString& fileName, | 118 | int Lib::play( const QString& fileName, |
119 | int startPos, | 119 | int startPos, |
120 | int start_time ) { | 120 | int start_time ) { |
121 | QString str = fileName.stripWhiteSpace(); | 121 | QString str = fileName.stripWhiteSpace(); |
122 | //workaround OpiePlayer bug | 122 | //workaround OpiePlayer bug |
123 | if (str.right(1) == QString::fromLatin1("/") ) | 123 | if (str.right(1) == QString::fromLatin1("/") ) |
124 | str = str.mid( str.length() -1 ); | 124 | str = str.mid( str.length() -1 ); |
125 | return xine_play( m_xine, QFile::encodeName(str.utf8() ).data(), | 125 | return xine_play( m_xine, QFile::encodeName(str.utf8() ).data(), |
126 | startPos, start_time); | 126 | startPos, start_time); |
127 | } | 127 | } |
128 | void Lib::stop() { | 128 | void Lib::stop() { |
129 | xine_stop(m_xine ); | 129 | xine_stop(m_xine ); |
130 | } | 130 | } |
131 | void Lib::pause(){ | 131 | void Lib::pause(){ |
132 | xine_set_speed( m_xine, SPEED_PAUSE ); | 132 | xine_set_speed( m_xine, SPEED_PAUSE ); |
133 | } | 133 | } |
134 | int Lib::speed() { | 134 | int Lib::speed() { |
135 | return xine_get_speed( m_xine ); | 135 | return xine_get_speed( m_xine ); |
136 | } | 136 | } |
137 | void Lib::setSpeed( int speed ) { | 137 | void Lib::setSpeed( int speed ) { |
138 | xine_set_speed( m_xine, speed ); | 138 | xine_set_speed( m_xine, speed ); |
139 | } | 139 | } |
140 | int Lib::status(){ | 140 | int Lib::status(){ |
141 | return xine_get_status( m_xine ); | 141 | return xine_get_status( m_xine ); |
142 | } | 142 | } |
143 | int Lib::currentPosition(){ | 143 | int Lib::currentPosition(){ |
144 | return xine_get_current_position( m_xine ); | 144 | return xine_get_current_position( m_xine ); |
145 | } | 145 | } |
146 | int Lib::currentTime() { | 146 | int Lib::currentTime() { |
147 | return xine_get_current_time( m_xine ); | 147 | return xine_get_current_time( m_xine ); |
148 | }; | 148 | }; |
149 | int Lib::length() { | 149 | int Lib::length() { |
150 | return xine_get_stream_length( m_xine ); | 150 | return xine_get_stream_length( m_xine ); |
151 | } | 151 | } |
152 | bool Lib::isSeekable() { | 152 | bool Lib::isSeekable() { |
153 | return xine_is_stream_seekable(m_xine); | 153 | return xine_is_stream_seekable(m_xine); |
154 | } | 154 | } |
155 | Frame Lib::currentFrame() { | 155 | Frame Lib::currentFrame() { |
156 | Frame frame; | 156 | Frame frame; |
157 | return frame; | 157 | return frame; |
158 | }; | 158 | }; |
159 | int Lib::error() { | 159 | int Lib::error() { |
160 | return xine_get_error( m_xine ); | 160 | return xine_get_error( m_xine ); |
161 | }; | 161 | }; |
162 | void Lib::handleXineEvent( xine_event_t* t ) { | 162 | void Lib::handleXineEvent( xine_event_t* t ) { |
163 | if ( t->type == XINE_EVENT_PLAYBACK_FINISHED ) | 163 | if ( t->type == XINE_EVENT_PLAYBACK_FINISHED ) |
164 | emit stopped(); | 164 | emit stopped(); |
165 | } | 165 | } |
166 | void Lib::setShowVideo( bool video ) { | 166 | void Lib::setShowVideo( bool video ) { |
167 | m_video = video; | 167 | m_video = video; |
168 | ::null_set_show_video( m_videoOutput, video ); | 168 | ::null_set_show_video( m_videoOutput, video ); |
169 | } | 169 | } |
170 | bool Lib::isShowingVideo() { | 170 | bool Lib::isShowingVideo() { |
171 | return ::null_is_showing_video( m_videoOutput ); | 171 | return ::null_is_showing_video( m_videoOutput ); |
172 | } | 172 | } |
173 | void Lib::showVideoFullScreen( bool fullScreen ) { | 173 | void Lib::showVideoFullScreen( bool fullScreen ) { |
174 | ::null_set_fullscreen( m_videoOutput, fullScreen ); | 174 | ::null_set_fullscreen( m_videoOutput, fullScreen ); |
175 | } | 175 | } |
176 | bool Lib::isVideoFullScreen() { | 176 | bool Lib::isVideoFullScreen() { |
177 | return ::null_is_fullscreen( m_videoOutput ); | 177 | return ::null_is_fullscreen( m_videoOutput ); |
178 | } | 178 | } |
179 | void Lib::setScaling( bool scale ) { | 179 | void Lib::setScaling( bool scale ) { |
180 | ::null_set_scaling( m_videoOutput, scale ); | 180 | ::null_set_scaling( m_videoOutput, scale ); |
181 | } | 181 | } |
182 | bool Lib::isScaling() { | 182 | bool Lib::isScaling() { |
183 | return ::null_is_scaling( m_videoOutput ); | 183 | return ::null_is_scaling( m_videoOutput ); |
184 | } | 184 | } |
185 | void Lib::xine_event_handler( void* user_data, xine_event_t* t ) { | 185 | void Lib::xine_event_handler( void* user_data, xine_event_t* t ) { |
186 | ((Lib*)user_data)->handleXineEvent( t ); | 186 | ((Lib*)user_data)->handleXineEvent( t ); |
187 | } | 187 | } |
188 | void Lib::xine_display_frame( void* user_data, uint8_t *frame, | 188 | void Lib::xine_display_frame( void* user_data, uint8_t *frame, |
189 | int width, int height, int bytes ) { | 189 | int width, int height, int bytes ) { |
190 | printf("display x frame"); | 190 | // printf("display x frame"); |
191 | ((Lib*)user_data)->drawFrame( frame, width, height, bytes ); | 191 | ((Lib*)user_data)->drawFrame( frame, width, height, bytes ); |
192 | printf("displayed x frame\n"); | 192 | // printf("displayed x frame\n"); |
193 | } | 193 | } |
194 | void Lib::drawFrame( uint8_t* frame, int width, int height, int bytes ) { | 194 | void Lib::drawFrame( uint8_t* frame, int width, int height, int bytes ) { |
195 | if (!m_video ) { | 195 | if (!m_video ) { |
196 | qWarning("not showing video now"); | 196 | qWarning("not showing video now"); |
197 | return; | 197 | return; |
198 | } | 198 | } |
199 | qWarning("called draw frame %d %d", width, height); | 199 | // qWarning("called draw frame %d %d", width, height); |
200 | 200 | ||
201 | QSize size = m_wid->size(); | 201 | QSize size = m_wid->size(); |
202 | int xoffset = (size.width() - width) / 2; | 202 | int xoffset = (size.width() - width) / 2; |
203 | int yoffset = (size.height() - height) / 2; | 203 | int yoffset = (size.height() - height) / 2; |
204 | int linestep = qt_screen->linestep(); | 204 | int linestep = qt_screen->linestep(); |
205 | 205 | ||
206 | m_wid->setImage( frame, yoffset, xoffset, width, height, linestep, bytes, m_bytes_per_pixel ); | 206 | m_wid->setImage( frame, yoffset, xoffset, width, height, linestep, bytes, m_bytes_per_pixel ); |
207 | // m_wid->repaint(false); | 207 | // m_wid->repaint(false); |
208 | 208 | ||
209 | } | 209 | } |
diff --git a/noncore/multimedia/opieplayer2/nullvideo.c b/noncore/multimedia/opieplayer2/nullvideo.c index 63d5752..3a18a40 100644 --- a/noncore/multimedia/opieplayer2/nullvideo.c +++ b/noncore/multimedia/opieplayer2/nullvideo.c | |||
@@ -1,144 +1,146 @@ | |||
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 <math.h> | 6 | #include <math.h> |
7 | 7 | ||
8 | #include <xine/video_out.h> | 8 | #include <xine/video_out.h> |
9 | #include <xine/xine_internal.h> | 9 | #include <xine/xine_internal.h> |
10 | #include <xine/xineutils.h> | 10 | #include <xine/xineutils.h> |
11 | #include <xine/configfile.h> | 11 | #include <xine/configfile.h> |
12 | 12 | ||
13 | #include <pthread.h> | 13 | #include <pthread.h> |
14 | #include "alphablend.h" | 14 | #include "alphablend.h" |
15 | #include "yuv2rgb.h" | 15 | #include "yuv2rgb.h" |
16 | 16 | ||
17 | #define printf(x,...) | ||
18 | |||
17 | /* the caller for our event draw handler */ | 19 | /* the caller for our event draw handler */ |
18 | typedef void (*display_xine_frame_t) (void *user_data, uint8_t* frame, | 20 | typedef void (*display_xine_frame_t) (void *user_data, uint8_t* frame, |
19 | int width, int height,int bytes ); | 21 | int width, int height,int bytes ); |
20 | 22 | ||
21 | typedef struct null_driver_s null_driver_t; | 23 | typedef struct null_driver_s null_driver_t; |
22 | 24 | ||
23 | struct null_driver_s { | 25 | struct null_driver_s { |
24 | vo_driver_t vo_driver; | 26 | vo_driver_t vo_driver; |
25 | uint32_t m_capabilities; | 27 | uint32_t m_capabilities; |
26 | int m_show_video; | 28 | int m_show_video; |
27 | int m_video_fullscreen; | 29 | int m_video_fullscreen; |
28 | int m_is_scaling; | 30 | int m_is_scaling; |
29 | int depth, bpp, bytes_per_pixel; | 31 | int depth, bpp, bytes_per_pixel; |
30 | int yuv2rgb_mode; | 32 | int yuv2rgb_mode; |
31 | int yuv2rgb_swap; | 33 | int yuv2rgb_swap; |
32 | int zuv2rgb_gamma; | 34 | int zuv2rgb_gamma; |
33 | uint8_t *yuv2rgb_cmap; | 35 | uint8_t *yuv2rgb_cmap; |
34 | yuv2rgb_factory_t *yuv2rgb_factory; | 36 | yuv2rgb_factory_t *yuv2rgb_factory; |
35 | vo_overlay_t *overlay; | 37 | vo_overlay_t *overlay; |
36 | int user_ratio; | 38 | int user_ratio; |
37 | double output_scale_factor; | 39 | double output_scale_factor; |
38 | int last_frame_output_width; | 40 | int last_frame_output_width; |
39 | int last_frame_output_height; | 41 | int last_frame_output_height; |
40 | int gui_width; | 42 | int gui_width; |
41 | int gui_height; | 43 | int gui_height; |
42 | int gui_changed; | 44 | int gui_changed; |
43 | double display_ratio; | 45 | double display_ratio; |
44 | void* caller; | 46 | void* caller; |
45 | display_xine_frame_t frameDis; | 47 | display_xine_frame_t frameDis; |
46 | 48 | ||
47 | 49 | ||
48 | }; | 50 | }; |
49 | typedef struct opie_frame_s opie_frame_t; | 51 | typedef struct opie_frame_s opie_frame_t; |
50 | struct opie_frame_s { | 52 | struct opie_frame_s { |
51 | vo_frame_t frame; | 53 | vo_frame_t frame; |
52 | char* name; | 54 | char* name; |
53 | int version; | 55 | int version; |
54 | int width; | 56 | int width; |
55 | int height; | 57 | int height; |
56 | int ratio_code; | 58 | int ratio_code; |
57 | int format; | 59 | int format; |
58 | int flags; | 60 | int flags; |
59 | int user_ratio; | 61 | int user_ratio; |
60 | 62 | ||
61 | double ratio_factor; | 63 | double ratio_factor; |
62 | int ideal_width; | 64 | int ideal_width; |
63 | int ideal_height; | 65 | int ideal_height; |
64 | int output_width, output_height; | 66 | int output_width, output_height; |
65 | uint8_t *chunk[3]; | 67 | uint8_t *chunk[3]; |
66 | 68 | ||
67 | yuv2rgb_t *yuv2rgb; | 69 | yuv2rgb_t *yuv2rgb; |
68 | uint8_t *rgb_dst; | 70 | uint8_t *rgb_dst; |
69 | int yuv_stride; | 71 | int yuv_stride; |
70 | int stripe_height, stripe_inc; | 72 | int stripe_height, stripe_inc; |
71 | 73 | ||
72 | int bytes_per_line; | 74 | int bytes_per_line; |
73 | uint8_t *data; | 75 | uint8_t *data; |
74 | 76 | ||
75 | // int show_video; | 77 | // int show_video; |
76 | null_driver_t *output; | 78 | null_driver_t *output; |
77 | }; | 79 | }; |
78 | 80 | ||
79 | static uint32_t null_get_capabilities(vo_driver_t *self ){ | 81 | static uint32_t null_get_capabilities(vo_driver_t *self ){ |
80 | null_driver_t* this = (null_driver_t*)self; | 82 | null_driver_t* this = (null_driver_t*)self; |
81 | printf("capabilities\n"); | 83 | printf("capabilities\n"); |
82 | return this->m_capabilities; | 84 | return this->m_capabilities; |
83 | } | 85 | } |
84 | 86 | ||
85 | static void null_frame_copy (vo_frame_t *vo_img, uint8_t **src) { | 87 | static void null_frame_copy (vo_frame_t *vo_img, uint8_t **src) { |
86 | opie_frame_t *frame = (opie_frame_t *) vo_img ; | 88 | opie_frame_t *frame = (opie_frame_t *) vo_img ; |
87 | printf("frame copy\n"); | 89 | printf("frame copy\n"); |
88 | if(!frame->output->m_show_video ){ printf("no video\n"); return; } // no video | 90 | if(!frame->output->m_show_video ){ printf("no video\n"); return; } // no video |
89 | 91 | ||
90 | if (frame->format == IMGFMT_YV12) { | 92 | if (frame->format == IMGFMT_YV12) { |
91 | frame->yuv2rgb->yuv2rgb_fun (frame->yuv2rgb, frame->rgb_dst, | 93 | frame->yuv2rgb->yuv2rgb_fun (frame->yuv2rgb, frame->rgb_dst, |
92 | src[0], src[1], src[2]); | 94 | src[0], src[1], src[2]); |
93 | } else { | 95 | } else { |
94 | 96 | ||
95 | frame->yuv2rgb->yuy22rgb_fun (frame->yuv2rgb, frame->rgb_dst, | 97 | frame->yuv2rgb->yuy22rgb_fun (frame->yuv2rgb, frame->rgb_dst, |
96 | src[0]); | 98 | src[0]); |
97 | } | 99 | } |
98 | 100 | ||
99 | frame->rgb_dst += frame->stripe_inc; | 101 | frame->rgb_dst += frame->stripe_inc; |
100 | printf("returning\n"); | 102 | printf("returning\n"); |
101 | } | 103 | } |
102 | 104 | ||
103 | static void null_frame_field (vo_frame_t *vo_img, int which_field) { | 105 | static void null_frame_field (vo_frame_t *vo_img, int which_field) { |
104 | 106 | ||
105 | opie_frame_t *frame = (opie_frame_t *) vo_img ; | 107 | opie_frame_t *frame = (opie_frame_t *) vo_img ; |
106 | printf("field\n\n"); | 108 | printf("field\n\n"); |
107 | 109 | ||
108 | switch (which_field) { | 110 | switch (which_field) { |
109 | case VO_TOP_FIELD: | 111 | case VO_TOP_FIELD: |
110 | frame->rgb_dst = (uint8_t *)frame->data; | 112 | frame->rgb_dst = (uint8_t *)frame->data; |
111 | frame->stripe_inc = 2*frame->stripe_height * frame->bytes_per_line; | 113 | frame->stripe_inc = 2*frame->stripe_height * frame->bytes_per_line; |
112 | break; | 114 | break; |
113 | case VO_BOTTOM_FIELD: | 115 | case VO_BOTTOM_FIELD: |
114 | frame->rgb_dst = (uint8_t *)frame->data + frame->bytes_per_line ; | 116 | frame->rgb_dst = (uint8_t *)frame->data + frame->bytes_per_line ; |
115 | frame->stripe_inc = 2*frame->stripe_height * frame->bytes_per_line; | 117 | frame->stripe_inc = 2*frame->stripe_height * frame->bytes_per_line; |
116 | break; | 118 | break; |
117 | case VO_BOTH_FIELDS: | 119 | case VO_BOTH_FIELDS: |
118 | frame->rgb_dst = (uint8_t *)frame->data; | 120 | frame->rgb_dst = (uint8_t *)frame->data; |
119 | break; | 121 | break; |
120 | } | 122 | } |
121 | } | 123 | } |
122 | 124 | ||
123 | 125 | ||
124 | /* take care of the frame*/ | 126 | /* take care of the frame*/ |
125 | static void null_frame_dispose( vo_frame_t* vo_img){ | 127 | static void null_frame_dispose( vo_frame_t* vo_img){ |
126 | opie_frame_t* frame = (opie_frame_t*)vo_img; | 128 | opie_frame_t* frame = (opie_frame_t*)vo_img; |
127 | printf("frame_dispose\n"); | 129 | printf("frame_dispose\n"); |
128 | if( frame->data ) | 130 | if( frame->data ) |
129 | free( frame->data ); | 131 | free( frame->data ); |
130 | free (frame); | 132 | free (frame); |
131 | } | 133 | } |
132 | 134 | ||
133 | /* end take care of frames*/ | 135 | /* end take care of frames*/ |
134 | 136 | ||
135 | static vo_frame_t* null_alloc_frame( vo_driver_t* self ){ | 137 | static vo_frame_t* null_alloc_frame( vo_driver_t* self ){ |
136 | null_driver_t* this = (null_driver_t*)self; | 138 | null_driver_t* this = (null_driver_t*)self; |
137 | opie_frame_t* frame; | 139 | opie_frame_t* frame; |
138 | frame = (opie_frame_t*)malloc ( sizeof(opie_frame_t) ); | 140 | frame = (opie_frame_t*)malloc ( sizeof(opie_frame_t) ); |
139 | 141 | ||
140 | memset( frame, 0, sizeof( opie_frame_t) ); | 142 | memset( frame, 0, sizeof( opie_frame_t) ); |
141 | pthread_mutex_init (&frame->frame.mutex, NULL); | 143 | pthread_mutex_init (&frame->frame.mutex, NULL); |
142 | 144 | ||
143 | printf("alloc_frame\n"); | 145 | printf("alloc_frame\n"); |
144 | frame->name = "opie\0"; | 146 | frame->name = "opie\0"; |
diff --git a/noncore/multimedia/opieplayer2/xinevideowidget.cpp b/noncore/multimedia/opieplayer2/xinevideowidget.cpp index e46c4df..8e8f139 100644 --- a/noncore/multimedia/opieplayer2/xinevideowidget.cpp +++ b/noncore/multimedia/opieplayer2/xinevideowidget.cpp | |||
@@ -1,258 +1,267 @@ | |||
1 | 1 | ||
2 | /* | 2 | /* |
3 | This file is part of the Opie Project | 3 | This file is part of the Opie Project |
4 | 4 | ||
5 | Copyright (c) 2002 Max Reiss <harlekin@handhelds.org> | 5 | Copyright (c) 2002 Max Reiss <harlekin@handhelds.org> |
6 | Copyright (c) 2002 LJP <> | 6 | Copyright (c) 2002 LJP <> |
7 | Copyright (c) 2002 Holger Freyther <zecke@handhelds.org> | 7 | Copyright (c) 2002 Holger Freyther <zecke@handhelds.org> |
8 | =. | 8 | =. |
9 | .=l. | 9 | .=l. |
10 | .>+-= | 10 | .>+-= |
11 | _;:, .> :=|. This program is free software; you can | 11 | _;:, .> :=|. This program is free software; you can |
12 | .> <`_, > . <= redistribute it and/or modify it under | 12 | .> <`_, > . <= redistribute it and/or modify it under |
13 | :`=1 )Y*s>-.-- : the terms of the GNU General Public | 13 | :`=1 )Y*s>-.-- : the terms of the GNU General Public |
14 | .="- .-=="i, .._ License as published by the Free Software | 14 | .="- .-=="i, .._ License as published by the Free Software |
15 | - . .-<_> .<> Foundation; either version 2 of the License, | 15 | - . .-<_> .<> Foundation; either version 2 of the License, |
16 | ._= =} : or (at your option) any later version. | 16 | ._= =} : or (at your option) any later version. |
17 | .%`+i> _;_. | 17 | .%`+i> _;_. |
18 | .i_,=:_. -<s. This program is distributed in the hope that | 18 | .i_,=:_. -<s. This program is distributed in the hope that |
19 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | 19 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; |
20 | : .. .:, . . . without even the implied warranty of | 20 | : .. .:, . . . without even the implied warranty of |
21 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | 21 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A |
22 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | 22 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU |
23 | ..}^=.= = ; Library General Public License for more | 23 | ..}^=.= = ; Library General Public License for more |
24 | ++= -. .` .: details. | 24 | ++= -. .` .: details. |
25 | : = ...= . :.=- | 25 | : = ...= . :.=- |
26 | -. .:....=;==+<; You should have received a copy of the GNU | 26 | -. .:....=;==+<; You should have received a copy of the GNU |
27 | -_. . . )=. = Library General Public License along with | 27 | -_. . . )=. = Library General Public License along with |
28 | -- :-=` this library; see the file COPYING.LIB. | 28 | -- :-=` this library; see the file COPYING.LIB. |
29 | If not, write to the Free Software Foundation, | 29 | If not, write to the Free Software Foundation, |
30 | Inc., 59 Temple Place - Suite 330, | 30 | Inc., 59 Temple Place - Suite 330, |
31 | Boston, MA 02111-1307, USA. | 31 | Boston, MA 02111-1307, USA. |
32 | 32 | ||
33 | */ | 33 | */ |
34 | 34 | ||
35 | #include <qimage.h> | 35 | #include <qimage.h> |
36 | #include <qpainter.h> | 36 | #include <qpainter.h> |
37 | #include <qgfx_qws.h> | 37 | #include <qgfx_qws.h> |
38 | #include <qdirectpainter_qws.h> | 38 | #include <qdirectpainter_qws.h> |
39 | #include <qsize.h> | 39 | #include <qsize.h> |
40 | 40 | ||
41 | #include <qpe/resource.h> | 41 | #include <qpe/resource.h> |
42 | 42 | ||
43 | #include "xinevideowidget.h" | 43 | #include "xinevideowidget.h" |
44 | 44 | ||
45 | static inline void memcpy_rev ( void *dst, void *src, size_t len ) | 45 | static inline void memcpy_rev ( void *dst, void *src, size_t len ) |
46 | { | 46 | { |
47 | ((char *) src ) += len; | 47 | ((char *) src ) += len; |
48 | 48 | ||
49 | len >>= 1; | 49 | len >>= 1; |
50 | while ( len-- ) | 50 | while ( len-- ) |
51 | *((short int *) dst )++ = *--((short int *) src ); | 51 | *((short int *) dst )++ = *--((short int *) src ); |
52 | } | 52 | } |
53 | 53 | ||
54 | static inline void memcpy_step ( void *dst, void *src, size_t len, size_t step ) | 54 | static inline void memcpy_step ( void *dst, void *src, size_t len, size_t step ) |
55 | { | 55 | { |
56 | len >>= 1; | 56 | len >>= 1; |
57 | while ( len-- ) { | 57 | while ( len-- ) { |
58 | // *((char *) dst ) = *((char *) src + 1); | ||
59 | // *((char *) dst + 1) = *((char *) src ); | ||
60 | // ((char *) dst ) += 2; | ||
61 | |||
58 | *((short int *) dst )++ = *((short int *) src ); | 62 | *((short int *) dst )++ = *((short int *) src ); |
59 | ((char *) src ) += step; | 63 | ((char *) src ) += step; |
60 | } | 64 | } |
61 | } | 65 | } |
62 | 66 | ||
63 | static inline void memcpy_step_rev ( void *dst, void *src, size_t len, size_t step ) | 67 | static inline void memcpy_step_rev ( void *dst, void *src, size_t len, size_t step ) |
64 | { | 68 | { |
65 | len >>= 1; | 69 | len >>= 1; |
66 | 70 | ||
67 | ((char *) src ) += ( len * step ); | 71 | ((char *) src ) += ( len * step ); |
68 | 72 | ||
69 | while ( len-- ) { | 73 | while ( len-- ) { |
70 | ((char *) src ) -= step; | 74 | ((char *) src ) -= step; |
71 | *((short int *) dst )++ = *((short int *) src ); | 75 | *((short int *) dst )++ = *((short int *) src ); |
76 | |||
77 | // *((char *) dst ) = *((char *) src + 1); | ||
78 | // *((char *) dst + 1) = *((char *) src ); | ||
79 | // ((char *) dst ) += 2; | ||
72 | } | 80 | } |
73 | } | 81 | } |
74 | 82 | ||
75 | 83 | ||
76 | XineVideoWidget::XineVideoWidget( int width, | 84 | XineVideoWidget::XineVideoWidget( int width, |
77 | int height, | 85 | int height, |
78 | QWidget* parent, | 86 | QWidget* parent, |
79 | const char* name ) | 87 | const char* name ) |
80 | : QWidget ( parent, name, WRepaintNoErase | WResizeNoErase ) | 88 | : QWidget ( parent, name, WRepaintNoErase | WResizeNoErase ) |
81 | { | 89 | { |
82 | m_image = new QImage ( width, height, qt_screen-> depth ( )); | 90 | m_image = new QImage ( width, height, qt_screen-> depth ( )); |
83 | m_buff = 0; | 91 | m_buff = 0; |
84 | setBackgroundMode ( NoBackground ); | 92 | setBackgroundMode ( NoBackground ); |
85 | /* QImage image = Resource::loadImage("SoundPlayer"); | 93 | /* QImage image = Resource::loadImage("SoundPlayer"); |
86 | image = image.smoothScale( width, height ); | 94 | image = image.smoothScale( width, height ); |
87 | 95 | ||
88 | m_image = new QImage( image );*/ | 96 | m_image = new QImage( image );*/ |
89 | } | 97 | } |
90 | 98 | ||
91 | XineVideoWidget::~XineVideoWidget ( ) | 99 | XineVideoWidget::~XineVideoWidget ( ) |
92 | { | 100 | { |
93 | delete m_image; | 101 | delete m_image; |
94 | } | 102 | } |
95 | 103 | ||
96 | void XineVideoWidget::clear ( ) | 104 | void XineVideoWidget::clear ( ) |
97 | { | 105 | { |
98 | m_buff = 0; | 106 | m_buff = 0; |
99 | repaint ( false ); | 107 | repaint ( false ); |
100 | } | 108 | } |
101 | 109 | ||
102 | void XineVideoWidget::paintEvent ( QPaintEvent * ) | 110 | void XineVideoWidget::paintEvent ( QPaintEvent * ) |
103 | { | 111 | { |
104 | qWarning( "painting" ); | 112 | qWarning( "painting <<<" ); |
105 | if ( m_buff == 0 ) { | 113 | if ( m_buff == 0 ) { |
106 | QPainter p ( this ); | 114 | QPainter p ( this ); |
107 | p. fillRect ( rect ( ), black ); | 115 | p. fillRect ( rect ( ), black ); |
108 | p. drawImage ( 0, 0, *m_image ); | 116 | p. drawImage ( 0, 0, *m_image ); |
109 | qWarning ( "logo\n" ); | 117 | qWarning ( "logo\n" ); |
110 | } | 118 | } |
111 | else { | 119 | else { |
112 | qWarning ( "paintevent\n" ); | 120 | // qWarning ( "paintevent\n" ); |
113 | 121 | ||
114 | QArray <QRect> qt_bug_workaround_clip_rects; | 122 | QArray <QRect> qt_bug_workaround_clip_rects; |
115 | 123 | ||
116 | { | 124 | { |
117 | QDirectPainter dp ( this ); | 125 | QDirectPainter dp ( this ); |
118 | 126 | ||
127 | int rot = dp. transformOrientation ( ); | ||
128 | |||
119 | uchar *fb = dp. frameBuffer ( ); | 129 | uchar *fb = dp. frameBuffer ( ); |
120 | uchar *frame = m_buff; // rot == 0 ? m_buff : m_buff + ( m_thisframe. height ( ) - 1 ) * m_bytes_per_line_frame; | 130 | uchar *frame = m_buff; // rot == 0 ? m_buff : m_buff + ( m_thisframe. height ( ) - 1 ) * m_bytes_per_line_frame; |
121 | 131 | ||
122 | QRect framerect = QRect ( mapToGlobal ( m_thisframe. topLeft ( )), m_thisframe. size ( )); | 132 | QRect framerect = QRect ( mapToGlobal ( m_thisframe. topLeft ( )), m_thisframe. size ( )); |
123 | 133 | ||
124 | qt_bug_workaround_clip_rects. resize ( dp. numRects ( )); | 134 | qt_bug_workaround_clip_rects. resize ( dp. numRects ( )); |
125 | 135 | ||
126 | for ( int i = dp. numRects ( ) - 1; i >= 0; i-- ) { | 136 | for ( int i = dp. numRects ( ) - 1; i >= 0; i-- ) { |
127 | const QRect &clip = dp. rect ( i ); | 137 | const QRect &clip = dp. rect ( i ); |
128 | 138 | ||
129 | qt_bug_workaround_clip_rects [i] = clip; | 139 | qt_bug_workaround_clip_rects [i] = clip; |
130 | 140 | ||
131 | int rot = dp. transformOrientation ( ); | ||
132 | |||
133 | if ( rot == 0 || rot == 180 ) { | 141 | if ( rot == 0 || rot == 180 ) { |
134 | uchar *dst = fb + ( clip. x ( ) * m_bytes_per_pixel ) + ( clip. y ( ) * m_bytes_per_line_fb ); | 142 | uchar *dst = fb + ( clip. x ( ) * m_bytes_per_pixel ) + ( clip. y ( ) * m_bytes_per_line_fb ); |
135 | uchar *src = frame + (( clip. x ( ) - framerect. x ( )) * m_bytes_per_pixel ) + (( clip. y ( ) - framerect. y ( )) * m_bytes_per_line_frame ); | 143 | uchar *src = frame + (( clip. x ( ) - framerect. x ( )) * m_bytes_per_pixel ) + (( clip. y ( ) - framerect. y ( )) * m_bytes_per_line_frame ); |
136 | 144 | ||
137 | if ( rot == 180 ) | 145 | if ( rot == 180 ) |
138 | src += (( framerect. height ( ) - 1 ) * m_bytes_per_line_frame ); | 146 | src += (( framerect. height ( ) - 1 ) * m_bytes_per_line_frame ); |
139 | 147 | ||
140 | uint leftfill = 0; | 148 | uint leftfill = 0; |
141 | uint framefill = 0; | 149 | uint framefill = 0; |
142 | uint rightfill = 0; | 150 | uint rightfill = 0; |
143 | uint clipwidth = clip. width ( ) * m_bytes_per_pixel; | 151 | uint clipwidth = clip. width ( ) * m_bytes_per_pixel; |
144 | 152 | ||
145 | if ( clip. left ( ) < framerect. left ( )) | 153 | if ( clip. left ( ) < framerect. left ( )) |
146 | leftfill = (( framerect. left ( ) - clip. left ( )) * m_bytes_per_pixel ) <? clipwidth; | 154 | leftfill = (( framerect. left ( ) - clip. left ( )) * m_bytes_per_pixel ) <? clipwidth; |
147 | if ( clip. right ( ) > framerect. right ( )) | 155 | if ( clip. right ( ) > framerect. right ( )) |
148 | rightfill = (( clip. right ( ) - framerect. right ( )) * m_bytes_per_pixel ) <? clipwidth; | 156 | rightfill = (( clip. right ( ) - framerect. right ( )) * m_bytes_per_pixel ) <? clipwidth; |
149 | 157 | ||
150 | framefill = clipwidth - ( leftfill + rightfill ); | 158 | framefill = clipwidth - ( leftfill + rightfill ); |
151 | 159 | ||
152 | for ( int y = clip. top ( ); y <= clip. bottom ( ); y++ ) { | 160 | for ( int y = clip. top ( ); y <= clip. bottom ( ); y++ ) { |
153 | if (( y < framerect. top ( )) || ( y > framerect. bottom ( ))) { | 161 | if (( y < framerect. top ( )) || ( y > framerect. bottom ( ))) { |
154 | memset ( dst, 0, clipwidth ); | 162 | memset ( dst, 0, clipwidth ); |
155 | } | 163 | } |
156 | else { | 164 | else { |
157 | if ( leftfill ) | 165 | if ( leftfill ) |
158 | memset ( dst, 0, leftfill ); | 166 | memset ( dst, 0, leftfill ); |
159 | 167 | ||
160 | if ( framefill ) { | 168 | if ( framefill ) { |
161 | if ( rot == 0 ) | 169 | if ( rot == 0 ) |
162 | memcpy ( dst + leftfill, src, framefill ); | 170 | memcpy ( dst + leftfill, src, framefill ); |
163 | else | 171 | else |
164 | memcpy_rev ( dst + leftfill, src, framefill ); | 172 | memcpy_rev ( dst + leftfill, src, framefill ); |
165 | } | 173 | } |
166 | if ( rightfill ) | 174 | if ( rightfill ) |
167 | memset ( dst + leftfill + framefill, 0, rightfill ); | 175 | memset ( dst + leftfill + framefill, 0, rightfill ); |
168 | } | 176 | } |
169 | 177 | ||
170 | dst += m_bytes_per_line_fb; | 178 | dst += m_bytes_per_line_fb; |
171 | src += ( rot == 0 ? m_bytes_per_line_frame : -m_bytes_per_line_frame ); | 179 | src += ( rot == 0 ? m_bytes_per_line_frame : -m_bytes_per_line_frame ); |
172 | } | 180 | } |
173 | } | 181 | } |
174 | else { // rot == 90 || rot == 270 | 182 | else { // rot == 90 || rot == 270 |
175 | uchar *dst = fb + ( clip. y ( ) * m_bytes_per_pixel ) + ( clip. x ( ) * m_bytes_per_line_fb ); | 183 | uchar *dst = fb + ( clip. y ( ) * m_bytes_per_pixel ) + ( clip. x ( ) * m_bytes_per_line_fb ); |
176 | uchar *src = frame + (( clip. x ( ) - framerect. x ( )) * m_bytes_per_pixel ) + (( clip. y ( ) - framerect. y ( )) * m_bytes_per_line_frame ); | 184 | uchar *src = frame + (( clip. x ( ) - framerect. x ( )) * m_bytes_per_pixel ) + (( clip. y ( ) - framerect. y ( )) * m_bytes_per_line_frame ); |
177 | 185 | ||
178 | if ( rot == 270 ) | 186 | if ( rot == 270 ) |
179 | src += (( framerect. height ( ) - 1 ) * m_bytes_per_line_frame ); | 187 | src += (( framerect. height ( ) - 1 ) * m_bytes_per_pixel ); |
180 | 188 | ||
181 | uint leftfill = 0; | 189 | uint leftfill = 0; |
182 | uint framefill = 0; | 190 | uint framefill = 0; |
183 | uint rightfill = 0; | 191 | uint rightfill = 0; |
184 | uint clipwidth = clip. height ( ) * m_bytes_per_pixel; | 192 | uint clipwidth = clip. height ( ) * m_bytes_per_pixel; |
185 | 193 | ||
186 | if ( clip. bottom ( ) > framerect. bottom ( )) | 194 | if ( clip. bottom ( ) > framerect. bottom ( )) |
187 | leftfill = (( clip. bottom ( ) - framerect. bottom ( )) * m_bytes_per_pixel ) <? clipwidth; | 195 | leftfill = (( clip. bottom ( ) - framerect. bottom ( )) * m_bytes_per_pixel ) <? clipwidth; |
188 | if ( clip. top ( ) < framerect. top ( )) | 196 | if ( clip. top ( ) < framerect. top ( )) |
189 | rightfill = (( framerect. top ( ) - framerect. top ( )) * m_bytes_per_pixel ) <? clipwidth; | 197 | rightfill = (( framerect. top ( ) - framerect. top ( )) * m_bytes_per_pixel ) <? clipwidth; |
190 | 198 | ||
191 | framefill = clipwidth - ( leftfill + rightfill ); | 199 | framefill = clipwidth - ( leftfill + rightfill ); |
192 | 200 | ||
193 | for ( int y = clip. left ( ); y <= clip. right ( ); y++ ) { | 201 | for ( int y = clip. left ( ); y <= clip. right ( ); y++ ) { |
194 | if (( y < framerect. left ( )) || ( y > framerect. right ( ))) { | 202 | if (( y < framerect. left ( )) || ( y > framerect. right ( ))) { |
195 | memset ( dst, 0, clipwidth ); | 203 | memset ( dst, 0, clipwidth ); |
196 | } | 204 | } |
197 | else { | 205 | else { |
198 | if ( leftfill ) | 206 | if ( leftfill ) |
199 | memset ( dst, 0, leftfill ); | 207 | memset ( dst, 0, leftfill ); |
200 | 208 | ||
201 | if ( framefill ) { | 209 | if ( framefill ) { |
202 | if ( rot == 90 ) | 210 | if ( rot == 90 ) |
203 | memcpy_step ( dst + leftfill, src, framefill, m_bytes_per_line_frame ); | ||
204 | else | ||
205 | memcpy_step_rev ( dst + leftfill, src, framefill, m_bytes_per_line_frame ); | 211 | memcpy_step_rev ( dst + leftfill, src, framefill, m_bytes_per_line_frame ); |
212 | else | ||
213 | memcpy_step ( dst + leftfill, src, framefill, m_bytes_per_line_frame ); | ||
206 | } | 214 | } |
207 | if ( rightfill ) | 215 | if ( rightfill ) |
208 | memset ( dst + leftfill + framefill, 0, rightfill ); | 216 | memset ( dst + leftfill + framefill, 0, rightfill ); |
209 | } | 217 | } |
210 | 218 | ||
211 | dst += m_bytes_per_line_fb; | 219 | dst += m_bytes_per_line_fb; |
212 | src += ( rot == 90 ? +1 : -1 ); // m_bytes_per_line_frame : -m_bytes_per_line_frame ); | 220 | src += ( rot == 270 ? -m_bytes_per_pixel : m_bytes_per_pixel ); |
213 | } | 221 | } |
214 | } | 222 | } |
215 | } | 223 | } |
216 | } | 224 | } |
217 | { | 225 | { |
218 | // QVFB hack by MArtin Jones | 226 | // QVFB hack by MArtin Jones |
219 | QPainter p ( this ); | 227 | QPainter p ( this ); |
220 | 228 | ||
221 | for ( int i = qt_bug_workaround_clip_rects. size ( ) - 1; i >= 0; i-- ) { | 229 | for ( int i = qt_bug_workaround_clip_rects. size ( ) - 1; i >= 0; i-- ) { |
222 | p. fillRect ( QRect ( mapFromGlobal ( qt_bug_workaround_clip_rects [i]. topLeft ( )), qt_bug_workaround_clip_rects [i]. size ( )), QBrush ( NoBrush ) ); | 230 | p. fillRect ( QRect ( mapFromGlobal ( qt_bug_workaround_clip_rects [i]. topLeft ( )), qt_bug_workaround_clip_rects [i]. size ( )), QBrush ( NoBrush ) ); |
223 | } | 231 | } |
224 | } | 232 | } |
225 | } | 233 | } |
234 | qWarning( "painting >>>" ); | ||
226 | } | 235 | } |
227 | 236 | ||
228 | int XineVideoWidget::height ( ) const | 237 | int XineVideoWidget::height ( ) const |
229 | { | 238 | { |
230 | return m_image-> height ( ); | 239 | return m_image-> height ( ); |
231 | } | 240 | } |
232 | 241 | ||
233 | int XineVideoWidget::width ( ) const | 242 | int XineVideoWidget::width ( ) const |
234 | { | 243 | { |
235 | return m_image-> width ( ); | 244 | return m_image-> width ( ); |
236 | } | 245 | } |
237 | 246 | ||
238 | void XineVideoWidget::setImage ( QImage* image ) | 247 | void XineVideoWidget::setImage ( QImage* image ) |
239 | { | 248 | { |
240 | delete m_image; | 249 | delete m_image; |
241 | m_image = image; | 250 | m_image = image; |
242 | } | 251 | } |
243 | 252 | ||
244 | void XineVideoWidget::setImage( uchar* image, int yoffsetXLine, | 253 | void XineVideoWidget::setImage( uchar* image, int yoffsetXLine, |
245 | int xoffsetXBytes, int width, | 254 | int xoffsetXBytes, int width, |
246 | int height, int linestep, int bytes, int bpp ) | 255 | int height, int linestep, int bytes, int bpp ) |
247 | { | 256 | { |
248 | 257 | ||
249 | m_lastframe = m_thisframe; | 258 | m_lastframe = m_thisframe; |
250 | m_thisframe. setRect ( xoffsetXBytes, yoffsetXLine, width, height ); | 259 | m_thisframe. setRect ( xoffsetXBytes, yoffsetXLine, width, height ); |
251 | 260 | ||
252 | m_buff = image; | 261 | m_buff = image; |
253 | m_bytes_per_line_fb = linestep; | 262 | m_bytes_per_line_fb = linestep; |
254 | m_bytes_per_line_frame = bytes; | 263 | m_bytes_per_line_frame = bytes; |
255 | m_bytes_per_pixel = bpp; | 264 | m_bytes_per_pixel = bpp; |
256 | 265 | ||
257 | repaint ((( m_thisframe & m_lastframe ) != m_lastframe ) ? m_lastframe : m_thisframe, false ); | 266 | repaint ((( m_thisframe & m_lastframe ) != m_lastframe ) ? m_lastframe : m_thisframe, false ); |
258 | } | 267 | } |