-rw-r--r-- | noncore/multimedia/opieplayer2/xinevideowidget.cpp | 66 |
1 files changed, 47 insertions, 19 deletions
diff --git a/noncore/multimedia/opieplayer2/xinevideowidget.cpp b/noncore/multimedia/opieplayer2/xinevideowidget.cpp index b55750a..15c611f 100644 --- a/noncore/multimedia/opieplayer2/xinevideowidget.cpp +++ b/noncore/multimedia/opieplayer2/xinevideowidget.cpp | |||
@@ -17,97 +17,125 @@ | |||
17 | .i_,=:_. -<s. This program is distributed in the hope that | 17 | .i_,=:_. -<s. This program is distributed in the hope that |
18 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | 18 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; |
19 | : .. .:, . . . without even the implied warranty of | 19 | : .. .:, . . . without even the implied warranty of |
20 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | 20 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A |
21 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | 21 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU |
22 | ..}^=.= = ; Library General Public License for more | 22 | ..}^=.= = ; Library General Public License for more |
23 | ++= -. .` .: details. | 23 | ++= -. .` .: details. |
24 | : = ...= . :.=- | 24 | : = ...= . :.=- |
25 | -. .:....=;==+<; You should have received a copy of the GNU | 25 | -. .:....=;==+<; You should have received a copy of the GNU |
26 | -_. . . )=. = Library General Public License along with | 26 | -_. . . )=. = Library General Public License along with |
27 | -- :-=` this library; see the file COPYING.LIB. | 27 | -- :-=` this library; see the file COPYING.LIB. |
28 | If not, write to the Free Software Foundation, | 28 | If not, write to the Free Software Foundation, |
29 | Inc., 59 Temple Place - Suite 330, | 29 | Inc., 59 Temple Place - Suite 330, |
30 | Boston, MA 02111-1307, USA. | 30 | Boston, MA 02111-1307, USA. |
31 | 31 | ||
32 | */ | 32 | */ |
33 | 33 | ||
34 | #include <qimage.h> | 34 | #include <qimage.h> |
35 | #include <qdirectpainter_qws.h> | 35 | #include <qdirectpainter_qws.h> |
36 | #include <qgfx_qws.h> | 36 | #include <qgfx_qws.h> |
37 | #include <qsize.h> | 37 | #include <qsize.h> |
38 | #include <qapplication.h> | 38 | #include <qapplication.h> |
39 | 39 | ||
40 | #include <qpe/resource.h> | 40 | #include <qpe/resource.h> |
41 | 41 | ||
42 | #include "xinevideowidget.h" | 42 | #include "xinevideowidget.h" |
43 | 43 | ||
44 | 44 | ||
45 | // 0 deg rot: copy a line from src to dst (use libc memcpy) | 45 | // 0 deg rot: copy a line from src to dst (use libc memcpy) |
46 | 46 | ||
47 | // 180 deg rot: copy a line from src to dst reversed | 47 | // 180 deg rot: copy a line from src to dst reversed |
48 | 48 | ||
49 | static inline void memcpy_rev ( void *dst, void *src, size_t len ) | 49 | /* |
50 | * This code relies the len be a multiply of 16bit | ||
51 | */ | ||
52 | static inline void memcpy_rev ( void *_dst, void *_src, size_t len ) | ||
50 | { | 53 | { |
51 | len >>= 1; | 54 | /* |
52 | 55 | * move the source to the end | |
53 | ((char *) src ) += ( len << 1 ); | 56 | */ |
57 | char *src_c = static_cast<char*>(_src) + len; | ||
58 | |||
59 | /* | ||
60 | * as we copy by 16bit and not 8bit | ||
61 | * devide the length by two | ||
62 | */ | ||
63 | len >>= 1; | ||
64 | |||
65 | short int* dst = static_cast<short int*>( _dst ); | ||
66 | short int* src = reinterpret_cast<short int*>( src_c ); | ||
67 | |||
68 | /* | ||
69 | * Increment dst after assigning | ||
70 | * Decrement src before assigning becase we move backwards | ||
71 | */ | ||
72 | while ( len-- ) | ||
73 | *dst++ = *--src; | ||
54 | 74 | ||
55 | while ( len-- ) | ||
56 | *((short int *) dst )++ = *--((short int *) src ); | ||
57 | } | 75 | } |
58 | 76 | ||
59 | // 90 deg rot: copy a column from src to dst | 77 | // 90 deg rot: copy a column from src to dst |
60 | 78 | ||
61 | static inline void memcpy_step ( void *dst, void *src, size_t len, size_t step ) | 79 | static inline void memcpy_step ( void *_dst, void *_src, size_t len, size_t step ) |
62 | { | 80 | { |
63 | len >>= 1; | 81 | short int *dst = static_cast<short int*>( _dst ); |
64 | while ( len-- ) { | 82 | short int *src = static_cast<short int*>( _src ); |
65 | *((short int *) dst )++ = *((short int *) src ); | 83 | |
66 | ((char *) src ) += step; | 84 | len >>= 1; |
67 | } | 85 | |
86 | /* | ||
87 | * Copy 16bit from src to dst and move to the next address | ||
88 | */ | ||
89 | while ( len-- ) { | ||
90 | *dst++ = *src; | ||
91 | src = reinterpret_cast<short int*>(reinterpret_cast<char*>(src)+step); | ||
92 | } | ||
68 | } | 93 | } |
69 | 94 | ||
70 | // 270 deg rot: copy a column from src to dst reversed | 95 | // 270 deg rot: copy a column from src to dst reversed |
71 | 96 | ||
72 | static inline void memcpy_step_rev ( void *dst, void *src, size_t len, size_t step ) | 97 | static inline void memcpy_step_rev ( void *_dst, void *_src, size_t len, size_t step ) |
73 | { | 98 | { |
74 | len >>= 1; | 99 | len >>= 1; |
75 | 100 | ||
76 | ((char *) src ) += ( len * step ); | 101 | char *src_c = static_cast<char*>( _src ) + (len*step); |
102 | short int* dst = static_cast<short int*>( _dst ); | ||
103 | short int* src = reinterpret_cast<short int*>( src_c ); | ||
77 | 104 | ||
78 | while ( len-- ) { | 105 | while ( len-- ) { |
79 | ((char *) src ) -= step; | 106 | src_c -= step; |
80 | *((short int *) dst )++ = *((short int *) src ); | 107 | src = reinterpret_cast<short int*>( src_c ); |
81 | } | 108 | *dst++ = *src; |
109 | } | ||
82 | } | 110 | } |
83 | 111 | ||
84 | 112 | ||
85 | XineVideoWidget::XineVideoWidget ( QWidget* parent, const char* name ) | 113 | XineVideoWidget::XineVideoWidget ( QWidget* parent, const char* name ) |
86 | : QWidget ( parent, name, WRepaintNoErase | WResizeNoErase ) | 114 | : QWidget ( parent, name, WRepaintNoErase | WResizeNoErase ) |
87 | { | 115 | { |
88 | setBackgroundMode ( NoBackground ); | 116 | setBackgroundMode ( NoBackground ); |
89 | 117 | ||
90 | m_logo = 0; | 118 | m_logo = 0; |
91 | m_buff = 0; | 119 | m_buff = 0; |
92 | m_bytes_per_line_fb = qt_screen-> linestep ( ); | 120 | m_bytes_per_line_fb = qt_screen-> linestep ( ); |
93 | m_bytes_per_pixel = ( qt_screen->depth() + 7 ) / 8; | 121 | m_bytes_per_pixel = ( qt_screen->depth() + 7 ) / 8; |
94 | m_rotation = 0; | 122 | m_rotation = 0; |
95 | } | 123 | } |
96 | 124 | ||
97 | 125 | ||
98 | XineVideoWidget::~XineVideoWidget ( ) | 126 | XineVideoWidget::~XineVideoWidget ( ) |
99 | { | 127 | { |
100 | delete m_logo; | 128 | delete m_logo; |
101 | } | 129 | } |
102 | 130 | ||
103 | void XineVideoWidget::clear ( ) | 131 | void XineVideoWidget::clear ( ) |
104 | { | 132 | { |
105 | m_buff = 0; | 133 | m_buff = 0; |
106 | repaint ( false ); | 134 | repaint ( false ); |
107 | } | 135 | } |
108 | 136 | ||
109 | QSize XineVideoWidget::videoSize() const | 137 | QSize XineVideoWidget::videoSize() const |
110 | { | 138 | { |
111 | QSize s = size(); | 139 | QSize s = size(); |
112 | bool fs = ( s == qApp->desktop()->size() ); | 140 | bool fs = ( s == qApp->desktop()->size() ); |
113 | 141 | ||