/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
package org.jboss.media.exampleplugins;

import javax.media.Format;
import javax.media.format.RGBFormat;

import org.jboss.media.engine.JmfAbstractMediaPlugin;

/**
 * @version <tt>$Revision: 1.1 $</tt>
 * @author <a href="mailto:spyridon_samothrakis@yahoo.com">Spyridon Samothrakis</a>
 */
public class VideoWindow extends JmfAbstractMediaPlugin
{

   /* (non-Javadoc)
    * @see org.jboss.media.engine.JmfAbstractMediaPlugin#getSupportedFormats()
    */
   public Format[] getSupportedFormats()
   {
      Format[] inputFormats =
         new Format[] {
             new RGBFormat(
               null,
               Format.NOT_SPECIFIED,
               Format.byteArray,
               Format.NOT_SPECIFIED,
               24,
               3,
               2,
               1,
               3,
               Format.NOT_SPECIFIED,
               Format.TRUE,
               Format.NOT_SPECIFIED)};

      return inputFormats;

   }

}