avformat/async: fix interrupt_callback usage and return code

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Zhang Rui 2015-07-22 02:47:23 +08:00 committed by Michael Niedermayer
parent 8fe00dd18a
commit 5e2098d906
1 changed files with 5 additions and 6 deletions

View File

@ -75,13 +75,12 @@ static int async_interrupt_callback(void *arg)
{
URLContext *h = arg;
Context *c = h->priv_data;
int ret = 0;
if (c->interrupt_callback.callback) {
ret = c->interrupt_callback.callback(c->interrupt_callback.opaque);
if (!ret)
return ret;
}
if (c->abort_request)
return 1;
if (ff_check_interrupt(&c->interrupt_callback))
c->abort_request = 1;
return c->abort_request;
}