1
mirror of https://github.com/mpv-player/mpv synced 2024-10-30 04:46:41 +01:00

exit->return

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1634 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2001-08-22 20:14:10 +00:00
parent b0dbb726dc
commit 2b48b538fe
2 changed files with 2 additions and 2 deletions

View File

@ -376,7 +376,7 @@ static uint32_t init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t
printf("using palette yuv422\n"); printf("using palette yuv422\n");
} else { } else {
printf("no supported palette found\n"); printf("no supported palette found\n");
exit(1); return -1;
} }
// config.src_palette= VIDEO_PALETTE_YUV422; // config.src_palette= VIDEO_PALETTE_YUV422;

View File

@ -402,7 +402,7 @@ static void yuv2rgb_c_init (int bpp, int mode)
default: default:
printf ("%ibpp not supported by yuv2rgb\n", bpp); printf ("%ibpp not supported by yuv2rgb\n", bpp);
exit (1); //exit (1);
} }
for (i = 0; i < 256; i++) { for (i = 0; i < 256; i++) {