Examples of AudioData


Examples of org.red5.server.net.rtmp.event.AudioData

    ITag tag = reader.readTag();
    IRTMPEvent msg = null;
    int timestamp = tag.getTimestamp();
    switch (tag.getDataType()) {
      case Constants.TYPE_AUDIO_DATA:
        msg = new AudioData(tag.getBody());
        break;
      case Constants.TYPE_VIDEO_DATA:
        msg = new VideoData(tag.getBody());
        break;
      case Constants.TYPE_INVOKE:
View Full Code Here

Examples of org.red5.server.net.rtmp.event.AudioData

    return new BytesRead(in.getInt());
  }

  /** {@inheritDoc} */
  public AudioData decodeAudioData(ByteBuffer in) {
    return new AudioData(in.asReadOnlyBuffer());
  }
View Full Code Here

Examples of org.red5.server.net.rtmp.event.AudioData

    rtpStreamReceiver = new RtpStreamReceiver(socket, transcoder.getIncomingEncodedFrameSize());
    rtpStreamReceiver.setRtpStreamReceiverListener(this);
    listenStreamName = "speaker_" + System.currentTimeMillis();   
    mBuffer = IoBuffer.allocate(1024);
    mBuffer = mBuffer.setAutoExpand(true);
        audioData = new AudioData();
    transcoder.setTranscodedAudioListener(this);
  }
View Full Code Here

Examples of org.red5.server.net.rtmp.event.AudioData

      System.arraycopy(audio, 0, copy, 0, audio.length );
       
        buffer.put(copy);       
        buffer.flip();

        AudioData audioData = new AudioData(buffer);
        audioData.setTimestamp((int)(System.currentTimeMillis() - start) );
        listener.handleTranscodedAudioData(audioData);
    }   
View Full Code Here

Examples of org.red5.server.net.rtmp.event.AudioData

      System.arraycopy(audio, 0, copy, 0, audio.length );
       
        buffer.put(copy);       
        buffer.flip();

        AudioData audioData = new AudioData( buffer );
        audioData.setTimestamp((int)timestamp );

        listener.handleTranscodedAudioData(audioData);
    }
View Full Code Here
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.