MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / hb_fifo_size

Function hb_fifo_size

libhb/fifo.c:1234–1243  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1232}
1233
1234int hb_fifo_size( hb_fifo_t * f )
1235{
1236 int ret;
1237
1238 hb_lock( f->lock );
1239 ret = f->size;
1240 hb_unlock( f->lock );
1241
1242 return ret;
1243}
1244
1245int hb_fifo_is_full( hb_fifo_t * f )
1246{

Callers 2

hb_vfr_workFunction · 0.85
hb_fifo_closeFunction · 0.85

Calls 2

hb_lockFunction · 0.85
hb_unlockFunction · 0.85

Tested by

no test coverage detected