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:
parent
b0dbb726dc
commit
2b48b538fe
@ -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");
|
||||
} else {
|
||||
printf("no supported palette found\n");
|
||||
exit(1);
|
||||
return -1;
|
||||
}
|
||||
|
||||
// config.src_palette= VIDEO_PALETTE_YUV422;
|
||||
|
@ -402,7 +402,7 @@ static void yuv2rgb_c_init (int bpp, int mode)
|
||||
|
||||
default:
|
||||
printf ("%ibpp not supported by yuv2rgb\n", bpp);
|
||||
exit (1);
|
||||
//exit (1);
|
||||
}
|
||||
|
||||
for (i = 0; i < 256; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user