Package net.sf.fmj.test.compat.demux

Source Code of net.sf.fmj.test.compat.demux.TestDemux

package net.sf.fmj.test.compat.demux;

import javax.media.protocol.ContentDescriptor;

import net.sf.fmj.test.tracing.TracingDemultiplexer;

/**
*
* @author Ken Larson
*
*/
public class TestDemux extends TracingDemultiplexer
{

  public static TestDemux instance;
  public TestDemux()
  {
    super();
    instance = this;
  }

  public ContentDescriptor[] getSupportedInputContentDescriptors()
  {
    return new ContentDescriptor[] {new ContentDescriptor("audio.test")};
  }
}
TOP

Related Classes of net.sf.fmj.test.compat.demux.TestDemux

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.