Uses of Class
com.wowza.wms.amf.AMFPacket

Packages that use AMFPacket
com.wowza.util   
com.wowza.wms.amf   
com.wowza.wms.rtp.model   
com.wowza.wms.stream   
com.wowza.wms.stream.livepacketizer   
com.wowza.wms.util   
 

Uses of AMFPacket in com.wowza.util
 

Methods in com.wowza.util that return AMFPacket
static AMFPacket FLVUtils.readChunk(java.io.DataInput is)
          Read a packets worth of .flv data from an InputStream and return as an AMFPacket
static AMFPacket FLVUtils.readChunk(java.io.InputStream is)
          Read a packets worth of .flv data from an InputStream and return as an AMFPacket
static AMFPacket FLVUtils.updateOnCuePointTimecode(AMFPacket packet, long timecode)
           
 

Methods in com.wowza.util that return types with arguments of type AMFPacket
static java.util.List<AMFPacket> FLVUtils.interleavePackets(java.util.List audioPackets, java.util.List videoPackets, java.util.List dataPackets, java.util.List audioTCs, java.util.List videoTCs, java.util.List dataTCs, java.util.List dataTypes, long[] currentTCs)
          This is a utility function primarily used for IMediaWriters.
 

Methods in com.wowza.util with parameters of type AMFPacket
static int FLVUtils.getAudioCodec(AMFPacket packet)
          Get the codec id for this audio packet.
static int FLVUtils.getVideoCodec(AMFPacket packet)
          Get the codec id for this video packet.
static boolean FLVUtils.isAudioCodecConfig(AMFPacket packet)
          Returns true if the packet is a video codec config packet
static boolean FLVUtils.isVideoCodecConfig(AMFPacket packet)
          Returns true if the packet is a video codec config packet
static boolean FLVUtils.isVideoKeyFrame(AMFPacket packet)
          Returns true if the packet is a video key frame
static AMFPacket FLVUtils.updateOnCuePointTimecode(AMFPacket packet, long timecode)
           
 

Uses of AMFPacket in com.wowza.wms.amf
 

Methods in com.wowza.wms.amf that return AMFPacket
 AMFPacket AMFPacket.clone()
           
 

Uses of AMFPacket in com.wowza.wms.rtp.model
 

Methods in com.wowza.wms.rtp.model that return AMFPacket
 AMFPacket[] RTPStream.getLastPacketsByType(IMediaReader localReader, double startTime)
          Analyzes stream to get information, Internal use.
 AMFPacket[] RTPStream.getLastPacketsByType(IMediaStream localStream)
          Analyzes stream to get information, Internal use.
 

Uses of AMFPacket in com.wowza.wms.stream
 

Methods in com.wowza.wms.stream that return AMFPacket
 AMFPacket IMediaStream.getAudioCodecConfigPacket(long timecode)
          Get audio codec configuration packet (needed for H.264/AAC playback)
 AMFPacket IMediaStream.getLastKeyFrame()
          Get most recent video key frame
 AMFPacket IMediaStream.getLastPacket()
          Get most recent live packet
 AMFPacket IMediaStream.getVideoCodecConfigPacket(long timecode)
          Get video codec configuration packet (needed for H.264/AAC playback)
 

Methods in com.wowza.wms.stream that return types with arguments of type AMFPacket
 java.util.List<AMFPacket> IMediaStream.getPlayPackets()
          Get all available live packets
 

Methods in com.wowza.wms.stream with parameters of type AMFPacket
 void IMediaStream.addAudioCodecConfigPacket(long timecode, AMFPacket packet)
          Set audio codec configuration packet (needed for H.264/AAC playback)
 void IMediaStream.addVideoCodecConfigPacket(long timecode, AMFPacket packet)
          Set video codec configuration packet (needed for H.264/AAC playback)
 void IMediaStream.notifyActionOnMetaData(AMFPacket metaDataPacket)
          Notify client listeners of onMetaData change
 void IMediaStreamActionNotify2.onMetaData(IMediaStream stream, AMFPacket metaDataPacket)
          Triggered when a published streams metadata is set or changes
 

Method parameters in com.wowza.wms.stream with type arguments of type AMFPacket
 int IMediaReader.writePackets(java.util.List<AMFPacket> packetList, com.wowza.wms.stream.file.PlaylistCursor flvCursor, com.wowza.wms.stream.file.PlaylistWriteControl control, com.wowza.wms.stream.file.PlaylistReaderWriteResults results, long[] sizes, FastPlaySettings fastPlaySettings)
          Write packets to the packetList as AMFPackets
 

Uses of AMFPacket in com.wowza.wms.stream.livepacketizer
 

Methods in com.wowza.wms.stream.livepacketizer with parameters of type AMFPacket
 void ILiveStreamPacketizer.handlePacket(IMediaStream stream, AMFPacket packet)
          Called to handle an incoming packet
 

Uses of AMFPacket in com.wowza.wms.util
 

Methods in com.wowza.wms.util with parameters of type AMFPacket
static int StreamUtils.packetOutput(java.io.OutputStream out, IMediaStream stream, AMFPacket packet, long timecode, AMFObj wmsObj, byte[] workBuffer, int chunkSize)
          Packet output.
static int StreamUtils.packetOutput(java.io.OutputStream out, IMediaStream stream, AMFPacket packet, long timecode, AMFObj wmsObj, byte[] workBuffer, int chunkSize, boolean referenceWrite)
          Packet output.