| 314 | } |
| 315 | |
| 316 | bool DDPServer::isTimeCodeFlagSet(const DDPHeader& header) |
| 317 | { |
| 318 | uint8_t flag = (header.detail.flags >> DDP_HEADER_FLAGS_TIMECODE_BIT) & DDP_HEADER_FLAGS_TIMECODE_MASK; |
| 319 | |
| 320 | return (0U != flag); |
| 321 | } |
| 322 | |
| 323 | bool DDPServer::isStorageFlagSet(const DDPHeader& header) |
| 324 | { |
nothing calls this directly
no outgoing calls
no test coverage detected