Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-11-19 05:14:28 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-11-19 05:14:28 +0400
commit328a3545c685f9756460b40d6cc0fb2f4a7e550e (patch)
tree6fc0a128f2bc2f302b28dc4283836e49f9594755 /libavformat/udp.c
parente161b079dee12b11c40df67cf422edeb84772bbe (diff)
udp: update to new interrupt callback API
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/udp.c')
-rw-r--r--libavformat/udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/udp.c b/libavformat/udp.c
index 170f132190..ee5b304769 100644
--- a/libavformat/udp.c
+++ b/libavformat/udp.c
@@ -329,7 +329,7 @@ static void *circular_buffer_task( void *_URLContext)
int ret;
int len;
- if (url_interrupt_cb()) {
+ if (ff_check_interrupt(&h->interrupt_callback)) {
s->circular_buffer_error = EINTR;
return NULL;
}