author | simon <simon> | 2002-12-13 22:52:38 (UTC) |
---|---|---|
committer | simon <simon> | 2002-12-13 22:52:38 (UTC) |
commit | 7a5b1d2dd538ee6d401e795057660f58e9a60eab (patch) (unidiff) | |
tree | 612483f02744b6b7f85ee4552c9227f2918293ef | |
parent | 15b3146ee488a3f31f355ece580f444c48bfc7e9 (diff) | |
download | opie-7a5b1d2dd538ee6d401e795057660f58e9a60eab.zip opie-7a5b1d2dd538ee6d401e795057660f58e9a60eab.tar.gz opie-7a5b1d2dd538ee6d401e795057660f58e9a60eab.tar.bz2 |
- oops #1
-rw-r--r-- | noncore/multimedia/opieplayer2/lib.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/multimedia/opieplayer2/lib.cpp b/noncore/multimedia/opieplayer2/lib.cpp index 9d4b1be..040eab3 100644 --- a/noncore/multimedia/opieplayer2/lib.cpp +++ b/noncore/multimedia/opieplayer2/lib.cpp | |||
@@ -44,193 +44,193 @@ | |||
44 | #include <qdirectpainter_qws.h> | 44 | #include <qdirectpainter_qws.h> |
45 | 45 | ||
46 | #include <assert.h> | 46 | #include <assert.h> |
47 | 47 | ||
48 | #include "xinevideowidget.h" | 48 | #include "xinevideowidget.h" |
49 | #include "frame.h" | 49 | #include "frame.h" |
50 | #include "lib.h" | 50 | #include "lib.h" |
51 | 51 | ||
52 | 52 | ||
53 | typedef void (*display_xine_frame_t) (void *user_data, uint8_t* frame, | 53 | typedef void (*display_xine_frame_t) (void *user_data, uint8_t* frame, |
54 | int width, int height,int bytes ); | 54 | int width, int height,int bytes ); |
55 | 55 | ||
56 | extern "C" { | 56 | extern "C" { |
57 | xine_vo_driver_t* init_video_out_plugin( xine_t *xine, void* video, display_xine_frame_t, void * ); | 57 | xine_vo_driver_t* init_video_out_plugin( xine_t *xine, void* video, display_xine_frame_t, void * ); |
58 | int null_is_showing_video( const xine_vo_driver_t* self ); | 58 | int null_is_showing_video( const xine_vo_driver_t* self ); |
59 | void null_set_show_video( const xine_vo_driver_t* self, int show ); | 59 | void null_set_show_video( const xine_vo_driver_t* self, int show ); |
60 | int null_is_fullscreen( const xine_vo_driver_t* self ); | 60 | int null_is_fullscreen( const xine_vo_driver_t* self ); |
61 | void null_set_fullscreen( const xine_vo_driver_t* self, int screen ); | 61 | void null_set_fullscreen( const xine_vo_driver_t* self, int screen ); |
62 | int null_is_scaling( const xine_vo_driver_t* self ); | 62 | int null_is_scaling( const xine_vo_driver_t* self ); |
63 | void null_set_scaling( const xine_vo_driver_t* self, int scale ); | 63 | void null_set_scaling( const xine_vo_driver_t* self, int scale ); |
64 | void null_set_gui_width( const xine_vo_driver_t* self, int width ); | 64 | void null_set_gui_width( const xine_vo_driver_t* self, int width ); |
65 | void null_set_gui_height( const xine_vo_driver_t* self, int height ); | 65 | void null_set_gui_height( const xine_vo_driver_t* self, int height ); |
66 | void null_set_mode( const xine_vo_driver_t* self, int depth, int rgb ); | 66 | void null_set_mode( const xine_vo_driver_t* self, int depth, int rgb ); |
67 | void null_set_videoGamma( const xine_vo_driver_t* self , int value ); | 67 | void null_set_videoGamma( const xine_vo_driver_t* self , int value ); |
68 | void null_display_handler( const xine_vo_driver_t* self, display_xine_frame_t t, void* user_data ); | 68 | void null_display_handler( const xine_vo_driver_t* self, display_xine_frame_t t, void* user_data ); |
69 | } | 69 | } |
70 | 70 | ||
71 | using namespace XINE; | 71 | using namespace XINE; |
72 | 72 | ||
73 | Lib::Lib( InitializationMode initMode, XineVideoWidget* widget ) | 73 | Lib::Lib( InitializationMode initMode, XineVideoWidget* widget ) |
74 | { | 74 | { |
75 | m_initialized = false; | 75 | m_initialized = false; |
76 | m_video = false; | 76 | m_video = false; |
77 | m_wid = widget; | 77 | m_wid = widget; |
78 | printf("Lib"); | 78 | printf("Lib"); |
79 | QString configPath = QDir::homeDirPath() + "/Settings/opiexine.cf"; | 79 | QString configPath = QDir::homeDirPath() + "/Settings/opiexine.cf"; |
80 | // get the configuration | 80 | // get the configuration |
81 | 81 | ||
82 | // not really OO, should be an extra class, later | 82 | // not really OO, should be an extra class, later |
83 | if ( !QFile::exists(configPath) ) { | 83 | if ( !QFile::exists(configPath) ) { |
84 | QFile f(configPath); | 84 | QFile f(configPath); |
85 | f.open(IO_WriteOnly); | 85 | f.open(IO_WriteOnly); |
86 | QTextStream ts( &f ); | 86 | QTextStream ts( &f ); |
87 | ts << "misc.memcpy_method:glibc\n"; | 87 | ts << "misc.memcpy_method:glibc\n"; |
88 | f.close(); | 88 | f.close(); |
89 | } | 89 | } |
90 | 90 | ||
91 | if ( initMode == InitializeImmediately ) { | 91 | if ( initMode == InitializeImmediately ) { |
92 | initialize(); | 92 | initialize(); |
93 | m_initialized = true; | 93 | m_initialized = true; |
94 | } | 94 | } |
95 | else | 95 | else |
96 | assert( false ); | 96 | assert( false ); |
97 | } | 97 | } |
98 | 98 | ||
99 | void Lib::run() | 99 | void Lib::run() |
100 | { | 100 | { |
101 | assert( false ); | 101 | assert( false ); |
102 | } | 102 | } |
103 | 103 | ||
104 | void Lib::initialize() | 104 | void Lib::initialize() |
105 | { | 105 | { |
106 | m_xine = xine_new( ); | 106 | m_xine = xine_new( ); |
107 | 107 | ||
108 | QString configPath = QDir::homeDirPath() + "/Settings/opiexine.cf"; | 108 | QString configPath = QDir::homeDirPath() + "/Settings/opiexine.cf"; |
109 | xine_config_load( m_xine, QFile::encodeName( configPath ) ); | 109 | xine_config_load( m_xine, QFile::encodeName( configPath ) ); |
110 | 110 | ||
111 | xine_init( m_xine ); | 111 | xine_init( m_xine ); |
112 | 112 | ||
113 | // allocate oss for sound | 113 | // allocate oss for sound |
114 | // and fb for framebuffer | 114 | // and fb for framebuffer |
115 | m_audioOutput = xine_open_audio_driver( m_xine, "oss", NULL ); | 115 | m_audioOutput = xine_open_audio_driver( m_xine, "oss", NULL ); |
116 | m_videoOutput = ::init_video_out_plugin( m_xine, NULL, xine_display_frame, this ); | 116 | m_videoOutput = ::init_video_out_plugin( m_xine, NULL, xine_display_frame, this ); |
117 | 117 | ||
118 | 118 | ||
119 | //xine_open_video_driver( m_xine, NULL, XINE_VISUAL_TYPE_FB, NULL); | 119 | //xine_open_video_driver( m_xine, NULL, XINE_VISUAL_TYPE_FB, NULL); |
120 | 120 | ||
121 | 121 | ||
122 | // null_display_handler( m_videoOutput, xine_display_frame, this ); | 122 | // null_display_handler( m_videoOutput, xine_display_frame, this ); |
123 | 123 | ||
124 | m_stream = xine_stream_new (m_xine, m_audioOutput, m_videoOutput ); | 124 | m_stream = xine_stream_new (m_xine, m_audioOutput, m_videoOutput ); |
125 | 125 | ||
126 | if (m_wid != 0 ) { | 126 | if (m_wid != 0 ) { |
127 | printf( "!0\n" ); | 127 | printf( "!0\n" ); |
128 | resize ( m_wid-> size ( ) ); | 128 | resize ( m_wid-> size ( ) ); |
129 | ::null_set_mode( m_videoOutput, qt_screen->depth(), qt_screen->pixelType() ); | 129 | ::null_set_mode( m_videoOutput, qt_screen->depth(), qt_screen->pixelType() ); |
130 | 130 | ||
131 | // m_wid->repaint(); | 131 | // m_wid->repaint(); |
132 | } | 132 | } |
133 | 133 | ||
134 | m_queue = xine_event_new_queue (m_stream); | 134 | m_queue = xine_event_new_queue (m_stream); |
135 | 135 | ||
136 | xine_event_create_listener_thread (m_queue, xine_event_handler, this); | 136 | xine_event_create_listener_thread (m_queue, xine_event_handler, this); |
137 | } | 137 | } |
138 | 138 | ||
139 | Lib::~Lib() { | 139 | Lib::~Lib() { |
140 | assert( isRunning() == false ) | 140 | assert( isRunning() == false ); |
141 | assert( m_initialized ); | 141 | assert( m_initialized ); |
142 | 142 | ||
143 | // free( m_config ); | 143 | // free( m_config ); |
144 | 144 | ||
145 | xine_close( m_stream ); | 145 | xine_close( m_stream ); |
146 | 146 | ||
147 | xine_event_dispose_queue( m_queue ); | 147 | xine_event_dispose_queue( m_queue ); |
148 | 148 | ||
149 | xine_dispose( m_stream ); | 149 | xine_dispose( m_stream ); |
150 | 150 | ||
151 | xine_exit( m_xine ); | 151 | xine_exit( m_xine ); |
152 | /* FIXME either free or delete but valgrind bitches against both */ | 152 | /* FIXME either free or delete but valgrind bitches against both */ |
153 | //free( m_videoOutput ); | 153 | //free( m_videoOutput ); |
154 | //delete m_audioOutput; | 154 | //delete m_audioOutput; |
155 | } | 155 | } |
156 | 156 | ||
157 | void Lib::resize ( const QSize &s ) { | 157 | void Lib::resize ( const QSize &s ) { |
158 | assert( m_initialized ); | 158 | assert( m_initialized ); |
159 | 159 | ||
160 | if ( s. width ( ) && s. height ( ) ) { | 160 | if ( s. width ( ) && s. height ( ) ) { |
161 | ::null_set_gui_width( m_videoOutput, s. width() ); | 161 | ::null_set_gui_width( m_videoOutput, s. width() ); |
162 | ::null_set_gui_height( m_videoOutput, s. height() ); | 162 | ::null_set_gui_height( m_videoOutput, s. height() ); |
163 | } | 163 | } |
164 | } | 164 | } |
165 | 165 | ||
166 | int Lib::majorVersion() { | 166 | int Lib::majorVersion() { |
167 | int major, minor, sub; | 167 | int major, minor, sub; |
168 | xine_get_version ( &major, &minor, &sub ); | 168 | xine_get_version ( &major, &minor, &sub ); |
169 | return major; | 169 | return major; |
170 | } | 170 | } |
171 | 171 | ||
172 | int Lib::minorVersion() { | 172 | int Lib::minorVersion() { |
173 | int major, minor, sub; | 173 | int major, minor, sub; |
174 | xine_get_version ( &major, &minor, &sub ); | 174 | xine_get_version ( &major, &minor, &sub ); |
175 | return minor; | 175 | return minor; |
176 | } | 176 | } |
177 | 177 | ||
178 | int Lib::subVersion() { | 178 | int Lib::subVersion() { |
179 | int major, minor, sub; | 179 | int major, minor, sub; |
180 | xine_get_version ( &major, &minor, &sub ); | 180 | xine_get_version ( &major, &minor, &sub ); |
181 | return sub; | 181 | return sub; |
182 | } | 182 | } |
183 | 183 | ||
184 | int Lib::play( const QString& fileName, int startPos, int start_time ) { | 184 | int Lib::play( const QString& fileName, int startPos, int start_time ) { |
185 | assert( m_initialized ); | 185 | assert( m_initialized ); |
186 | 186 | ||
187 | QString str = fileName.stripWhiteSpace(); | 187 | QString str = fileName.stripWhiteSpace(); |
188 | if ( !xine_open( m_stream, QFile::encodeName(str.utf8() ).data() ) ) { | 188 | if ( !xine_open( m_stream, QFile::encodeName(str.utf8() ).data() ) ) { |
189 | return 0; | 189 | return 0; |
190 | } | 190 | } |
191 | return xine_play( m_stream, startPos, start_time); | 191 | return xine_play( m_stream, startPos, start_time); |
192 | } | 192 | } |
193 | 193 | ||
194 | void Lib::stop() { | 194 | void Lib::stop() { |
195 | assert( m_initialized ); | 195 | assert( m_initialized ); |
196 | 196 | ||
197 | qDebug("<<<<<<<< STOP IN LIB TRIGGERED >>>>>>>"); | 197 | qDebug("<<<<<<<< STOP IN LIB TRIGGERED >>>>>>>"); |
198 | xine_stop( m_stream ); | 198 | xine_stop( m_stream ); |
199 | } | 199 | } |
200 | 200 | ||
201 | void Lib::pause( bool toggle ) { | 201 | void Lib::pause( bool toggle ) { |
202 | assert( m_initialized ); | 202 | assert( m_initialized ); |
203 | 203 | ||
204 | xine_set_param( m_stream, XINE_PARAM_SPEED, toggle ? XINE_SPEED_PAUSE : XINE_SPEED_NORMAL ); | 204 | xine_set_param( m_stream, XINE_PARAM_SPEED, toggle ? XINE_SPEED_PAUSE : XINE_SPEED_NORMAL ); |
205 | } | 205 | } |
206 | 206 | ||
207 | int Lib::speed() const { | 207 | int Lib::speed() const { |
208 | assert( m_initialized ); | 208 | assert( m_initialized ); |
209 | 209 | ||
210 | return xine_get_param ( m_stream, XINE_PARAM_SPEED ); | 210 | return xine_get_param ( m_stream, XINE_PARAM_SPEED ); |
211 | } | 211 | } |
212 | 212 | ||
213 | void Lib::setSpeed( int speed ) { | 213 | void Lib::setSpeed( int speed ) { |
214 | assert( m_initialized ); | 214 | assert( m_initialized ); |
215 | 215 | ||
216 | xine_set_param ( m_stream, XINE_PARAM_SPEED, speed ); | 216 | xine_set_param ( m_stream, XINE_PARAM_SPEED, speed ); |
217 | } | 217 | } |
218 | 218 | ||
219 | int Lib::status() const { | 219 | int Lib::status() const { |
220 | assert( m_initialized ); | 220 | assert( m_initialized ); |
221 | 221 | ||
222 | return xine_get_status( m_stream ); | 222 | return xine_get_status( m_stream ); |
223 | } | 223 | } |
224 | 224 | ||
225 | int Lib::currentPosition() const { | 225 | int Lib::currentPosition() const { |
226 | assert( m_initialized ); | 226 | assert( m_initialized ); |
227 | 227 | ||
228 | int pos, time, length; | 228 | int pos, time, length; |
229 | xine_get_pos_length( m_stream, &pos, &time, &length ); | 229 | xine_get_pos_length( m_stream, &pos, &time, &length ); |
230 | return pos; | 230 | return pos; |
231 | } | 231 | } |
232 | 232 | ||
233 | int Lib::currentTime() const { | 233 | int Lib::currentTime() const { |
234 | assert( m_initialized ); | 234 | assert( m_initialized ); |
235 | 235 | ||
236 | int pos, time, length; | 236 | int pos, time, length; |