| 64 | } |
| 65 | |
| 66 | std::string TSReaderData::doAttributeDescribeString(const int streamID) const { |
| 67 | std::string desc; |
| 68 | // ver=1.5;tuner=<feID>,<level>,<lock>,<quality>;uri=<file> |
| 69 | StringConverter::addFormattedString(desc, "ver=1.5;tuner=%d,%d,%d,%d;uri=%s", |
| 70 | streamID + 1, |
| 71 | getSignalStrength(), |
| 72 | hasLock(), |
| 73 | getSignalToNoiseRatio(), |
| 74 | _filePath.c_str()); |
| 75 | return desc; |
| 76 | } |
| 77 | |
| 78 | // ======================================================================= |
| 79 | // -- Other member functions -------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected