changeset 4786:71c3a45cf1fd

forgot to commit
author atmos4
date Thu, 21 Feb 2002 14:34:52 +0000
parents fefd14e3072f
children 1ee5574d67d6
files vobsub.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/vobsub.c	Thu Feb 21 13:31:05 2002 +0000
+++ b/vobsub.c	Thu Feb 21 14:34:52 2002 +0000
@@ -606,7 +606,7 @@
 	    strcat(buf, ".ifo");
 	    fd = fopen(buf, "rb");
 	    if (fd == NULL)
-		perror("Can't open IFO file");
+		perror("VobSub: Can't open IFO file");
 	    else {
 		// parse IFO header
 		unsigned char block[0x800];
@@ -661,7 +661,7 @@
 	    strcat(buf, ".idx");
 	    fd = fopen(buf, "rb");
 	    if (fd == NULL)
-		perror("Can't open IDX file");
+		perror("VobSub: Can't open IDX file");
 	    else {
 		while (vobsub_parse_one_line(vob, fd) >= 0)
 		    /* NOOP */ ;
@@ -673,7 +673,7 @@
 	    strcat(buf, ".sub");
 	    mpg = mpeg_open(buf);
 	    if (mpg == NULL)
-		perror("Can't open SUB file");
+		perror("VobSub: Can't open SUB file");
 	    else {
 		long last_pts_diff = 0;
 		while (!mpeg_eof(mpg)) {