diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-03-03 20:09:11 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-03-03 20:09:11 +0000 |
commit | 7cf5530ea749f274bb984e9a9f2c82e426cca645 (patch) | |
tree | 62f784baf42e7dbd0cb28865539803759827fa79 /src/video_out/yuv2rgb.c | |
parent | 6ffb59a745a36b7884e6305c7420e57d87dd894d (diff) | |
download | xine-lib-7cf5530ea749f274bb984e9a9f2c82e426cca645.tar.gz xine-lib-7cf5530ea749f274bb984e9a9f2c82e426cca645.tar.bz2 |
use the _x_abort() macro instead of abort, since it prints some debug info
before aborting
CVS patchset: 6211
CVS date: 2004/03/03 20:09:11
Diffstat (limited to 'src/video_out/yuv2rgb.c')
-rw-r--r-- | src/video_out/yuv2rgb.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/video_out/yuv2rgb.c b/src/video_out/yuv2rgb.c index d959f7a8d..564b7f254 100644 --- a/src/video_out/yuv2rgb.c +++ b/src/video_out/yuv2rgb.c @@ -1,7 +1,7 @@ /* * yuv2rgb.c * - * Copyright (C) 2003 the xine project + * Copyright (C) 2003-2004 the xine project * This file is part of xine, a free video player. * * based on work from mpeg2dec: @@ -23,7 +23,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * $Id: yuv2rgb.c,v 1.49 2004/02/19 02:50:26 rockyb Exp $ + * $Id: yuv2rgb.c,v 1.50 2004/03/03 20:09:15 mroi Exp $ */ #include "config.h" @@ -2398,7 +2398,7 @@ static void yuv2rgb_set_csc_levels (yuv2rgb_factory_t *this, default: lprintf ("mode %d not supported by yuv2rgb\n", mode); - abort(); + _x_abort(); } for (i = 0; i < 256; i++) { @@ -2530,7 +2530,7 @@ static void yuv2rgb_c_init (yuv2rgb_factory_t *this) default: lprintf ("mode %d not supported by yuv2rgb\n", this->mode); - abort(); + _x_abort(); } } @@ -2573,7 +2573,7 @@ static void yuv2rgb_single_pixel_init (yuv2rgb_factory_t *this) { default: lprintf ("mode %d not supported by yuv2rgb\n", this->mode); - abort(); + _x_abort(); } } |