[FFmpeg-cvslog] avplay: Set the new interrupt callback

Martin Storsjö git at videolan.org
Sat Nov 19 02:09:44 CET 2011


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Sun Nov  6 23:28:49 2011 +0200| [40972f7c54e013d2da8bf42cb34ab25cfea75eab] | committer: Anton Khirnov

avplay: Set the new interrupt callback

Signed-off-by: Anton Khirnov <anton at khirnov.net>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=40972f7c54e013d2da8bf42cb34ab25cfea75eab
---

 avplay.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/avplay.c b/avplay.c
index 01c0f11..556c463 100644
--- a/avplay.c
+++ b/avplay.c
@@ -2339,7 +2339,7 @@ static void stream_component_close(VideoState *is, int stream_index)
    variable instead of a thread local variable */
 static VideoState *global_video_state;
 
-static int decode_interrupt_cb(void)
+static int decode_interrupt_cb(void *ctx)
 {
     return (global_video_state && global_video_state->abort_request);
 }
@@ -2364,8 +2364,9 @@ static int decode_thread(void *arg)
     is->subtitle_stream = -1;
 
     global_video_state = is;
-    avio_set_interrupt_cb(decode_interrupt_cb);
 
+    ic = avformat_alloc_context();
+    ic->interrupt_callback.callback = decode_interrupt_cb;
     err = avformat_open_input(&ic, is->filename, is->iformat, &format_opts);
     if (err < 0) {
         print_error(is->filename, err);



More information about the ffmpeg-cvslog mailing list