| 113 | #endif |
| 114 | |
| 115 | int64_t CComponentInterfaces::time() const |
| 116 | { |
| 117 | #if defined(CONF_VIDEORECORDER) |
| 118 | return IVideo::Current() ? IVideo::Time() : time_get(); |
| 119 | #else |
| 120 | return time_get(); |
| 121 | #endif |
| 122 | } |
| 123 | |
| 124 | float CComponentInterfaces::LocalTime() const |
| 125 | { |
nothing calls this directly
no test coverage detected