summaryrefslogtreecommitdiff
authorsimon <simon>2002-12-09 00:04:09 (UTC)
committer simon <simon>2002-12-09 00:04:09 (UTC)
commit88882051547c9c62f47fb83d87f1341ebccf99a7 (patch) (unidiff)
tree7c5dec3d715b37c5c80fa9c017d55b57cf76cb7b
parent373051a9f8e624e57bac83bb09af1840fef14b4c (diff)
downloadopie-88882051547c9c62f47fb83d87f1341ebccf99a7.zip
opie-88882051547c9c62f47fb83d87f1341ebccf99a7.tar.gz
opie-88882051547c9c62f47fb83d87f1341ebccf99a7.tar.bz2
- use xine_set_param( ..., XINE_PARAM_SPEED, with XINE_SPEED_PAUSE and
XINE_SPEED_NORMAL to toggle between pause and playing state, instead of attempting to re-start the stream at the last position
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/lib.cpp4
-rw-r--r--noncore/multimedia/opieplayer2/lib.h2
-rw-r--r--noncore/multimedia/opieplayer2/xinecontrol.cpp6
3 files changed, 4 insertions, 8 deletions
diff --git a/noncore/multimedia/opieplayer2/lib.cpp b/noncore/multimedia/opieplayer2/lib.cpp
index 1b5fd51..9e818eb 100644
--- a/noncore/multimedia/opieplayer2/lib.cpp
+++ b/noncore/multimedia/opieplayer2/lib.cpp
@@ -110,130 +110,130 @@ Lib::Lib( XineVideoWidget* widget ) {
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
121Lib::~Lib() { 121Lib::~Lib() {
122// free( m_config ); 122// free( m_config );
123 123
124 xine_close( m_stream ); 124 xine_close( m_stream );
125 125
126 xine_event_dispose_queue( m_queue ); 126 xine_event_dispose_queue( m_queue );
127 127
128 xine_dispose( m_stream ); 128 xine_dispose( m_stream );
129 129
130 xine_exit( m_xine ); 130 xine_exit( m_xine );
131 /* FIXME either free or delete but valgrind bitches against both */ 131 /* FIXME either free or delete but valgrind bitches against both */
132 //free( m_videoOutput ); 132 //free( m_videoOutput );
133 //delete m_audioOutput; 133 //delete m_audioOutput;
134} 134}
135 135
136void Lib::resize ( const QSize &s ) { 136void Lib::resize ( const QSize &s ) {
137 if ( s. width ( ) && s. height ( ) ) { 137 if ( s. width ( ) && s. height ( ) ) {
138 ::null_set_gui_width( m_videoOutput, s. width() ); 138 ::null_set_gui_width( m_videoOutput, s. width() );
139 ::null_set_gui_height( m_videoOutput, s. height() ); 139 ::null_set_gui_height( m_videoOutput, s. height() );
140 } 140 }
141} 141}
142 142
143int Lib::majorVersion() { 143int Lib::majorVersion() {
144 int major, minor, sub; 144 int major, minor, sub;
145 xine_get_version ( &major, &minor, &sub ); 145 xine_get_version ( &major, &minor, &sub );
146 return major; 146 return major;
147} 147}
148 148
149int Lib::minorVersion() { 149int Lib::minorVersion() {
150 int major, minor, sub; 150 int major, minor, sub;
151 xine_get_version ( &major, &minor, &sub ); 151 xine_get_version ( &major, &minor, &sub );
152 return minor; 152 return minor;
153} 153}
154 154
155int Lib::subVersion() { 155int Lib::subVersion() {
156 int major, minor, sub; 156 int major, minor, sub;
157 xine_get_version ( &major, &minor, &sub ); 157 xine_get_version ( &major, &minor, &sub );
158 return sub; 158 return sub;
159} 159}
160 160
161int Lib::play( const QString& fileName, int startPos, int start_time ) { 161int Lib::play( const QString& fileName, int startPos, int start_time ) {
162 QString str = fileName.stripWhiteSpace(); 162 QString str = fileName.stripWhiteSpace();
163 if ( !xine_open( m_stream, QFile::encodeName(str.utf8() ).data() ) ) { 163 if ( !xine_open( m_stream, QFile::encodeName(str.utf8() ).data() ) ) {
164 return 0; 164 return 0;
165 } 165 }
166 return xine_play( m_stream, startPos, start_time); 166 return xine_play( m_stream, startPos, start_time);
167} 167}
168 168
169void Lib::stop() { 169void Lib::stop() {
170 qDebug("<<<<<<<< STOP IN LIB TRIGGERED >>>>>>>"); 170 qDebug("<<<<<<<< STOP IN LIB TRIGGERED >>>>>>>");
171 xine_stop( m_stream ); 171 xine_stop( m_stream );
172} 172}
173 173
174void Lib::pause() { 174void Lib::pause( bool toggle ) {
175 xine_set_param( m_stream, XINE_PARAM_SPEED, XINE_SPEED_PAUSE ); 175 xine_set_param( m_stream, XINE_PARAM_SPEED, toggle ? XINE_SPEED_PAUSE : XINE_SPEED_NORMAL );
176} 176}
177 177
178int Lib::speed() const { 178int Lib::speed() const {
179 return xine_get_param ( m_stream, XINE_PARAM_SPEED ); 179 return xine_get_param ( m_stream, XINE_PARAM_SPEED );
180} 180}
181 181
182void Lib::setSpeed( int speed ) { 182void Lib::setSpeed( int speed ) {
183 xine_set_param ( m_stream, XINE_PARAM_SPEED, speed ); 183 xine_set_param ( m_stream, XINE_PARAM_SPEED, speed );
184} 184}
185 185
186int Lib::status() const { 186int Lib::status() const {
187 return xine_get_status( m_stream ); 187 return xine_get_status( m_stream );
188} 188}
189 189
190int Lib::currentPosition() const { 190int Lib::currentPosition() const {
191 int pos, time, length; 191 int pos, time, length;
192 xine_get_pos_length( m_stream, &pos, &time, &length ); 192 xine_get_pos_length( m_stream, &pos, &time, &length );
193 return pos; 193 return pos;
194} 194}
195 195
196int Lib::currentTime() const { 196int Lib::currentTime() const {
197 int pos, time, length; 197 int pos, time, length;
198 xine_get_pos_length( m_stream, &pos, &time, &length ); 198 xine_get_pos_length( m_stream, &pos, &time, &length );
199 return time/1000; 199 return time/1000;
200} 200}
201 201
202int Lib::length() const { 202int Lib::length() const {
203 int pos, time, length; 203 int pos, time, length;
204 xine_get_pos_length( m_stream, &pos, &time, &length ); 204 xine_get_pos_length( m_stream, &pos, &time, &length );
205 return length/1000; 205 return length/1000;
206} 206}
207 207
208bool Lib::isSeekable() const { 208bool Lib::isSeekable() const {
209 return xine_get_stream_info( m_stream, XINE_STREAM_INFO_SEEKABLE ); 209 return xine_get_stream_info( m_stream, XINE_STREAM_INFO_SEEKABLE );
210} 210}
211 211
212void Lib::seekTo( int time ) { 212void Lib::seekTo( int time ) {
213 //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 :_(
214 // since its now milliseconds we need *1000 214 // since its now milliseconds we need *1000
215 xine_play( m_stream, 0, time*1000 ); 215 xine_play( m_stream, 0, time*1000 );
216} 216}
217 217
218 218
219Frame Lib::currentFrame() const { 219Frame Lib::currentFrame() const {
220 Frame frame; 220 Frame frame;
221 return frame; 221 return frame;
222}; 222};
223 223
224QString Lib::metaInfo( int number) const { 224QString Lib::metaInfo( int number) const {
225 return xine_get_meta_info( m_stream, number ); 225 return xine_get_meta_info( m_stream, number );
226} 226}
227 227
228int Lib::error() const { 228int Lib::error() const {
229 return xine_get_error( m_stream ); 229 return xine_get_error( m_stream );
230}; 230};
231 231
232void Lib::receiveMessage( ThreadUtil::ChannelMessage *msg, SendType sendType ) 232void Lib::receiveMessage( ThreadUtil::ChannelMessage *msg, SendType sendType )
233{ 233{
234 assert( sendType == ThreadUtil::Channel::OneWay ); 234 assert( sendType == ThreadUtil::Channel::OneWay );
235 handleXineEvent( msg->type() ); 235 handleXineEvent( msg->type() );
236 delete msg; 236 delete msg;
237} 237}
238 238
239void Lib::handleXineEvent( const xine_event_t* t ) { 239void Lib::handleXineEvent( const xine_event_t* t ) {
diff --git a/noncore/multimedia/opieplayer2/lib.h b/noncore/multimedia/opieplayer2/lib.h
index 3224cb9..37a4f9a 100644
--- a/noncore/multimedia/opieplayer2/lib.h
+++ b/noncore/multimedia/opieplayer2/lib.h
@@ -10,129 +10,129 @@
10 _;:,     .>    :=|. This program is free software; you can 10 _;:,     .>    :=|. This program is free software; you can
11.> <`_,   >  .   <= redistribute it and/or modify it under 11.> <`_,   >  .   <= redistribute it and/or modify it under
12:`=1 )Y*s>-.--   : the terms of the GNU General Public 12:`=1 )Y*s>-.--   : the terms of the GNU General Public
13.="- .-=="i,     .._ License as published by the Free Software 13.="- .-=="i,     .._ License as published by the Free Software
14 - .   .-<_>     .<> Foundation; either version 2 of the License, 14 - .   .-<_>     .<> Foundation; either version 2 of the License,
15     ._= =}       : or (at your option) any later version. 15     ._= =}       : or (at your option) any later version.
16    .%`+i>       _;_. 16    .%`+i>       _;_.
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#ifndef ZECKEXINELIB_H 34#ifndef ZECKEXINELIB_H
35#define ZECKEXINELIB_H 35#define ZECKEXINELIB_H
36 36
37#include <qcstring.h> 37#include <qcstring.h>
38#include <qstring.h> 38#include <qstring.h>
39#include <qobject.h> 39#include <qobject.h>
40 40
41#include <xine.h> 41#include <xine.h>
42//#include "xine.h" 42//#include "xine.h"
43 43
44#include "threadutil.h" 44#include "threadutil.h"
45 45
46class XineVideoWidget; 46class XineVideoWidget;
47 47
48namespace XINE { 48namespace XINE {
49 49
50 /** 50 /**
51 * Lib wrapps the simple interface 51 * Lib wrapps the simple interface
52 * of libxine for easy every day use 52 * of libxine for easy every day use
53 * This will become a full C++ Wrapper 53 * This will become a full C++ Wrapper
54 * It supports playing, pausing, info, 54 * It supports playing, pausing, info,
55 * stooping, seeking. 55 * stooping, seeking.
56 */ 56 */
57 class Frame; 57 class Frame;
58 class Lib : public ThreadUtil::Channel { 58 class Lib : public ThreadUtil::Channel {
59 Q_OBJECT 59 Q_OBJECT
60 public: 60 public:
61 Lib(XineVideoWidget* = 0); 61 Lib(XineVideoWidget* = 0);
62 ~Lib(); 62 ~Lib();
63 static int majorVersion(); 63 static int majorVersion();
64 static int minorVersion(); 64 static int minorVersion();
65 static int subVersion(); 65 static int subVersion();
66 66
67 67
68 void resize ( const QSize &s ); 68 void resize ( const QSize &s );
69 69
70 int play( const QString& fileName, 70 int play( const QString& fileName,
71 int startPos = 0, 71 int startPos = 0,
72 int start_time = 0 ); 72 int start_time = 0 );
73 void stop(); 73 void stop();
74 void pause(); 74 void pause( bool toggle );
75 75
76 int speed() const; 76 int speed() const;
77 77
78 /** 78 /**
79 * Set the speed of the stream, if codec supports it 79 * Set the speed of the stream, if codec supports it
80 * XINE_SPEED_PAUSE 0 80 * XINE_SPEED_PAUSE 0
81 * XINE_SPEED_SLOW_4 1 81 * XINE_SPEED_SLOW_4 1
82 * XINE_SPEED_SLOW_2 2 82 * XINE_SPEED_SLOW_2 2
83 * XINE_SPEED_NORMAL 4 83 * XINE_SPEED_NORMAL 4
84 * XINE_SPEED_FAST_2 8 84 * XINE_SPEED_FAST_2 8
85 *XINE_SPEED_FAST_4 16 85 *XINE_SPEED_FAST_4 16
86 */ 86 */
87 void setSpeed( int speed = XINE_SPEED_PAUSE ); 87 void setSpeed( int speed = XINE_SPEED_PAUSE );
88 88
89 int status() const; 89 int status() const;
90 90
91 int currentPosition()const; 91 int currentPosition()const;
92 //in seconds 92 //in seconds
93 int currentTime()const; 93 int currentTime()const;
94 94
95 int length() const; 95 int length() const;
96 96
97 bool isSeekable()const; 97 bool isSeekable()const;
98 98
99 /** 99 /**
100 * Whether or not to show video output 100 * Whether or not to show video output
101 */ 101 */
102 void setShowVideo(bool video); 102 void setShowVideo(bool video);
103 103
104 /** 104 /**
105 * is we show video 105 * is we show video
106 */ 106 */
107 bool isShowingVideo() const; 107 bool isShowingVideo() const;
108 108
109 /** 109 /**
110 * 110 *
111 */ 111 */
112 void showVideoFullScreen( bool fullScreen ); 112 void showVideoFullScreen( bool fullScreen );
113 113
114 /** 114 /**
115 * 115 *
116 */ 116 */
117 bool isVideoFullScreen() const; 117 bool isVideoFullScreen() const;
118 118
119 119
120 /** 120 /**
121 * Get the meta info (like author etc) from the stream 121 * Get the meta info (like author etc) from the stream
122 * XINE_META_INFO_TITLE 0 122 * XINE_META_INFO_TITLE 0
123 * XINE_META_INFO_COMMENT 1 123 * XINE_META_INFO_COMMENT 1
124 * XINE_META_INFO_ARTIST 2 124 * XINE_META_INFO_ARTIST 2
125 * XINE_META_INFO_GENRE 3 125 * XINE_META_INFO_GENRE 3
126 * XINE_META_INFO_ALBUM 4 126 * XINE_META_INFO_ALBUM 4
127 * XINE_META_INFO_YEAR 5 127 * XINE_META_INFO_YEAR 5
128 * XINE_META_INFO_VIDEOCODEC 6 128 * XINE_META_INFO_VIDEOCODEC 6
129 * XINE_META_INFO_AUDIOCODEC 7 129 * XINE_META_INFO_AUDIOCODEC 7
130 * XINE_META_INFO_SYSTEMLAYER 8 130 * XINE_META_INFO_SYSTEMLAYER 8
131 * XINE_META_INFO_INPUT_PLUGIN 9 131 * XINE_META_INFO_INPUT_PLUGIN 9
132 */ 132 */
133 QString metaInfo( int number ) const; 133 QString metaInfo( int number ) const;
134 134
135 /** 135 /**
136 * 136 *
137 */ 137 */
138 bool isScaling() const; 138 bool isScaling() const;
diff --git a/noncore/multimedia/opieplayer2/xinecontrol.cpp b/noncore/multimedia/opieplayer2/xinecontrol.cpp
index 6f1cd9c..0e81fa2 100644
--- a/noncore/multimedia/opieplayer2/xinecontrol.cpp
+++ b/noncore/multimedia/opieplayer2/xinecontrol.cpp
@@ -83,133 +83,129 @@ void XineControl::play( const QString& fileName ) {
83 mediaPlayerState.setPlaying( false ); 83 mediaPlayerState.setPlaying( false );
84 return; 84 return;
85 } 85 }
86 mediaPlayerState.setPlaying( true ); 86 mediaPlayerState.setPlaying( true );
87 87
88 MediaPlayerState::DisplayType displayType; 88 MediaPlayerState::DisplayType displayType;
89 // qDebug( QString( "libXine->hasVideo() return : %1 ").arg( libXine->hasVideo() ) ); 89 // qDebug( QString( "libXine->hasVideo() return : %1 ").arg( libXine->hasVideo() ) );
90 if ( !libXine->hasVideo() ) { 90 if ( !libXine->hasVideo() ) {
91 displayType = MediaPlayerState::Audio; 91 displayType = MediaPlayerState::Audio;
92 qDebug("HAS AUDIO"); 92 qDebug("HAS AUDIO");
93 libXine->setShowVideo( false ); 93 libXine->setShowVideo( false );
94 hasAudioChannel = TRUE; 94 hasAudioChannel = TRUE;
95 } else { 95 } else {
96 displayType = MediaPlayerState::Video; 96 displayType = MediaPlayerState::Video;
97 qDebug("HAS VIDEO"); 97 qDebug("HAS VIDEO");
98 libXine->setShowVideo( true ); 98 libXine->setShowVideo( true );
99 hasVideoChannel = TRUE; 99 hasVideoChannel = TRUE;
100 } 100 }
101 // determine if slider is shown 101 // determine if slider is shown
102 mediaPlayerState.setIsSeekable( libXine->isSeekable() ); 102 mediaPlayerState.setIsSeekable( libXine->isSeekable() );
103 103
104 // which gui (video / audio) 104 // which gui (video / audio)
105 mediaPlayerState.setDisplayType( displayType ); 105 mediaPlayerState.setDisplayType( displayType );
106 106
107#if defined(Q_WS_QWS) && !defined(QT_NO_COP) 107#if defined(Q_WS_QWS) && !defined(QT_NO_COP)
108 if ( !disabledSuspendScreenSaver ) { 108 if ( !disabledSuspendScreenSaver ) {
109 disabledSuspendScreenSaver = TRUE; 109 disabledSuspendScreenSaver = TRUE;
110 // Stop the screen from blanking and power saving state 110 // Stop the screen from blanking and power saving state
111 QCopEnvelope( "QPE/System", "setScreenSaverMode(int)" ) 111 QCopEnvelope( "QPE/System", "setScreenSaverMode(int)" )
112 << ( displayType == MediaPlayerState::Video ? QPEApplication::Disable : QPEApplication::DisableSuspend ); 112 << ( displayType == MediaPlayerState::Video ? QPEApplication::Disable : QPEApplication::DisableSuspend );
113 } 113 }
114#endif 114#endif
115 115
116 length(); 116 length();
117 position(); 117 position();
118} 118}
119 119
120void XineControl::nextMedia() { 120void XineControl::nextMedia() {
121 mediaPlayerState.setNext(); 121 mediaPlayerState.setNext();
122} 122}
123 123
124void XineControl::setGamma( int value ) { 124void XineControl::setGamma( int value ) {
125 libXine->setGamma( value ); 125 libXine->setGamma( value );
126} 126}
127 127
128void XineControl::stop( bool isSet ) { 128void XineControl::stop( bool isSet ) {
129 if ( !isSet ) { 129 if ( !isSet ) {
130 libXine->stop(); 130 libXine->stop();
131 131
132#if defined(Q_WS_QWS) && !defined(QT_NO_COP) 132#if defined(Q_WS_QWS) && !defined(QT_NO_COP)
133 if ( disabledSuspendScreenSaver ) { 133 if ( disabledSuspendScreenSaver ) {
134 disabledSuspendScreenSaver = FALSE; 134 disabledSuspendScreenSaver = FALSE;
135 // Re-enable the suspend mode 135 // Re-enable the suspend mode
136 QCopEnvelope( "QPE/System", "setScreenSaverMode(int)" ) << QPEApplication::Enable; 136 QCopEnvelope( "QPE/System", "setScreenSaverMode(int)" ) << QPEApplication::Enable;
137 } 137 }
138#endif 138#endif
139 } 139 }
140} 140}
141 141
142/** 142/**
143 * Pause playback 143 * Pause playback
144 * @isSet 144 * @isSet
145 */ 145 */
146void XineControl::pause( bool isSet) { 146void XineControl::pause( bool isSet) {
147 if ( isSet ) { 147 libXine->pause( isSet );
148 libXine->pause();
149 } else {
150 libXine->play( m_fileName, 0, m_currentTime );
151 }
152} 148}
153 149
154 150
155/** 151/**
156 * get current time in playback 152 * get current time in playback
157 */ 153 */
158long XineControl::currentTime() { 154long XineControl::currentTime() {
159 // todo: jede sekunde überprüfen 155 // todo: jede sekunde überprüfen
160 m_currentTime = libXine->currentTime(); 156 m_currentTime = libXine->currentTime();
161 return m_currentTime; 157 return m_currentTime;
162 QTimer::singleShot( 1000, this, SLOT( currentTime() ) ); 158 QTimer::singleShot( 1000, this, SLOT( currentTime() ) );
163} 159}
164 160
165/** 161/**
166 * Set the length of the media file 162 * Set the length of the media file
167 */ 163 */
168void XineControl::length() { 164void XineControl::length() {
169 m_length = libXine->length(); 165 m_length = libXine->length();
170 mediaPlayerState.setLength( m_length ); 166 mediaPlayerState.setLength( m_length );
171} 167}
172 168
173 169
174/** 170/**
175 * Reports the position the xine backend is at right now 171 * Reports the position the xine backend is at right now
176 * @return long the postion in seconds 172 * @return long the postion in seconds
177 */ 173 */
178long XineControl::position() { 174long XineControl::position() {
179 m_position = ( currentTime() ); 175 m_position = ( currentTime() );
180 mediaPlayerState.updatePosition( m_position ); 176 mediaPlayerState.updatePosition( m_position );
181 long emitPos = (long)m_position; 177 long emitPos = (long)m_position;
182 emit positionChanged( emitPos ); 178 emit positionChanged( emitPos );
183 if( mediaPlayerState.isPlaying() ) { 179 if( mediaPlayerState.isPlaying() ) {
184 // needs to be stopped the media is stopped 180 // needs to be stopped the media is stopped
185 QTimer::singleShot( 1000, this, SLOT( position() ) ); 181 QTimer::singleShot( 1000, this, SLOT( position() ) );
186 } 182 }
187 // qDebug("POSITION : %d", m_position); 183 // qDebug("POSITION : %d", m_position);
188 return m_position; 184 return m_position;
189} 185}
190 186
191/** 187/**
192 * Set videoplayback to fullscreen 188 * Set videoplayback to fullscreen
193 * @param isSet 189 * @param isSet
194 */ 190 */
195void XineControl::setFullscreen( bool isSet ) { 191void XineControl::setFullscreen( bool isSet ) {
196 libXine->showVideoFullScreen( isSet ); 192 libXine->showVideoFullScreen( isSet );
197} 193}
198 194
199 195
200QString XineControl::getMetaInfo() { 196QString XineControl::getMetaInfo() {
201 197
202 QString returnString; 198 QString returnString;
203 199
204 if ( !libXine->metaInfo( 0 ).isEmpty() ) { 200 if ( !libXine->metaInfo( 0 ).isEmpty() ) {
205 returnString += tr( " Title: " + libXine->metaInfo( 0 ) ); 201 returnString += tr( " Title: " + libXine->metaInfo( 0 ) );
206 } 202 }
207 203
208 if ( !libXine->metaInfo( 1 ).isEmpty() ) { 204 if ( !libXine->metaInfo( 1 ).isEmpty() ) {
209 returnString += tr( " Comment: " + libXine->metaInfo( 1 ) ); 205 returnString += tr( " Comment: " + libXine->metaInfo( 1 ) );
210 } 206 }
211 207
212 if ( !libXine->metaInfo( 2 ).isEmpty() ) { 208 if ( !libXine->metaInfo( 2 ).isEmpty() ) {
213 returnString += tr( " Artist: " + libXine->metaInfo( 2 ) ); 209 returnString += tr( " Artist: " + libXine->metaInfo( 2 ) );
214 } 210 }
215 211