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

Function async_check_interrupt

libavformat/async.c:170–182  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

168}
169
170static int async_check_interrupt(void *arg)
171{
172 URLContext *h = arg;
173 AsyncContext *c = h->priv_data;
174
175 if (c->abort_request)
176 return 1;
177
178 if (ff_check_interrupt(&c->interrupt_callback))
179 c->abort_request = 1;
180
181 return c->abort_request;
182}
183
184static void *async_buffer_task(void *arg)
185{

Callers 3

async_buffer_taskFunction · 0.85
async_read_internalFunction · 0.85
async_seekFunction · 0.85

Calls 1

ff_check_interruptFunction · 0.85

Tested by

no test coverage detected