FileDocCategorySizeDatePackage
RTPSyncBufferMux.javaAPI DocJMF 2.1.1e1050Mon May 12 12:20:58 BST 2003com.sun.media.multiplexer

RTPSyncBufferMux

public class RTPSyncBufferMux extends RawSyncBufferMux

Fields Summary
FormatInfo
rtpFormats
Constructors Summary
public RTPSyncBufferMux()


      
	super();
	supported = new ContentDescriptor[1];
	supported[0] = new ContentDescriptor(ContentDescriptor.RAW_RTP);
	monoIncrTime = true;
    
Methods Summary
public java.lang.StringgetName()
Returns a descriptive name for the plug-in. This is a user readable string.

	return "RTP Sync Buffer Multiplexer";
    
public javax.media.FormatsetInputFormat(javax.media.Format input, int trackID)


	// Screen for the supported formats.
	if (!com.sun.media.rtp.RTPSessionMgr.formatSupported(input))
	    return null;

	return super.setInputFormat(input, trackID);