fftools/sync_queue: add debug logging

This commit is contained in:
Anton Khirnov
2023-05-23 15:45:37 +02:00
parent 4e96a71626
commit e9a868e9ee
3 changed files with 40 additions and 6 deletions

View File

@@ -50,7 +50,7 @@ typedef struct SyncQueue SyncQueue;
*
* @param buf_size_us maximum duration that will be buffered in microseconds
*/
SyncQueue *sq_alloc(enum SyncQueueType type, int64_t buf_size_us);
SyncQueue *sq_alloc(enum SyncQueueType type, int64_t buf_size_us, void *logctx);
void sq_free(SyncQueue **sq);
/**