Changeset 25410


Ignore:
Timestamp:
12/27/13 14:11:56 (10 years ago)
Author:
obi
Message:

fix mts

Location:
titan/plugins
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • titan/plugins/mc/mc_videoplayer.h

    r25088 r25410  
    692692                                filename = ostrcat("", listbox->select->name, 0, 0);
    693693
    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)
    695695                                        playertype = 1;
    696696                                else
     
    812812                                filename = createpath(filelistpath->text, filelist->select->name);
    813813
    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)               
    815815                                        playertype = 1;
    816816                                else
  • titan/plugins/tmc/tmc.h

    r19953 r25410  
    351351                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);
    352352        //else
    353                 //formats = ostrcat(formats, "*.ts *.mts *.m2ts", 1, 0);
     353                //formats = ostrcat(formats, "*.ts", 1, 0);
    354354
    355355        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.