summaryrefslogtreecommitdiffstats
path: root/libmpeg2
diff options
context:
space:
mode:
authorarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-03-16 00:28:00 +0000
committerarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-03-16 00:28:00 +0000
commit8022fa2bb926e044e8efc45895d806c3b5596e0e (patch)
treeed5af0a7c3b6eb9438625d1ac731f8d8659cae9e /libmpeg2
parent2ea08493f50c3f0731802c24507b8644bde0c5d2 (diff)
downloadmpv-8022fa2bb926e044e8efc45895d806c3b5596e0e.tar.bz2
mpv-8022fa2bb926e044e8efc45895d806c3b5596e0e.tar.xz
removed exit(1);
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@115 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpeg2')
-rw-r--r--libmpeg2/decode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmpeg2/decode.c b/libmpeg2/decode.c
index 467f704c48..804b1c72fc 100644
--- a/libmpeg2/decode.c
+++ b/libmpeg2/decode.c
@@ -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;