Changeset 39797
- Timestamp:
- 01/21/17 18:54:34 (6 years ago)
- Location:
- titan/titan
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/infobar.h
r39507 r39797 1111 1111 } 1112 1112 // pip atemio7600 ?? 1113 if( rcret == getrcconfigint("rcpip", NULL) && (checkchipset("BCM7424") == 1 || checkbox("ATEMIO6200") == 1 || checkbox("UFS922") == 1 || checkbox("UFS913") == 1 || checkbox("DM900") == 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)) 1114 1114 { 1115 1115 if(status.pipservice->videodev == NULL) 1116 1116 { 1117 pipchannel = status.aktservice->channel; 1117 printf("---------> %i\n",rcret); 1118 if(status.recording > 0 && rcret == getrcconfigint("rcpiprec", NULL)) 1119 pipchannel = status.recchnode[1]; 1120 else if(rcret == getrcconfigint("rcpiprec", NULL)) 1121 textbox(_("Message"), _("no record channel found"), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 800, 200, 0, 0); 1122 else 1123 pipchannel = status.aktservice->channel; 1118 1124 printf("++++ RC: %i\n",pipstart(pipchannel, NULL, 0)); 1119 1125 pipchannel = NULL; -
titan/titan/record.h
r36013 r39797 332 332 status.playing = 0; 333 333 else 334 { 335 status.recchnode[status.recording] = NULL; 334 336 status.recording--; 337 } 335 338 336 339 deltranspondertunablestatus(); … … 1411 1414 { 1412 1415 status.recording++; 1416 status.recchnode[status.recording] = chnode; 1413 1417 servicenode->recname = ostrcat(filename, NULL, 0, 0); 1414 1418 if(VFD_Recordthread == NULL && getconfigint("vfdisplayrecord", NULL) != 0) -
titan/titan/struct.h
r39776 r39797 1646 1646 // downmix switch in audio menu (audiotrack.h) 1647 1647 int downmix; 1648 // channels for recording 1649 struct channel* recchnode[9]; 1648 1650 } status; 1649 1651
Note: See TracChangeset
for help on using the changeset viewer.