Ticket #1763: moreverbosetuning2.patch
File moreverbosetuning2.patch, 1.1 KB (added by , 19 years ago) |
---|
-
libs/libmythtv/dvbtypes.cpp
993 993 return "Unknown"; 994 994 } 995 995 996 QString toString(const struct dvb_frontend_parameters ¶ms,997 const fe_type_t type)998 {999 return QString("freq(%1) type(%2)")1000 .arg(params.frequency).arg(toString(type));1001 }1002 1003 996 QString toString(fe_status status) 1004 997 { 1005 998 QString str(""); -
libs/libmythtv/dvbchannel.cpp
649 649 } 650 650 651 651 VERBOSE(VB_CHANNEL, LOC + "Old Params: " + 652 toString(prev_tuning.params,info.type) +652 prev_tuning.toString(info.type) + 653 653 "\n\t\t\t" + LOC + "New Params: " + 654 t oString(tuning.params,info.type));654 tuning.toString(info.type)); 655 655 656 656 if (reset || !prev_tuning.equal(info.type, tuning, 500000)) 657 657 {