Commit 0749720b authored by Martin Storsjö's avatar Martin Storsjö

avplay: Don't call avio_set_interrupt_cb(NULL)

Since we don't use avio_set_interrupt_cb for interrupt callbacks,
we don't need to call it to reset the interrupt cb either.

This avoids a warning about use of deprecated functions.
Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 6b3995cc
...@@ -2599,7 +2599,6 @@ static int decode_thread(void *arg) ...@@ -2599,7 +2599,6 @@ static int decode_thread(void *arg)
if (is->ic) { if (is->ic) {
avformat_close_input(&is->ic); avformat_close_input(&is->ic);
} }
avio_set_interrupt_cb(NULL);
if (ret != 0) { if (ret != 0) {
SDL_Event event; SDL_Event event;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment