summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-video/dvdauthor/files/dvdauthor-0.6.10-debugsegfault.patch')
-rw-r--r--media-video/dvdauthor/files/dvdauthor-0.6.10-debugsegfault.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/media-video/dvdauthor/files/dvdauthor-0.6.10-debugsegfault.patch b/media-video/dvdauthor/files/dvdauthor-0.6.10-debugsegfault.patch
deleted file mode 100644
index 55f68492ee31..000000000000
--- a/media-video/dvdauthor/files/dvdauthor-0.6.10-debugsegfault.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- src/subgen.c.old 2004-09-04 19:12:19.609738456 +0200
-+++ src/subgen.c 2004-09-04 19:15:16.979774112 +0200
-@@ -393,24 +393,23 @@
- if( !newsti )
- {
- fprintf(stderr, "INFO: Found EOF in .sub file.\n");
-+ fprintf(stderr, "spts: %d sd: %d\n",\
-+ cursti->spts / 90000, cursti->sd / 90000);
- }
--
-- if(newsti) /* not last sub */
-+ else /* not last sub */
- {
- if(cursti->spts + cursti->sd + tbs > newsti->spts)
- {
-- if (debug > 4)
-- fprintf(stderr, "WARN: Overlapping sub\n");
- cursti->sd = -1;
-+ if (debug > 4)
-+ {
-+ fprintf(stderr, "WARN: Overlapping sub\n");
-+ fprintf(stderr, "spts: %d sd: %d nspts: %d\n",\
-+ cursti->spts / 90000, cursti->sd / 90000, newsti->spts / 90000);
-+ }
- }
- } /* end if ! last sub */
-
-- if(debug > 4)
-- {
-- fprintf(stderr, "spts: %d sd: %d nspts: %d\n",\
-- cursti->spts / 90000, cursti->sd / 90000, newsti->spts / 90000);
-- }
--
- if( (cursti->sd == -1) && newsti && ( (!svcd) || until_next_sub) )
- {
- if(newsti->spts > cursti->spts + tbs) cursti->sd = newsti->spts - cursti->spts - tbs;