MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / ff_decklink_packet_queue_size

Function ff_decklink_packet_queue_size

libavdevice/decklink_common.cpp:427–434  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

425}
426
427unsigned long long ff_decklink_packet_queue_size(DecklinkPacketQueue *q)
428{
429 unsigned long long size;
430 pthread_mutex_lock(&q->mutex);
431 size = q->size;
432 pthread_mutex_unlock(&q->mutex);
433 return size;
434}
435
436int ff_decklink_packet_queue_put(DecklinkPacketQueue *q, AVPacket *pkt)
437{

Callers 3

decklink_construct_vancFunction · 0.85

Calls 2

pthread_mutex_lockFunction · 0.50
pthread_mutex_unlockFunction · 0.50

Tested by

no test coverage detected