| 339 | } |
| 340 | |
| 341 | void |
| 342 | SendStopMessage(MotionLayerState *mlStates, |
| 343 | ChunkTransportState *transportStates, |
| 344 | int16 motNodeID) |
| 345 | { |
| 346 | MotionNodeEntry *pEntry = getMotionNodeEntry(mlStates, motNodeID); |
| 347 | |
| 348 | pEntry->stopped = true; |
| 349 | if (transportStates != NULL && CurrentMotionIPCLayer->SendStopMessage != NULL) |
| 350 | CurrentMotionIPCLayer->SendStopMessage(transportStates, motNodeID); |
| 351 | } |
| 352 | |
| 353 | void |
| 354 | CheckAndSendRecordCache(MotionLayerState *mlStates, |
no test coverage detected