I'm having trouble with my chapters points.

I have devided one mpeg2 file into 4 chapters. This works fine, but if I start to play the track at chapter 1 and I press the <next> button when time exceeds the chapter 2 entry point the dvd player will skip to chapter 2 instead of chapter 3.

It's even worse, After I play the whole sequence (started with chapter 1) it goes to chapter 2 instead of the menu.

I have tried both the <playlist> and <selection> tag, but I can't figure this one out.

Also the vcdxbuild program said something about "one or more bcd-fields out of range" how can I correct these?

I'm using TMPGEnc 12a, Premiere 6.0, AviSynth premiere plugin and vcdxbuild version 7.

Can anybody help me? Thanks...

The xml file:
======
<?xml version="1.0"?>
<!DOCTYPE videocd PUBLIC "-//GNU//DTD VideoCD//EN" "http://www.gnu.org/software/vcdimager/videocd.dtd">

<videocd xmlns="http://www.gnu.org/software/vcdimager/1.0/" class="svcd" version="1.0">

<option name="update scan offsets" value="true"/>

<info>
<album-id>CAMILO</album-id>
<volume-count>1</volume-count>
<volume-number>1</volume-number>
<restriction>0</restriction>
</info>

<pvd>
<volume-id>CAMILO</volume-id>
<system-id>Camilo by Laurentius Productions</system-id>
<preparer-id>LP</preparer-id>
<publisher-id>Laurentius Productions</publisher-id>
</pvd>

<segment-items>
<segment-item src="menu.mpg" id="seg-menu" />
</segment-items>

<sequence-items>
<sequence-item src="camilo.mpg" id="seq-movie">
<entry id="entry002">432</entry>
<entry id="entry003">670</entry>
<entry id="entry004">1020</entry>
</sequence-item>
</sequence-items>

<pbc>
<selection id="selection-menu">
<bsn>1</bsn>
<wait>-1</wait>
<play-item ref="seg-menu" />
<select ref="selection-movie"/>
<select ref="selection-entry002"/>
<select ref="selection-entry003"/>
<select ref="selection-entry004"/>
</selection>

<selection id="selection-movie">
<bsn>1</bsn>
<next ref="selection-entry002" />
<return ref="selection-menu" />
<timeout ref="selection-menu" />
<wait>1</wait>
<loop jump-timing="delayed">1</loop>
<play-item ref="seq-movie" />
</selection>

<selection id="selection-entry002">
<bsn>1</bsn>
<prev ref="selection-movie" />
<next ref="selection-entry003" />
<return ref="selection-menu" />
<timeout ref="selection-menu" />
<wait>1</wait>
<loop jump-timing="delayed">1</loop>
<play-item ref="entry002" />
</selection>

<selection id="selection-entry003">
<bsn>1</bsn>
<prev ref="selection-entry002" />
<next ref="selection-entry004" />
<return ref="selection-menu" />
<timeout ref="selection-menu" />
<wait>1</wait>
<loop jump-timing="delayed">1</loop>
<play-item ref="entry003" />
</selection>

<selection id="selection-entry004">
<bsn>1</bsn>
<prev ref="selection-entry003" />
<next ref="selection-menu" />
<return ref="selection-menu" />
<timeout ref="selection-menu" />
<wait>1</wait>
<loop jump-timing="delayed">1</loop>
<play-item ref="entry004" />
</selection>

</pbc>
</videocd>
====