# HG changeset patch # User atmos4 # Date 1014302092 0 # Node ID 71c3a45cf1fd394bcce4848899b4d2e7a8a93385 # Parent fefd14e3072f931578eabf23d97a7c14c7a4449b forgot to commit diff -r fefd14e3072f -r 71c3a45cf1fd vobsub.c --- 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)) {