/bbb-voice/src/main/java/local/media/RtpStreamReceiver.java

http://github.com/bigbluebutton/bigbluebutton · Java · 174 lines · 76 code · 36 blank · 62 comment · 9 complexity · c1b5e7bf7c8c11ca6bd72c9042a0bde6 MD5 · raw file

  1. /*
  2. * Copyright (C) 2005 Luca Veltri - University of Parma - Italy
  3. *
  4. * This source code is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This source code is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this source code; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. *
  18. * Author(s):
  19. * Luca Veltri (luca.veltri@unipr.it)
  20. */
  21. package local.media;
  22. import local.net.RtpPacket;
  23. import local.net.RtpSocket;
  24. import java.io.*;
  25. import java.net.InetAddress;
  26. import java.net.DatagramSocket;
  27. /** RtpStreamReceiver is a generic stream receiver.
  28. * It receives packets from RTP and writes them into an OutputStream.
  29. */
  30. public class RtpStreamReceiver extends Thread
  31. {
  32. /** Whether working in debug mode. */
  33. //private static final boolean DEBUG=true;
  34. public static boolean DEBUG=false;
  35. /** Size of the read buffer */
  36. public static final int BUFFER_SIZE=32768;
  37. /** Maximum blocking time, spent waiting for reading new bytes [milliseconds] */
  38. public static final int SO_TIMEOUT=200;
  39. /** The OutputStream */
  40. OutputStream output_stream=null;
  41. /** The RtpSocket */
  42. RtpSocket rtp_socket=null;
  43. /** Whether the socket has been created here */
  44. boolean socket_is_local=false;
  45. /** Whether it is running */
  46. boolean running=false;
  47. /** Constructs a RtpStreamReceiver.
  48. * @param output_stream the stream sink
  49. * @param local_port the local receiver port */
  50. public RtpStreamReceiver(OutputStream output_stream, int local_port)
  51. { try
  52. { DatagramSocket socket=new DatagramSocket(local_port);
  53. socket_is_local=true;
  54. init(output_stream,socket);
  55. }
  56. catch (Exception e) { e.printStackTrace(); }
  57. }
  58. /** Constructs a RtpStreamReceiver.
  59. * @param output_stream the stream sink
  60. * @param socket the local receiver DatagramSocket */
  61. public RtpStreamReceiver(OutputStream output_stream, DatagramSocket socket)
  62. { init(output_stream,socket);
  63. }
  64. /** Inits the RtpStreamReceiver */
  65. private void init(OutputStream output_stream, DatagramSocket socket)
  66. { this.output_stream=output_stream;
  67. if (socket!=null) rtp_socket=new RtpSocket(socket);
  68. }
  69. /** Whether is running */
  70. public boolean isRunning()
  71. { return running;
  72. }
  73. /** Stops running */
  74. public void halt()
  75. { running=false;
  76. }
  77. /** Runs it in a new Thread. */
  78. public void run()
  79. {
  80. if (rtp_socket==null)
  81. { if (DEBUG) println("ERROR: RTP socket is null");
  82. return;
  83. }
  84. //else
  85. byte[] buffer=new byte[BUFFER_SIZE];
  86. RtpPacket rtp_packet=new RtpPacket(buffer,0);
  87. if (DEBUG) println("Reading blocks of max "+buffer.length+" bytes");
  88. //byte[] aux=new byte[BUFFER_SIZE];
  89. running=true;
  90. try
  91. { rtp_socket.getDatagramSocket().setSoTimeout(SO_TIMEOUT);
  92. while (running)
  93. { try
  94. { // read a block of data from the rtp socket
  95. rtp_socket.receive(rtp_packet);
  96. //if (DEBUG) System.out.print(".");
  97. // write this block to the output_stream (only if still running..)
  98. if (running) output_stream.write(rtp_packet.getPacket(), rtp_packet.getHeaderLength(), rtp_packet.getPayloadLength());
  99. /*if (running)
  100. { byte[] pkt=rtp_packet.getPacket();
  101. int offset=rtp_packet.getHeaderLength();
  102. int len=rtp_packet.getPayloadLength();
  103. int pos=0;
  104. for (int i=0; i<len; i++)
  105. { int linear=G711.ulaw2linear(pkt[offset+i]);
  106. //aux[pos++]=(byte)(linear&0xFF);
  107. //aux[pos++]=(byte)((linear&0xFF00)>>8);
  108. aux[pos++]=(byte)G711.linear2ulaw(linear);
  109. }
  110. output_stream.write(aux,0,pos);
  111. }*/
  112. }
  113. catch (java.io.InterruptedIOException e) { }
  114. }
  115. }
  116. catch (Exception e) { running=false; e.printStackTrace(); }
  117. // close RtpSocket and local DatagramSocket
  118. DatagramSocket socket=rtp_socket.getDatagramSocket();
  119. rtp_socket.close();
  120. if (socket_is_local && socket!=null) socket.close();
  121. // free all
  122. output_stream=null;
  123. rtp_socket=null;
  124. if (DEBUG) println("rtp receiver terminated");
  125. }
  126. /** Debug output */
  127. private static void println(String str)
  128. { System.out.println("RtpStreamReceiver: "+str);
  129. }
  130. public static int byte2int(byte b)
  131. { //return (b>=0)? b : -((b^0xFF)+1);
  132. //return (b>=0)? b : b+0x100;
  133. return (b+0x100)%0x100;
  134. }
  135. public static int byte2int(byte b1, byte b2)
  136. { return (((b1+0x100)%0x100)<<8)+(b2+0x100)%0x100;
  137. }
  138. }