Re: Cannot find PGC with entry 60000.0/1001.0 (NTSC FIELD RATE)
Lawrence D'Oliveiro <ldo-kC51rjc0cqs1dNLGKZg6taU/[email protected]>
| Newsgroups | gmane.comp.multimedia.dvdauthor.user |
|---|---|
| Message-ID | <[email protected]> |
On 08/07/10 12:08, Ben Hutchings wrote:
> <http://www.dvd-replica.com/DVD/linkpgcn.php> says "PGCs within a domain
> are numbered from 1 and counted up sequentially to a limit of 999. ...
Which is what I said in the man page.
>> DVDAuthor does not use any numbers that might be confused with valid
>> numbers of menus, titles or anything else.
>
> Well, the grammar for menu or title number does this:
>
> jtml: MENU_TOK NUM_TOK {
> $$=$2;
> }
> | MENU_TOK {
> $$=120; // default entry
> }
> | MENU_TOK ENTRY_TOK TITLE_TOK {
> $$=122;
> }
That’s old. The current version of dvdmy.y looks like this
jtsl: TITLESET_TOK NUM_TOK {
if ($2 < 1 || $2 > 99)
{
yyerror("titleset number out of range");
} /*if*/
$$=($2)+1;
}
| VMGM_TOK {
$$=1;
}
| {
$$=0;
}
;
jtml: MENU_TOK NUM_TOK {
if ($2 < 1 || $2 > 99)
{
yyerror("menu number out of range");
} /*if*/
$$=$2;
}
...
------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
_______________________________________________
Dvdauthor-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dvdauthor-users