| 418 | } |
| 419 | |
| 420 | void ff_decklink_packet_queue_end(DecklinkPacketQueue *q) |
| 421 | { |
| 422 | ff_decklink_packet_queue_flush(q); |
| 423 | pthread_mutex_destroy(&q->mutex); |
| 424 | pthread_cond_destroy(&q->cond); |
| 425 | } |
| 426 | |
| 427 | unsigned long long ff_decklink_packet_queue_size(DecklinkPacketQueue *q) |
| 428 | { |
no test coverage detected