<!-- 
            Copyright: Copyright 1998-2005  W3C (MIT, ERCIM, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/.
Author: Debbie Newman, Microsoft
           Version: Mar. 14, 2001, v1
            Module: Basic Transitions Module
           Feature: transOut with freeze and media natural duration
         File Name: transOutFreezeNaturalDur.smil
  Media Components: 2 MPG (nist.mpg dur="5.6s"; coffee.mpg dur="10s")
 Expected Behavior: Both movies begin playing at 0s.
                    At 5.6s nist.mpg ends and freezes on last frame.
                    At 9s (1s before coffee.mpg ends), 
                       nist.mpg transitions out leftToRight for 1s,
                       revealing the background as it transitions out.
                    At 10s (end of its natural dur) coffee.mpg ends
                       and both videos disappear.
-->
<smil xmlns="http://www.w3.org/2005/SMIL21/Language">
<head>
<layout type="text/smil-basic-layout">
   <root-layout width="500" height="200" />
   <region id="region1" width="200" height="200" background-color="white" />
   <region id="region2" width="300" height="200" left="200" background-color="white" />
</layout>
<transition id="trans1" type="barWipe" />
</head>
<body>
   <par>
      <video src="videos/coffee.mpg" region="region1" />
      <video src="videos/nist.mpg" transOut="trans1" fill="freeze" region="region2" />
   </par>
</body>
</smil>