vcdimager-gui-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[VCDImager-GUI-devel] Re: Sorry...


From: Herbert Valerio Riedel
Subject: [VCDImager-GUI-devel] Re: Sorry...
Date: Wed, 29 Aug 2001 11:34:52 +0200 (CEST)

On Wed, 29 Aug 2001, delphi.stuff wrote:

> Sorry, I wanted to say the opposite...
>
>  when VCD2.0, I must use
>    <endlist id="selection-end" />
>  instead of
>    <endlist id="selection-end" rejected="true" />
>
> And your answer is that I can add 'rejected="true"' even if VCD2.0, as 
> opposed to:
> *) pbc
>  *) all defined sub-elements
>  *) empty <end-list /> w/o sub-elements)
>
> In fact, what is the menaing of "w/o" ? I thougth it was "without", but I 
> supect it is in fact "with or without"...

w/o == without

and reject="true" is an attribute, not a sub-element :-)

> =========================================================================================================================

> Sorry again, what is the "best practise" ?
>
> <sequence-item ...>
>    <default-entry id="chapter-0" />
>    <entry id="chapter-1">10.000</entry>
>    <entry id="chapter-2">20.000</entry>
>    <entry id="chapter-3">30.000</entry>
> </sequence-item>

clearly this one!

> <sequence-item ...>
>    <default-entry id="chapter-0" />
>    <entry id="chapter-0">0.000</entry>
>    <entry id="chapter-1">10.000</entry>
>    <entry id="chapter-2">20.000</entry>
>    <entry id="chapter-3">30.000</entry>
> </sequence-item>

this one is bad, since it is invalid; you would have to write it as
follows

 <sequence-item ...>
    <default-entry id="chapter-0" />
    <entry id="chapter-1">0.000</entry>
    <entry id="chapter-2">10.000</entry>
    <entry id="chapter-3">20.000</entry>
    <entry id="chapter-4">30.000</entry>
 </sequence-item>

which would make the chapter-0 and chapter-1 entries very close to each
other which is not usefull... you should always use
<default-entry> instead of <entry>0.000</entry>, since the former one
points to the beginning of the mpeg stream, whereas the other points a few
mpeg packs behind it, skipping some header-mpeg information...

-- 
Herbert Valerio Riedel       /    Phone: (EUROPE) +43-1-58801-18840
Email: address@hidden       /    Finger address@hidden for GnuPG Public Key
GnuPG Key Fingerprint: 7BB9 2D6C D485 CE64 4748  5F65 4981 E064 883F 4142




reply via email to

[Prev in Thread] Current Thread [Next in Thread]