Mercurial > libdvdread4.hg
changeset 87:1a6394166cce src
Document warnings generated by DVDs made with the VDR-to-DVD device LG RC590M.
Patch by Paul Menzel <paulepanter AT users DOT sourceforge DOT net>.
author | rathann |
---|---|
date | Tue, 12 Nov 2013 00:10:38 +0000 |
parents | 8796d6c029b1 |
children | 3893da169ede |
files | ifo_read.c |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/ifo_read.c Sun Oct 06 21:39:42 2013 +0000 +++ b/ifo_read.c Tue Nov 12 00:10:38 2013 +0000 @@ -568,6 +568,8 @@ CHECK_ZERO(vmgi_mat->zero_1); CHECK_ZERO(vmgi_mat->zero_2); + /* DVDs created by VDR-to-DVD device LG RC590M violate the following check with + * vmgi_mat->zero_3 = 0x00000000010000000000000000000000000000. */ CHECK_ZERO(vmgi_mat->zero_3); CHECK_ZERO(vmgi_mat->zero_4); CHECK_ZERO(vmgi_mat->zero_5); @@ -1219,6 +1221,7 @@ Titles with 0 PTTs. */ if(n < 0) n = 0; + /* DVDs created by the VDR-to-DVD device LG RC590M violate the following requirement */ CHECK_VALUE(n % 4 == 0); vts_ptt_srpt->title[i].nr_of_ptts = n / 4;