Changeset 15145
- Timestamp:
- 04/05/12 01:49:43 (11 years ago)
- Location:
- titan
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/plugins/makesh4.sh
r15143 r15145 88 88 compile "dvdplayer" "dvdplay" "" 89 89 compile "scriptexec" "scriptexec" "" 90 compile "optimize" "optimize" "" 90 91 91 92 #rm -r networkbrowser/networkbrowser -
titan/plugins/scriptexec/scriptexec.h
r15143 r15145 4 4 void screenscriptexec() 5 5 { 6 int rcret = 0,dirrcret = 0;6 int dirrcret = 0; 7 7 char* tmpstr = NULL, *startdir = NULL; 8 8 char* file = NULL, *ret = NULL; … … 27 27 { 28 28 tmpstr = ostrcat(file, " &", 0, 0); 29 ret =system(tmpstr);29 system(tmpstr); 30 30 free(tmpstr); tmpstr = NULL; 31 31 } -
titan/titan/fb.h
r15006 r15145 347 347 } 348 348 349 int mode3d = 0 , leftoffset = 0, rightoffset = 0, topoffset = 0, bottomoffset = 0;349 int mode3d = 0; 350 350 char* mode3dstr = NULL; 351 351 -
titan/titan/header.h
r14962 r15145 195 195 void recordffrwts(struct service* servicenode, int speed); 196 196 197 //dvdplayer.h 198 int dvdstart(char* filename); 199 int dvdisplaying(); 200 void dvdgotmessage(); 201 int dvdkeypress(int key); 202 int dvdmenuopen(); 203 void dvdchangevideo(); 204 void dvdafterend(); 205 197 206 // play.h 198 207 void playerffts(int speed); 199 208 void screenplay(char* startfile, int startfolder, int flag); 200 209 void playrcstop(int playertype, int flag); 210 void playwritevfd(char* file); 211 void playstartservice(); 212 void screenplayinfobar(char* file, int mode, int playertype, int flag); 213 void playrcgreen(char* file, int playinfobarstatus, int playertype, int flag); 214 void playrcred(char* file, int playinfobarstatus, int playertype, int flag); 215 void playrcinfo(char* file, int* playinfobarstatus, int* playinfobarcount, int playertype, int flag); 216 void playrcff(char* file, int* playinfobarstatus, int* playinfobarcount, int playertype, int flag); 217 void playrcfr(char* file, int* playinfobarstatus, int* playinfobarcount, int playertype, int flag); 218 void playrcpause(char* file, int* playinfobarstatus, int* playinfobarcount, int playertype, int flag); 219 void playrcplay(char* file, int* playinfobarstatus, int* playinfobarcount, int playertype, int flag); 220 void playrcjumpr(char* file, int sec, int* playinfobarstatus, int* playinfobarcount, int playertype, int flag); 221 void playrcjumpf(char* file, int sec, int* playinfobarstatus, int* playinfobarcount, int playertype, int flag); 201 222 202 223 //inetwork.h … … 218 239 struct epgscanlist* getepgscanlist(int serviceid, unsigned long transponderid); 219 240 int writeepgscanlist(const char *filename); 241 int delepgscanlist(int serviceid, unsigned long transponderid); 220 242 221 243 //rectimer.h … … 455 477 //rcconfig.h 456 478 int getrcconfigint(char *key, char* ext); 479 char* getrcconfig(char *key, char *ext); 457 480 458 481 //service.h -
titan/titan/skin.h
r15143 r15145 1836 1836 debug(1000, "in"); 1837 1837 unsigned char *buf = NULL, *scalebuf = NULL; 1838 int memfd = -1, py = 0, pyh = 0, px = 0, pxw = 0, diff = 0;1838 int memfd = -1, py = 0, pyh = 0, pxw = 0, diff = 0; //px = 0 1839 1839 unsigned long width, height, rowbytes; 1840 1840 int channels, length; 1841 unsigned char *src ,red, green, blue, alpha;1842 unsigned long color;1841 unsigned char *src; // red, green, blue, alpha; 1842 //unsigned long color; 1843 1843 png_uint_32 y, x; 1844 1844 struct pic* picnode = NULL; … … 1929 1929 pxw = y + width; 1930 1930 for(x = y; x < pxw; x++) 1931 skinfb->fblong[x] = (255 << 24) | ( *src++ << 16) | (*src++ << 8) | *src++;1931 skinfb->fblong[x] = (255 << 24) | (src[0] << 16) | (src[1] << 8) | src[2]; 1932 1932 1933 1933 src += diff;
Note: See TracChangeset
for help on using the changeset viewer.