1
mirror of https://github.com/mpv-player/mpv synced 2024-10-06 14:54:02 +02:00

removed exit(1);

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@115 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi_esp 2001-03-16 00:28:00 +00:00
parent 2ea08493f5
commit 8022fa2bb9

View File

@ -205,7 +205,7 @@ static int parse_chunk (vo_functions_t * output, int code, uint8_t * buffer)
case 0x00: /* picture_start_code */
if (header_process_picture_header (picture, buffer)) {
printf ("bad picture header\n");
exit (1);
//exit (1);
}
drop_frame = drop_flag && (picture->picture_coding_type == B_TYPE);
@ -215,14 +215,14 @@ static int parse_chunk (vo_functions_t * output, int code, uint8_t * buffer)
case 0xb3: /* sequence_header_code */
if (header_process_sequence_header (picture, buffer)) {
printf ("bad sequence header\n");
exit (1);
//exit (1);
}
break;
case 0xb5: /* extension_start_code */
if (header_process_extension (picture, buffer)) {
printf ("bad extension\n");
exit (1);
//exit (1);
}
break;