Changeset 32853


Ignore:
Timestamp:
02/03/15 23:41:08 (9 years ago)
Author:
obi
Message:

fix

Location:
titan/titan
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/global.h

    r32844 r32853  
    39133913        }
    39143914
     3915#ifdef MIPSEL
     3916        char *aspect = NULL;
     3917        aspect = getaspect();
     3918        if(!ostrncmp("16:9", aspect, 4))
     3919                value = string_replace("nonlinear", "", value, 1);
     3920        free(aspect), aspect = NULL;
     3921#endif
     3922
    39153923        value = convertspacetolf(value);
    39163924
  • titan/titan/mediadb.h

    r32850 r32853  
    14891489char* createshortname(char* file, int *isrec, int *iscam, int flag)
    14901490{
    1491         char* fileinfo = NULL, *shortname = NULL, *tmpstr = NULL;
     1491        char* fileinfo = NULL, *shortname = NULL, *tmpstr = NULL, *tmpstr1 = NULL;
    14921492        //create imdb search name
    14931493        shortname = ostrcat(file, NULL, 0, 0);
     
    15411541printf("###### strip () strings end ############################################\n");
    15421542
    1543         char* tmpstr1 = oregex(".*([0-9]{14,14}).*", tmpstr);
     1543        tmpstr1 = oregex(".*([0-9]{14,14}).*", tmpstr);
    15441544        if(tmpstr1 != NULL)
    15451545        {
Note: See TracChangeset for help on using the changeset viewer.