| 430 | { |
| 431 | public: |
| 432 | FrameQueue(uint32_t frame_size) : |
| 433 | frame_size (frame_size), |
| 434 | num_frames (2), |
| 435 | frame_buffer ((uint8_t*)malloc(frame_size * num_frames)), |
| 436 | head (0), |
| 437 | tail (0), |
| 438 | available (0) |
| 439 | { |
| 440 | } |
| 441 | |
| 442 | ~FrameQueue() |
| 443 | { |
nothing calls this directly
no outgoing calls
no test coverage detected