summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/lib.cpp5
-rw-r--r--noncore/multimedia/opieplayer2/lib.h1
2 files changed, 5 insertions, 1 deletions
diff --git a/noncore/multimedia/opieplayer2/lib.cpp b/noncore/multimedia/opieplayer2/lib.cpp
index 040eab3..cef46a1 100644
--- a/noncore/multimedia/opieplayer2/lib.cpp
+++ b/noncore/multimedia/opieplayer2/lib.cpp
@@ -28,179 +28,182 @@
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 <stdio.h> 34#include <stdio.h>
35#include <stdlib.h> 35#include <stdlib.h>
36#include <qimage.h> 36#include <qimage.h>
37#include <qtextstream.h> 37#include <qtextstream.h>
38#include <qpe/resource.h> 38#include <qpe/resource.h>
39 39
40#include <qfile.h> 40#include <qfile.h>
41#include <qdir.h> 41#include <qdir.h>
42 42
43#include <qgfx_qws.h> 43#include <qgfx_qws.h>
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
53typedef void (*display_xine_frame_t) (void *user_data, uint8_t* frame, 53typedef 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
56extern "C" { 56extern "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
71using namespace XINE; 71using namespace XINE;
72 72
73Lib::Lib( InitializationMode initMode, XineVideoWidget* widget ) 73Lib::Lib( InitializationMode initMode, XineVideoWidget* widget )
74{ 74{
75 m_initialized = false; 75 m_initialized = false;
76 m_duringInitialization = false;
76 m_video = false; 77 m_video = false;
77 m_wid = widget; 78 m_wid = widget;
78 printf("Lib"); 79 printf("Lib");
79 QString configPath = QDir::homeDirPath() + "/Settings/opiexine.cf"; 80 QString configPath = QDir::homeDirPath() + "/Settings/opiexine.cf";
80 // get the configuration 81 // get the configuration
81 82
82 // not really OO, should be an extra class, later 83 // not really OO, should be an extra class, later
83 if ( !QFile::exists(configPath) ) { 84 if ( !QFile::exists(configPath) ) {
84 QFile f(configPath); 85 QFile f(configPath);
85 f.open(IO_WriteOnly); 86 f.open(IO_WriteOnly);
86 QTextStream ts( &f ); 87 QTextStream ts( &f );
87 ts << "misc.memcpy_method:glibc\n"; 88 ts << "misc.memcpy_method:glibc\n";
88 f.close(); 89 f.close();
89 } 90 }
90 91
91 if ( initMode == InitializeImmediately ) { 92 if ( initMode == InitializeImmediately ) {
92 initialize(); 93 initialize();
93 m_initialized = true; 94 m_initialized = true;
94 } 95 }
95 else 96 else
96 assert( false ); 97 assert( false );
97} 98}
98 99
99void Lib::run() 100void Lib::run()
100{ 101{
101 assert( false ); 102 assert( false );
102} 103}
103 104
104void Lib::initialize() 105void Lib::initialize()
105{ 106{
107 m_duringInitialization = true;
106 m_xine = xine_new( ); 108 m_xine = xine_new( );
107 109
108 QString configPath = QDir::homeDirPath() + "/Settings/opiexine.cf"; 110 QString configPath = QDir::homeDirPath() + "/Settings/opiexine.cf";
109 xine_config_load( m_xine, QFile::encodeName( configPath ) ); 111 xine_config_load( m_xine, QFile::encodeName( configPath ) );
110 112
111 xine_init( m_xine ); 113 xine_init( m_xine );
112 114
113 // allocate oss for sound 115 // allocate oss for sound
114 // and fb for framebuffer 116 // and fb for framebuffer
115 m_audioOutput = xine_open_audio_driver( m_xine, "oss", NULL ); 117 m_audioOutput = xine_open_audio_driver( m_xine, "oss", NULL );
116 m_videoOutput = ::init_video_out_plugin( m_xine, NULL, xine_display_frame, this ); 118 m_videoOutput = ::init_video_out_plugin( m_xine, NULL, xine_display_frame, this );
117 119
118 120
119//xine_open_video_driver( m_xine, NULL, XINE_VISUAL_TYPE_FB, NULL); 121//xine_open_video_driver( m_xine, NULL, XINE_VISUAL_TYPE_FB, NULL);
120 122
121 123
122// null_display_handler( m_videoOutput, xine_display_frame, this ); 124// null_display_handler( m_videoOutput, xine_display_frame, this );
123 125
124 m_stream = xine_stream_new (m_xine, m_audioOutput, m_videoOutput ); 126 m_stream = xine_stream_new (m_xine, m_audioOutput, m_videoOutput );
125 127
126 if (m_wid != 0 ) { 128 if (m_wid != 0 ) {
127 printf( "!0\n" ); 129 printf( "!0\n" );
128 resize ( m_wid-> size ( ) ); 130 resize ( m_wid-> size ( ) );
129 ::null_set_mode( m_videoOutput, qt_screen->depth(), qt_screen->pixelType() ); 131 ::null_set_mode( m_videoOutput, qt_screen->depth(), qt_screen->pixelType() );
130 132
131// m_wid->repaint(); 133// m_wid->repaint();
132 } 134 }
133 135
134 m_queue = xine_event_new_queue (m_stream); 136 m_queue = xine_event_new_queue (m_stream);
135 137
136 xine_event_create_listener_thread (m_queue, xine_event_handler, this); 138 xine_event_create_listener_thread (m_queue, xine_event_handler, this);
139 m_duringInitialization = false;
137} 140}
138 141
139Lib::~Lib() { 142Lib::~Lib() {
140 assert( isRunning() == false ); 143 assert( isRunning() == false );
141 assert( m_initialized ); 144 assert( m_initialized );
142 145
143// free( m_config ); 146// free( m_config );
144 147
145 xine_close( m_stream ); 148 xine_close( m_stream );
146 149
147 xine_event_dispose_queue( m_queue ); 150 xine_event_dispose_queue( m_queue );
148 151
149 xine_dispose( m_stream ); 152 xine_dispose( m_stream );
150 153
151 xine_exit( m_xine ); 154 xine_exit( m_xine );
152 /* FIXME either free or delete but valgrind bitches against both */ 155 /* FIXME either free or delete but valgrind bitches against both */
153 //free( m_videoOutput ); 156 //free( m_videoOutput );
154 //delete m_audioOutput; 157 //delete m_audioOutput;
155} 158}
156 159
157void Lib::resize ( const QSize &s ) { 160void Lib::resize ( const QSize &s ) {
158 assert( m_initialized ); 161 assert( m_initialized || m_duringInitialization );
159 162
160 if ( s. width ( ) && s. height ( ) ) { 163 if ( s. width ( ) && s. height ( ) ) {
161 ::null_set_gui_width( m_videoOutput, s. width() ); 164 ::null_set_gui_width( m_videoOutput, s. width() );
162 ::null_set_gui_height( m_videoOutput, s. height() ); 165 ::null_set_gui_height( m_videoOutput, s. height() );
163 } 166 }
164} 167}
165 168
166int Lib::majorVersion() { 169int Lib::majorVersion() {
167 int major, minor, sub; 170 int major, minor, sub;
168 xine_get_version ( &major, &minor, &sub ); 171 xine_get_version ( &major, &minor, &sub );
169 return major; 172 return major;
170} 173}
171 174
172int Lib::minorVersion() { 175int Lib::minorVersion() {
173 int major, minor, sub; 176 int major, minor, sub;
174 xine_get_version ( &major, &minor, &sub ); 177 xine_get_version ( &major, &minor, &sub );
175 return minor; 178 return minor;
176} 179}
177 180
178int Lib::subVersion() { 181int Lib::subVersion() {
179 int major, minor, sub; 182 int major, minor, sub;
180 xine_get_version ( &major, &minor, &sub ); 183 xine_get_version ( &major, &minor, &sub );
181 return sub; 184 return sub;
182} 185}
183 186
184int Lib::play( const QString& fileName, int startPos, int start_time ) { 187int Lib::play( const QString& fileName, int startPos, int start_time ) {
185 assert( m_initialized ); 188 assert( m_initialized );
186 189
187 QString str = fileName.stripWhiteSpace(); 190 QString str = fileName.stripWhiteSpace();
188 if ( !xine_open( m_stream, QFile::encodeName(str.utf8() ).data() ) ) { 191 if ( !xine_open( m_stream, QFile::encodeName(str.utf8() ).data() ) ) {
189 return 0; 192 return 0;
190 } 193 }
191 return xine_play( m_stream, startPos, start_time); 194 return xine_play( m_stream, startPos, start_time);
192} 195}
193 196
194void Lib::stop() { 197void Lib::stop() {
195 assert( m_initialized ); 198 assert( m_initialized );
196 199
197 qDebug("<<<<<<<< STOP IN LIB TRIGGERED >>>>>>>"); 200 qDebug("<<<<<<<< STOP IN LIB TRIGGERED >>>>>>>");
198 xine_stop( m_stream ); 201 xine_stop( m_stream );
199} 202}
200 203
201void Lib::pause( bool toggle ) { 204void Lib::pause( bool toggle ) {
202 assert( m_initialized ); 205 assert( m_initialized );
203 206
204 xine_set_param( m_stream, XINE_PARAM_SPEED, toggle ? XINE_SPEED_PAUSE : XINE_SPEED_NORMAL ); 207 xine_set_param( m_stream, XINE_PARAM_SPEED, toggle ? XINE_SPEED_PAUSE : XINE_SPEED_NORMAL );
205} 208}
206 209
diff --git a/noncore/multimedia/opieplayer2/lib.h b/noncore/multimedia/opieplayer2/lib.h
index 7e3a912..9dd7385 100644
--- a/noncore/multimedia/opieplayer2/lib.h
+++ b/noncore/multimedia/opieplayer2/lib.h
@@ -148,69 +148,70 @@ namespace XINE {
148 148
149 /** 149 /**
150 * 150 *
151 * @return is media stream has video 151 * @return is media stream has video
152 */ 152 */
153 bool hasVideo() const; 153 bool hasVideo() const;
154 154
155 /** 155 /**
156 * 156 *
157 */ 157 */
158 void setScaling( bool ); 158 void setScaling( bool );
159 159
160 /** 160 /**
161 * Set the Gamma value for video output 161 * Set the Gamma value for video output
162 * @param int the value between -100 and 100, 0 is original 162 * @param int the value between -100 and 100, 0 is original
163 */ 163 */
164 void setGamma( int ); 164 void setGamma( int );
165 165
166 /** 166 /**
167 * test 167 * test
168 */ 168 */
169 Frame currentFrame() const; 169 Frame currentFrame() const;
170 170
171 /** 171 /**
172 * Returns the error code 172 * Returns the error code
173 * XINE_ERROR_NONE 0 173 * XINE_ERROR_NONE 0
174 * XINE_ERROR_NO_INPUT_PLUGIN 1 174 * XINE_ERROR_NO_INPUT_PLUGIN 1
175 * XINE_ERROR_NO_DEMUXER_PLUGIN 2 175 * XINE_ERROR_NO_DEMUXER_PLUGIN 2
176 * XINE_ERROR_DEMUXER_FAILED 3 176 * XINE_ERROR_DEMUXER_FAILED 3
177 */ 177 */
178 int error() const; 178 int error() const;
179 179
180 signals: 180 signals:
181 181
182 void stopped(); 182 void stopped();
183 183
184 void initialized(); 184 void initialized();
185 185
186 protected: 186 protected:
187 virtual void receiveMessage( ThreadUtil::ChannelMessage *msg, SendType sendType ); 187 virtual void receiveMessage( ThreadUtil::ChannelMessage *msg, SendType sendType );
188 188
189 virtual void run(); 189 virtual void run();
190 190
191 private: 191 private:
192 void initialize(); 192 void initialize();
193 193
194 int m_bytes_per_pixel; 194 int m_bytes_per_pixel;
195 bool m_initialized:1; 195 bool m_initialized:1;
196 bool m_duringInitialization:1;
196 bool m_video:1; 197 bool m_video:1;
197 XineVideoWidget *m_wid; 198 XineVideoWidget *m_wid;
198 xine_t *m_xine; 199 xine_t *m_xine;
199 xine_stream_t *m_stream; 200 xine_stream_t *m_stream;
200 xine_cfg_entry_t *m_config; 201 xine_cfg_entry_t *m_config;
201 xine_vo_driver_t *m_videoOutput; 202 xine_vo_driver_t *m_videoOutput;
202 xine_ao_driver_t* m_audioOutput; 203 xine_ao_driver_t* m_audioOutput;
203 xine_event_queue_t *m_queue; 204 xine_event_queue_t *m_queue;
204 205
205 void handleXineEvent( const xine_event_t* t ); 206 void handleXineEvent( const xine_event_t* t );
206 void handleXineEvent( int type ); 207 void handleXineEvent( int type );
207 void drawFrame( uint8_t* frame, int width, int height, int bytes ); 208 void drawFrame( uint8_t* frame, int width, int height, int bytes );
208 // C -> C++ bridge for the event system 209 // C -> C++ bridge for the event system
209 static void xine_event_handler( void* user_data, const xine_event_t* t); 210 static void xine_event_handler( void* user_data, const xine_event_t* t);
210 static void xine_display_frame( void* user_data, uint8_t* frame , 211 static void xine_display_frame( void* user_data, uint8_t* frame ,
211 int width, int height, int bytes ); 212 int width, int height, int bytes );
212 }; 213 };
213}; 214};
214 215
215 216
216#endif 217#endif