Changeset 25410
- Timestamp:
- 12/27/13 14:11:56 (10 years ago)
- Location:
- titan/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/plugins/mc/mc_videoplayer.h
r25088 r25410 692 692 filename = ostrcat("", listbox->select->name, 0, 0); 693 693 694 if(getconfigint("playertype", NULL) == 1 && (cmpfilenameext(filename, ".ts") == 0 || cmpfilenameext(filename, ".mts") == 0 || cmpfilenameext(filename, ".m2ts") == 0))694 if(getconfigint("playertype", NULL) == 1 && cmpfilenameext(filename, ".ts") == 0) 695 695 playertype = 1; 696 696 else … … 812 812 filename = createpath(filelistpath->text, filelist->select->name); 813 813 814 if(getconfigint("playertype", NULL) == 1 && (cmpfilenameext(filename, ".ts") == 0 || cmpfilenameext(filename, ".mts") == 0 || cmpfilenameext(filename, ".m2ts") == 0))814 if(getconfigint("playertype", NULL) == 1 && cmpfilenameext(filename, ".ts") == 0) 815 815 playertype = 1; 816 816 else -
titan/plugins/tmc/tmc.h
r19953 r25410 351 351 formats = ostrcat(formats, "*.flac *.ogg *.mp3 *.avi *.dat *.divx *.flv *.mkv *.m4v *.mp4 *.mov *.mpg *.mpeg *.mts *.m2ts *.trp *.ts *.vdr *.vob *.wmv *.rm", 1, 0); 352 352 //else 353 //formats = ostrcat(formats, "*.ts *.mts *.m2ts", 1, 0);353 //formats = ostrcat(formats, "*.ts", 1, 0); 354 354 355 355 ret = screendir(getconfig("rec_moviepath", NULL), formats, NULL, NULL, NULL, NULL, 0, "SELECT", getrcconfigint("rcgreen", NULL), NULL, 0, NULL, 0, dir->width, dir->prozwidth, dir->height, dir->prozheight, 0);
Note: See TracChangeset
for help on using the changeset viewer.