| 191 | } |
| 192 | |
| 193 | void |
| 194 | ff_get_current_time(time_t *sec, long *nsec) |
| 195 | { |
| 196 | if (sec) { |
| 197 | *sec = current_ts.tv_sec; |
| 198 | } |
| 199 | |
| 200 | if (nsec) { |
| 201 | *nsec = current_ts.tv_nsec; |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | void |
| 206 | ff_update_current_ts() |
no outgoing calls
no test coverage detected