grammar missing optional msf for START and END.
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
$Id: toc.y,v 1.1 2005/01/31 10:20:51 rocky Exp $
|
$Id: toc.y,v 1.2 2005/02/01 03:35:12 rocky Exp $
|
||||||
|
|
||||||
Copyright (C) 2005 Rocky Bernstein <rocky@panix.com>
|
Copyright (C) 2005 Rocky Bernstein <rocky@panix.com>
|
||||||
|
|
||||||
@@ -137,8 +137,8 @@ opt_index_msfs: opt_index_msfs INDEX msf
|
|||||||
| /* empty */ ;
|
| /* empty */ ;
|
||||||
|
|
||||||
subTrack_or_start_or_end: subTrack
|
subTrack_or_start_or_end: subTrack
|
||||||
| START
|
| START opt_msf
|
||||||
| END;
|
| END opt_msf ;
|
||||||
|
|
||||||
subTracks_or_starts_or_ends: subTracks_or_starts_or_ends
|
subTracks_or_starts_or_ends: subTracks_or_starts_or_ends
|
||||||
subTrack_or_start_or_end
|
subTrack_or_start_or_end
|
||||||
@@ -176,6 +176,8 @@ sLong: Integer ;
|
|||||||
|
|
||||||
msf: Integer Colon Integer Colon Integer ;
|
msf: Integer Colon Integer Colon Integer ;
|
||||||
|
|
||||||
|
opt_msf: msf | /* empty */ ;
|
||||||
|
|
||||||
samples: msf | uLong ;
|
samples: msf | uLong ;
|
||||||
|
|
||||||
dataLength: msf | uLong ;
|
dataLength: msf | uLong ;
|
||||||
|
|||||||
Reference in New Issue
Block a user