summaryrefslogtreecommitdiff
path: root/vhook/null.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-04-01 17:23:15 +0000
committerDiego Biurrun <diego@biurrun.de>2007-04-01 17:23:15 +0000
commitca345e442d121963c7e75bba7a3e70d9f29db5aa (patch)
treeefdc87784634f956a7e48febf6961a048b55293d /vhook/null.c
parentf321635a6eb6a826db7213f5c545a01b9c87104c (diff)
Replace forbidden exit() by return() Víctor Paesa, wzrlpy arsystel com.
Originally committed as revision 8592 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook/null.c')
-rw-r--r--vhook/null.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vhook/null.c b/vhook/null.c
index 041e5abda9..c933089060 100644
--- a/vhook/null.c
+++ b/vhook/null.c
@@ -81,7 +81,7 @@ void Process(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int width,
if (ci->toRGB_convert_ctx == NULL) {
av_log(NULL, AV_LOG_ERROR,
"Cannot initialize the toRGB conversion context\n");
- exit(1);
+ return;
}
// img_convert parameters are 2 first destination, then 4 source
// sws_scale parameters are context, 4 first source, then 2 destination
@@ -102,7 +102,7 @@ void Process(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int width,
if (ci->fromRGB_convert_ctx == NULL) {
av_log(NULL, AV_LOG_ERROR,
"Cannot initialize the fromRGB conversion context\n");
- exit(1);
+ return;
}
// img_convert parameters are 2 first destination, then 4 source
// sws_scale parameters are context, 4 first source, then 2 destination