Changeset 40739


Ignore:
Timestamp:
08/10/17 21:12:48 (6 years ago)
Author:
gost
Message:

[titan] activate pip for all devices that can

Location:
titan/titan
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/infobar.h

    r40575 r40739  
    11111111                }
    11121112                // pip atemio7600 ??
    1113                 if((rcret == getrcconfigint("rcpip", NULL) || rcret == getrcconfigint("rcpiprec", NULL)) && (checkchipset("BCM7424") == 1 || checkbox("ATEMIO6200") == 1 || checkbox("UFS922") == 1 || checkbox("UFS913") == 1 || checkbox("DM900") == 1 || checkbox("DM520") == 1 || checkbox("DM525") == 1))
     1113                //if((rcret == getrcconfigint("rcpip", NULL) || rcret == getrcconfigint("rcpiprec", NULL)) && (checkchipset("BCM7424") == 1 || checkbox("ATEMIO6200") == 1 || checkbox("UFS922") == 1 || checkbox("UFS913") == 1 || checkbox("DM900") == 1 || checkbox("DM520") == 1 || checkbox("DM525") == 1))
     1114                if((rcret == getrcconfigint("rcpip", NULL) || rcret == getrcconfigint("rcpiprec", NULL)) && status.videodevs > 1)       
    11141115                {
    11151116                        if(status.pipservice->videodev == NULL)
  • titan/titan/struct.h

    r40705 r40739  
    16611661        // frontdev filedescriptor
    16621662        int fdrc1;
     1663        // Anzah VideoDevs
     1664        int videodevs;
    16631665} status;
    16641666
  • titan/titan/titan.c

    r40630 r40739  
    884884                goto starterror;
    885885        }
    886         if(videogetdev() < 1)
     886        status.videodevs = videogetdev();
     887        if(status.videodevs < 1)
    887888        {
    888889                tmpstr = ostrcat(tmpstr, _("Error: no video device found !!"), 1, 0);
Note: See TracChangeset for help on using the changeset viewer.