Mercurial > mplayer.hg
annotate Gui/mplayer/play.c @ 8859:fd13e4c4f323
Set is_shift_required according to RadeonFamily
rather than device_id (thanks to Marcus Blomenkamp for this idea)
Also give RV200 a seperate family from R200 as they aren't really the same.
patch by James Stembridge <jstembridge@gmx.net>
author | arpi |
---|---|
date | Thu, 09 Jan 2003 18:28:56 +0000 |
parents | 9ea5f18a7957 |
children | b8c271750450 |
rev | line source |
---|---|
7092
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7009
diff
changeset
|
1 |
4428 | 2 #include <inttypes.h> |
1693 | 3 #include <stdlib.h> |
4 #include <stdio.h> | |
7092
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7009
diff
changeset
|
5 #include <string.h> |
1693 | 6 |
7 #include <unistd.h> | |
8 #include <signal.h> | |
9 | |
10 #include "../wm/ws.h" | |
11 #include "../../config.h" | |
1884 | 12 #include "../../help_mp.h" |
8423 | 13 #include "../../mplayer.h" |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1693
diff
changeset
|
14 #include "../../libvo/x11_common.h" |
5665 | 15 #include "../../input/input.h" |
1693 | 16 |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
17 #include "../app.h" |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
18 |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
19 #include "../wm/wskeys.h" |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
20 #include "../interface.h" |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
21 |
1693 | 22 #include "widgets.h" |
23 #include "./mplayer.h" | |
24 #include "play.h" | |
25 | |
1800 | 26 #include "../skin/skin.h" |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
27 #include "../skin/font.h" |
1693 | 28 |
7009 | 29 #include "../libmpdemux/stream.h" |
30 | |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1693
diff
changeset
|
31 extern float rel_seek_secs; |
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1693
diff
changeset
|
32 extern int abs_seek_pos; |
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1693
diff
changeset
|
33 |
6713 | 34 static int mplGotoTheNext = 1; |
35 | |
1693 | 36 void mplFullScreen( void ) |
37 { | |
7151 | 38 if ( guiIntfStruct.NoWindow && guiIntfStruct.Playing ) return; |
7092
8e9607c5897e
- warning fixes from Dominik Mierzejewski <dominik@rangers.eu.org>
pontscho
parents:
7009
diff
changeset
|
39 #if 0 |
2029 | 40 static int sx,sy; |
5032 | 41 // if ( !guiIntfStruct.Playing ) |
2029 | 42 { |
4981 | 43 wsVisibleWindow( &appMPlayer.subWindow,wsHideWindow ); |
44 if ( appMPlayer.subWindow.isFullScreen ) | |
45 { | |
46 wsResizeWindow( &appMPlayer.subWindow,sx,sy ); | |
47 wsMoveWindow( &appMPlayer.subWindow,True,appMPlayer.sub.x,appMPlayer.sub.y ); | |
48 wsWindowDecoration( &appMPlayer.subWindow,appMPlayer.subWindow.Decorations ); | |
49 appMPlayer.subWindow.isFullScreen=0; | |
50 } | |
51 else | |
52 { | |
53 sx=appMPlayer.subWindow.Width; sy=appMPlayer.subWindow.Height; | |
54 wsResizeWindow( &appMPlayer.subWindow,wsMaxX,wsMaxY ); | |
55 wsMoveWindow( &appMPlayer.subWindow,True,0,0 ); | |
56 wsWindowDecoration( &appMPlayer.subWindow,0 ); | |
57 appMPlayer.subWindow.isFullScreen=1; | |
58 } | |
5032 | 59 vo_fs=appMPlayer.subWindow.isFullScreen; |
4981 | 60 wsVisibleWindow( &appMPlayer.subWindow,wsShowWindow ); |
5032 | 61 }// else { vo_x11_fullscreen(); appMPlayer.subWindow.isFullScreen=vo_fs; } |
5910
20c335d98ab3
fix fullscreen bug es ilyen libvo not initialized bug with gui igy
pontscho
parents:
5701
diff
changeset
|
62 #else |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
63 if ( ( guiIntfStruct.Playing )&&( appMPlayer.subWindow.isFullScreen ) ) |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
64 { |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
65 appMPlayer.subWindow.OldWidth=guiIntfStruct.MovieWidth; appMPlayer.subWindow.OldHeight=guiIntfStruct.MovieHeight; |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
66 switch ( appMPlayer.sub.x ) |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
67 { |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
68 case -1: appMPlayer.subWindow.OldX=( wsMaxX / 2 ) - ( appMPlayer.subWindow.OldWidth / 2 ); break; |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
69 case -2: appMPlayer.subWindow.OldX=wsMaxX - appMPlayer.subWindow.OldWidth; break; |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
70 default: appMPlayer.subWindow.OldX=appMPlayer.sub.x; break; |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
71 } |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
72 switch ( appMPlayer.sub.y ) |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
73 { |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
74 case -1: appMPlayer.subWindow.OldY=( wsMaxY / 2 ) - ( appMPlayer.subWindow.OldHeight / 2 ); break; |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
75 case -2: appMPlayer.subWindow.OldY=wsMaxY - appMPlayer.subWindow.OldHeight; break; |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
76 default: appMPlayer.subWindow.OldY=appMPlayer.sub.y; break; |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
77 } |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
78 } |
5910
20c335d98ab3
fix fullscreen bug es ilyen libvo not initialized bug with gui igy
pontscho
parents:
5701
diff
changeset
|
79 wsFullScreen( &appMPlayer.subWindow ); |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
80 vo_fs=appMPlayer.subWindow.isFullScreen; |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
81 wsSetLayer( wsDisplay,appMPlayer.mainWindow.WindowID,appMPlayer.subWindow.isFullScreen ); |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5986
diff
changeset
|
82 wsSetLayer( wsDisplay,appMPlayer.menuWindow.WindowID,appMPlayer.subWindow.isFullScreen ); |
5910
20c335d98ab3
fix fullscreen bug es ilyen libvo not initialized bug with gui igy
pontscho
parents:
5701
diff
changeset
|
83 #endif |
20c335d98ab3
fix fullscreen bug es ilyen libvo not initialized bug with gui igy
pontscho
parents:
5701
diff
changeset
|
84 |
4981 | 85 fullscreen=appMPlayer.subWindow.isFullScreen; |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
86 if ( guiIntfStruct.Playing ) wsSetBackgroundRGB( &appMPlayer.subWindow,0,0,0 ); |
2045 | 87 else wsSetBackgroundRGB( &appMPlayer.subWindow,appMPlayer.subR,appMPlayer.subG,appMPlayer.subB ); |
1693 | 88 } |
89 | |
90 extern int mplSubRender; | |
91 | |
6713 | 92 void mplEnd( void ) |
93 { | |
94 plItem * next; | |
95 | |
96 if ( !mplGotoTheNext ) { mplGotoTheNext=1; return; } | |
97 | |
6794 | 98 if ( guiIntfStruct.Playing && (next=gtkSet( gtkGetNextPlItem,0,NULL )) && plLastPlayed != next ) |
6713 | 99 { |
100 plLastPlayed=next; | |
101 guiSetDF( guiIntfStruct.Filename,next->path,next->name ); | |
102 guiIntfStruct.StreamType=STREAMTYPE_FILE; | |
8423 | 103 guiIntfStruct.FilenameChanged=guiIntfStruct.NewPlay=1; |
6857 | 104 gfree( (void **)&guiIntfStruct.AudioFile ); |
105 gfree( (void **)&guiIntfStruct.Subtitlename ); | |
6794 | 106 } |
107 else | |
108 { | |
8484 | 109 if ( guiIntfStruct.FilenameChanged || guiIntfStruct.NewPlay ) return; |
6903 | 110 |
6794 | 111 guiIntfStruct.TimeSec=0; |
112 guiIntfStruct.Position=0; | |
113 guiIntfStruct.AudioType=0; | |
8423 | 114 guiIntfStruct.NoWindow=False; |
115 | |
6996 | 116 #ifdef USE_DVDREAD |
6912 | 117 guiIntfStruct.DVD.current_title=1; |
118 guiIntfStruct.DVD.current_chapter=1; | |
119 guiIntfStruct.DVD.current_angle=1; | |
6996 | 120 #endif |
6713 | 121 |
6794 | 122 if ( !appMPlayer.subWindow.isFullScreen ) |
123 { | |
124 wsResizeWindow( &appMPlayer.subWindow,appMPlayer.sub.width,appMPlayer.sub.height ); | |
125 wsMoveWindow( &appMPlayer.subWindow,True,appMPlayer.sub.x,appMPlayer.sub.y ); | |
126 } | |
127 guiGetEvent( guiCEvent,guiSetStop ); | |
128 mplSubRender=1; | |
129 wsSetBackgroundRGB( &appMPlayer.subWindow,appMPlayer.subR,appMPlayer.subG,appMPlayer.subB ); | |
130 wsClearWindow( appMPlayer.subWindow ); | |
131 wsPostRedisplay( &appMPlayer.subWindow ); | |
132 } | |
1693 | 133 } |
134 | |
135 void mplPlay( void ) | |
136 { | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
137 if ( ( !guiIntfStruct.Filename )|| |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
138 ( guiIntfStruct.Filename[0] == 0 )|| |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
139 ( guiIntfStruct.Playing == 1 ) ) return; |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
140 if ( guiIntfStruct.Playing == 2 ) { mplPause(); return; } |
6794 | 141 guiGetEvent( guiCEvent,(void *)guiSetPlay ); |
1791 | 142 mplSubRender=0; |
1858
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1852
diff
changeset
|
143 wsSetBackgroundRGB( &appMPlayer.subWindow,0,0,0 ); |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
144 wsClearWindow( appMPlayer.subWindow ); |
1693 | 145 } |
146 | |
147 void mplPause( void ) | |
148 { | |
6794 | 149 if ( !guiIntfStruct.Playing ) return; |
150 if ( guiIntfStruct.Playing == 1 ) | |
151 { | |
152 mp_cmd_t * cmd = (mp_cmd_t *)calloc( 1,sizeof( *cmd ) ); | |
153 cmd->id=MP_CMD_PAUSE; | |
154 cmd->name=strdup("pause"); | |
155 mp_input_queue_cmd(cmd); | |
156 } else guiIntfStruct.Playing=1; | |
1693 | 157 } |
158 | |
4465 | 159 void mplState( void ) |
160 { | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
161 if ( ( guiIntfStruct.Playing == 0 )||( guiIntfStruct.Playing == 2 ) ) |
4465 | 162 { |
163 btnModify( evPlaySwitchToPause,btnReleased ); | |
164 btnModify( evPauseSwitchToPlay,btnDisabled ); | |
165 } | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
166 else |
4465 | 167 { |
168 btnModify( evPlaySwitchToPause,btnDisabled ); | |
169 btnModify( evPauseSwitchToPlay,btnReleased ); | |
170 } | |
171 } | |
172 | |
1693 | 173 float mplGetPosition( void ) |
174 { // return 0.0 ... 100.0 | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
175 return guiIntfStruct.Position; |
1693 | 176 } |
177 | |
178 void mplRelSeek( float s ) | |
179 { // -+s | |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1693
diff
changeset
|
180 rel_seek_secs=s; abs_seek_pos=0; |
1693 | 181 } |
182 | |
183 void mplAbsSeek( float s ) | |
184 { // 0.0 ... 100.0 | |
8280
72700fefd3dc
no seeking if stream is STREAMTYPE_STREAM (net/stdin)
pontscho
parents:
8055
diff
changeset
|
185 if ( guiIntfStruct.StreamType == STREAMTYPE_STREAM ) return; |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1693
diff
changeset
|
186 rel_seek_secs=0.01*s; abs_seek_pos=3; |
1693 | 187 } |
188 | |
1800 | 189 listItems tmpList; |
190 | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
191 void ChangeSkin( char * name ) |
1800 | 192 { |
1907 | 193 int ret; |
5690 | 194 |
1907 | 195 mainVisible=0; |
1800 | 196 |
1907 | 197 appInitStruct( &tmpList ); |
198 skinAppMPlayer=&tmpList; | |
199 fntFreeFont(); | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
200 ret=skinRead( name ); |
1800 | 201 |
1907 | 202 appInitStruct( &tmpList ); |
203 skinAppMPlayer=&appMPlayer; | |
204 appInitStruct( &appMPlayer ); | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
205 if ( ret ) name=skinName; |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
206 if ( skinRead( name ) ) |
1907 | 207 { |
208 mainVisible=1; | |
209 return; | |
210 } | |
211 if ( appMPlayer.menuBase.Bitmap.Image ) | |
212 { | |
213 if ( mplMenuDrawBuffer ) free( mplMenuDrawBuffer ); | |
214 if ( ( mplMenuDrawBuffer = (unsigned char *)calloc( 1,appMPlayer.menuBase.Bitmap.ImageSize ) ) == NULL ) | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
215 { mp_msg( MSGT_GPLAYER,MSGL_STATUS,MSGTR_NEMDB ); return; } |
1907 | 216 wsResizeWindow( &appMPlayer.menuWindow,appMPlayer.menuBase.width,appMPlayer.menuBase.height ); |
217 wsResizeImage( &appMPlayer.menuWindow,appMPlayer.menuBase.width,appMPlayer.menuBase.height ); | |
6221 | 218 wsSetShape( &appMPlayer.menuWindow,appMPlayer.menuBase.Mask.Image ); |
6089 | 219 wsVisibleWindow( &appMPlayer.menuWindow,wsHideWindow ); |
1907 | 220 } |
1800 | 221 |
2226 | 222 if ( appMPlayer.sub.Bitmap.Image ) wsResizeImage( &appMPlayer.subWindow,appMPlayer.sub.Bitmap.Width,appMPlayer.sub.Bitmap.Height ); |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
223 if ( ( !appMPlayer.subWindow.isFullScreen )&&( !guiIntfStruct.Playing ) ) |
2226 | 224 { |
225 wsResizeWindow( &appMPlayer.subWindow,appMPlayer.sub.width,appMPlayer.sub.height ); | |
2854 | 226 wsMoveWindow( &appMPlayer.subWindow,True,appMPlayer.sub.x,appMPlayer.sub.y ); |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
227 } |
2226 | 228 if ( appMPlayer.sub.Bitmap.Image ) wsConvert( &appMPlayer.subWindow,appMPlayer.sub.Bitmap.Image,appMPlayer.sub.Bitmap.ImageSize ); |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
229 if ( !guiIntfStruct.Playing ) |
2226 | 230 { |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
231 mplSubRender=1; |
2911 | 232 wsSetBackgroundRGB( &appMPlayer.subWindow,appMPlayer.subR,appMPlayer.subG,appMPlayer.subB ); |
2226 | 233 wsClearWindow( appMPlayer.subWindow ); |
234 wsPostRedisplay( &appMPlayer.subWindow ); | |
235 } | |
1866
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1861
diff
changeset
|
236 |
1907 | 237 if ( mplDrawBuffer ) free( mplDrawBuffer ); |
238 if ( ( mplDrawBuffer = (unsigned char *)calloc( 1,appMPlayer.main.Bitmap.ImageSize ) ) == NULL ) | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
239 { mp_msg( MSGT_GPLAYER,MSGL_STATUS,MSGTR_NEMDB ); return; } |
6146 | 240 |
241 if ( wsWMType == wsWMUnknown ) wsVisibleWindow( &appMPlayer.mainWindow,wsHideWindow ); | |
1907 | 242 wsResizeWindow( &appMPlayer.mainWindow,appMPlayer.main.width,appMPlayer.main.height ); |
2854 | 243 wsMoveWindow( &appMPlayer.mainWindow,True,appMPlayer.main.x,appMPlayer.main.y ); |
1907 | 244 wsResizeImage( &appMPlayer.mainWindow,appMPlayer.main.width,appMPlayer.main.height ); |
245 wsSetShape( &appMPlayer.mainWindow,appMPlayer.main.Mask.Image ); | |
2979 | 246 wsWindowDecoration( &appMPlayer.mainWindow,appMPlayer.mainDecoration ); |
1907 | 247 mainVisible=1; mplMainRender=1; wsPostRedisplay( &appMPlayer.mainWindow ); |
248 wsVisibleWindow( &appMPlayer.mainWindow,wsShowWindow ); | |
4818
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
249 |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
250 btnModify( evSetVolume,guiIntfStruct.Volume ); |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
251 btnModify( evSetBalance,guiIntfStruct.Balance ); |
3473ca9ef158
new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents:
4798
diff
changeset
|
252 btnModify( evSetMoviePosition,guiIntfStruct.Position ); |
3479 | 253 btnModify( evFullScreen,!appMPlayer.subWindow.isFullScreen ); |
1800 | 254 } |
1802 | 255 |
7009 | 256 void mplSetFileName( char * dir,char * name,int type ) |
2854 | 257 { |
6967
0fa27966ac47
add xdnd support (from Gregory Kovriga <gkovriga@techunix.technion.ac.il>) and fix -subdelay bug
pontscho
parents:
6912
diff
changeset
|
258 if ( !name ) return; |
0fa27966ac47
add xdnd support (from Gregory Kovriga <gkovriga@techunix.technion.ac.il>) and fix -subdelay bug
pontscho
parents:
6912
diff
changeset
|
259 |
0fa27966ac47
add xdnd support (from Gregory Kovriga <gkovriga@techunix.technion.ac.il>) and fix -subdelay bug
pontscho
parents:
6912
diff
changeset
|
260 if ( !dir ) guiSetFilename( guiIntfStruct.Filename,name ) |
8423 | 261 else guiSetDF( guiIntfStruct.Filename,dir,name ); |
6967
0fa27966ac47
add xdnd support (from Gregory Kovriga <gkovriga@techunix.technion.ac.il>) and fix -subdelay bug
pontscho
parents:
6912
diff
changeset
|
262 |
8423 | 263 // filename=guiIntfStruct.Filename; |
7009 | 264 guiIntfStruct.StreamType=type; |
6794 | 265 gfree( (void **)&guiIntfStruct.AudioFile ); |
266 gfree( (void **)&guiIntfStruct.Subtitlename ); | |
2854 | 267 } |
5689 | 268 |
269 void mplPrev( void ) | |
270 { | |
6713 | 271 plItem * prev; |
272 int stop = 0; | |
6280 | 273 |
274 if ( guiIntfStruct.Playing == 2 ) return; | |
5689 | 275 switch ( guiIntfStruct.StreamType ) |
276 { | |
5701 | 277 #ifdef USE_DVDREAD |
5689 | 278 case STREAMTYPE_DVD: |
279 if ( --guiIntfStruct.DVD.current_chapter == 0 ) | |
280 { | |
281 guiIntfStruct.DVD.current_chapter=1; | |
282 if ( --guiIntfStruct.DVD.current_title <= 0 ) { guiIntfStruct.DVD.current_title=1; stop=1; } | |
283 } | |
284 guiIntfStruct.Track=guiIntfStruct.DVD.current_title; | |
285 break; | |
5701 | 286 #endif |
6280 | 287 #ifdef HAVE_VCD |
288 case STREAMTYPE_VCD: | |
289 if ( --guiIntfStruct.Track == 0 ) { guiIntfStruct.Track=1; stop=1; } | |
290 break; | |
291 #endif | |
6713 | 292 default: |
6794 | 293 if ( (prev=gtkSet( gtkGetPrevPlItem,0,NULL)) ) |
294 { | |
7009 | 295 mplSetFileName( prev->path,prev->name,STREAMTYPE_FILE ); |
6794 | 296 mplGotoTheNext=0; |
297 break; | |
298 } | |
6713 | 299 return; |
5689 | 300 } |
6280 | 301 if ( stop ) mplEventHandling( evStop,0 ); |
302 if ( guiIntfStruct.Playing == 1 ) mplEventHandling( evPlay,0 ); | |
5689 | 303 } |
304 | |
305 void mplNext( void ) | |
306 { | |
6713 | 307 int stop = 0; |
308 plItem * next; | |
6280 | 309 |
310 if ( guiIntfStruct.Playing == 2 ) return; | |
5689 | 311 switch ( guiIntfStruct.StreamType ) |
312 { | |
5701 | 313 #ifdef USE_DVDREAD |
5689 | 314 case STREAMTYPE_DVD: |
315 if ( guiIntfStruct.DVD.current_chapter++ == guiIntfStruct.DVD.chapters ) | |
316 { | |
317 guiIntfStruct.DVD.current_chapter=1; | |
318 if ( ++guiIntfStruct.DVD.current_title > guiIntfStruct.DVD.titles ) { guiIntfStruct.DVD.current_title=guiIntfStruct.DVD.titles; stop=1; } | |
319 } | |
320 guiIntfStruct.Track=guiIntfStruct.DVD.current_title; | |
321 break; | |
5701 | 322 #endif |
6280 | 323 #ifdef HAVE_VCD |
324 case STREAMTYPE_VCD: | |
325 if ( ++guiIntfStruct.Track > guiIntfStruct.VCDTracks ) { guiIntfStruct.Track=guiIntfStruct.VCDTracks; stop=1; } | |
326 break; | |
327 #endif | |
6713 | 328 default: |
6794 | 329 if ( (next=gtkSet( gtkGetNextPlItem,0,NULL)) ) |
330 { | |
7009 | 331 mplSetFileName( next->path,next->name,STREAMTYPE_FILE ); |
6794 | 332 mplGotoTheNext=0; |
333 break; | |
334 } | |
6713 | 335 return; |
5689 | 336 } |
6280 | 337 if ( stop ) mplEventHandling( evStop,0 ); |
338 if ( guiIntfStruct.Playing == 1 ) mplEventHandling( evPlay,0 ); | |
5689 | 339 } |