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