<!-- 
            Copyright: Copyright 1998-2001 W3C (MIT, INRIA, 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: transOutFreezeDur.smil
  Media Components: 2 MPG (nist.mpg dur="5.6s"; coffee.mpg dur="10s")
 Expected Behavior: Both movies begin playing at 0s.
                    At 3s nist.mpg ends and freezes on last frame.
                    At 4s (1s before coffee.mpg ends), 
                       nist.mpg transitions out leftToRight for 1s,
                       revealing the background as it transitions out.
                    At 5s coffee.mpg ends
                       and both videos disappear.
-->
<smil xmlns="http://www.w3.org/2001/SMIL20/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" dur="5" region="region1" />
      <video src="videos/nist.mpg" dur="3" transOut="trans1" fill="freeze" region="region2" />
   </par>
</body>
</smil>