summaryrefslogtreecommitdiff
path: root/avplay.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-08-29 07:03:24 +0200
committerAnton Khirnov <anton@khirnov.net>2011-09-04 13:12:00 +0200
commitdad09ff93f5df1ec987493f404d43cd16991e992 (patch)
treed69e680344af9464ab4f6f3e37b974ba9430bbd3 /avplay.c
parent346ea9e22240b4442f479518f6c3b40c9bec9487 (diff)
cmdutils: move exit_program() declaration to cmdutils from avconv
Allows cmdutils to call each tool's own cleanup function.
Diffstat (limited to 'avplay.c')
-rw-r--r--avplay.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/avplay.c b/avplay.c
index 1880668d65..212ab2c9b2 100644
--- a/avplay.c
+++ b/avplay.c
@@ -278,6 +278,11 @@ static AVPacket flush_pkt;
static SDL_Surface *screen;
+void exit_program(int ret)
+{
+ exit(ret);
+}
+
static int packet_queue_put(PacketQueue *q, AVPacket *pkt);
/* packet queue handling */