rtpCodec.cxx
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:15k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /* ====================================================================
  2.  * The Vovida Software License, Version 1.0 
  3.  * 
  4.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in
  15.  *    the documentation and/or other materials provided with the
  16.  *    distribution.
  17.  * 
  18.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  19.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  20.  *    not be used to endorse or promote products derived from this
  21.  *    software without prior written permission. For written
  22.  *    permission, please contact vocal@vovida.org.
  23.  *
  24.  * 4. Products derived from this software may not be called "VOCAL", nor
  25.  *    may "VOCAL" appear in their name, without prior written
  26.  *    permission of Vovida Networks, Inc.
  27.  * 
  28.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  29.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  31.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  32.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  33.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  34.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  35.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  36.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  37.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  39.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  40.  * DAMAGE.
  41.  * 
  42.  * ====================================================================
  43.  * 
  44.  * This software consists of voluntary contributions made by Vovida
  45.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  46.  * Inc.  For more information on Vovida Networks, Inc., please see
  47.  * <http://www.vovida.org/>.
  48.  *
  49.  */
  50. static const char* const rtpCodec_cxx_Version =
  51.     "$Id: rtpCodec.cxx,v 1.15 2001/07/26 21:50:42 kle Exp $";
  52. #include "rtpCodec.h"
  53. #include "cpLog.h"
  54. #include "g711.h"
  55. #include "rtpTypes.h"
  56. #include "RtpPacket.hxx"
  57. const int numRtpCodecInfo = 10;
  58. RtpCodecInfo rtpCodecInfo[numRtpCodecInfo] = 
  59. {
  60.     // g711ulaw 
  61.     // 80 words, 160 bytes silence payload for 20ms packetization - 
  62.     { rtpPayloadPCMU, 160, 
  63.     { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
  64.       0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
  65.       0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
  66.       0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
  67.       0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
  68.       0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
  69.       0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
  70.       0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }
  71.     },
  72.     // g711alaw 
  73.     // 80 words, 160 bytes silence payload for 20ms packetization - 
  74.     { rtpPayloadPCMA, 160,
  75.     { 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 
  76.       0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 
  77.       0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 
  78.       0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 
  79.       0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 
  80.       0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 
  81.       0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 
  82.       0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55 } 
  83.     },
  84.     // gsm TODO
  85.     // find specs
  86.     // gsmfr 
  87.     // 17 words, 34 bytes silence payload for 20ms packetization - 
  88.     { rtpPayloadGSM, 34,
  89.     { 0xD9, 0xEA, 0xC4, 0x6C, 0xE1, 0x84, 0x00, 0x39, 0x5C, 0x91, 0xC9, 0x2B, 0xA6, 0xA0, 0x49, 0x24, 0x95, 0x37, 0x24, 0x76, 
  90.       0xE0, 0x4B, 0x23, 0x8E, 0x56, 0xDB, 0x56, 0xA0, 0x48, 0xE5, 0x8E, 0x4B, 0x2C, 0x52 } 
  91.     },
  92.     // gsmfr 
  93.     // 16 words, 32 bytes silence payload for 20ms packetization - 
  94.     { rtpPayloadGSMFR, 34,
  95.     { 0xC4, 0x8F, 0x43, 0xF9, 0x0A, 0xEA, 0xD6, 0x00, 0x00, 0x00, 0x00, 0x01, 0xB5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x55, 0xAC, 
  96.       0x00, 0x00, 0x00, 0x00, 0x03, 0x6B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
  97.     },
  98.     // g723r53 
  99.     // 10 words, 20 bytes silence payload for 30 ms packetization - 
  100.     { rtpPayloadG723, 20,
  101.     { 0x95, 0x0A, 0xCE, 0xDA, 0x3F, 0x3E, 0x84, 0xC3, 0xB3, 0x4C, 0xEB, 0x62, 0xA6, 0x2A, 0x0F, 0x4C, 0x72, 0xCE, 0xA9, 0xA1 } 
  102.     },
  103.     // g723r63 
  104.     // 12 words, 24 bytes silence payload for 30 ms packetization - 
  105.     { rtpPayloadG723, 24,
  106.     { 0xE8, 0x2E, 0xCE, 0xDE, 0xC8, 0xB8, 0x6A, 0x84, 0xB1, 0x61, 0xE2, 0x99, 0xBE, 0x0C, 0x69, 0x71, 0x0D, 0x99, 0x53, 0x72, 
  107.       0xFF, 0xAD, 0xB6, 0xE8 } 
  108.     },
  109.     // g732ar63 TODO
  110.     // find specs
  111.     // g723ar53 TODO
  112.     // find specs
  113.     // g728 TODO
  114.     // find specs
  115.     // g726r16 
  116.     // 20 words, 40 bytes silence payload for 20ms packetization - 
  117.     { rtpPayloadG726_16, 40,
  118.     { 0x03, 0x33, 0xC3, 0x3C, 0x3C, 0xCF, 0x3C, 0x03, 0xCF, 0x00, 0xF0, 0xF3, 0x3F, 0xFF, 0xC0, 0xCF, 0xF0, 0xF3, 0x00, 0xFC, 
  119.       0xFF, 0x0C, 0x3C, 0x00, 0x0C, 0xFF, 0xCC, 0x03, 0x0C, 0xC0, 0x0C, 0xF0, 0xC3, 0x30, 0x30, 0x00, 0xCC, 0xF0, 0xF3, 0x0C } 
  120.     },
  121.     // g726r24 
  122.     // 30 words, 60 bytes silence payload for 20ms packetization - 
  123.     { rtpPayloadG726_24, 60,
  124.     { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
  125.       0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 
  126.       0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xBF, 0xFF, 0xFD, 0xFF, 0xFF, 0xFD, 0xFF, 0xE7 } 
  127.     },
  128.     // g726r32 
  129.     // 40 words, 80 bytes silence payload for 20ms packetization - 
  130.     { rtpPayloadG726_32, 80,
  131.     { 0xFF, 0xF1, 0xEF, 0xEF, 0xFF, 0xF1, 0xEF, 0xEF, 0x1F, 0xFF, 0xFE, 0xEF, 0xFF, 0xFE, 0x1F, 0x1F, 0xFE, 0x11, 0xEF, 0x1E, 
  132.       0x1E, 0xEF, 0xEF, 0xFF, 0xFE, 0xFE, 0xEE, 0xEF, 0xEE, 0x1F, 0xEF, 0xFE, 0xFE, 0xE1, 0xF1, 0xFE, 0xE1, 0xFF, 0xFF, 0xEF, 
  133.       0xFE, 0xFF, 0xEF, 0xFE, 0xF1, 0xEF, 0xFE, 0xFF, 0xEF, 0xFE, 0xFF, 0x1E, 0xEF, 0xFF, 0x1F, 0xFC, 0xFF, 0xFF, 0x1F, 0xFF, 
  134.       0xEF, 0xFF, 0xFF, 0x1F, 0xFF, 0x1E, 0x1E, 0xEE, 0xF1, 0x1F, 0xFF, 0xEE, 0x1F, 0xFE, 0xFE, 0xEE, 0x1F, 0xFF, 0xFE, 0xFF } 
  135.     },
  136.     // linear16mono TODO
  137.     // find specs
  138.     // g729 all versions TODO
  139.     // find specs
  140.     // unknown
  141.     // 240 words, 480 bytes silence payload - 
  142.     { rtpPayloadUndefined, 480, 
  143.     { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  144.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  145.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  146.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  147.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  148.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  149.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  150.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  151.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  152.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  153.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  154.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  155.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  156.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  157.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  158.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  159.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  160.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  161.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  162.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  163.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  164.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  165.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  166.       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
  167.     }
  168. };
  169. /*  extra unused silence packets from ducati vsp ENG-86534
  170.     probably number under another alias
  171.     // g728r16 
  172.     // 20 words, 40 bytes silence payload for 20ms packetization - 
  173.     { 0x58C0, 0x324C, 0xAD01, 0xD83F, 0xC415, 0x3DF6, 0xC1CF, 0xA0C5, 0x4229, 0x8442, 
  174.     0x76D5, 0x62CD, 0xCD1C, 0xC92D, 0x2D02, 0x30D8, 0x624B, 0x568C, 0x0A3C, 0x3CC2 } 
  175.     // g729r8 
  176.     // 10 words, 20 bytes silence payload for 20ms packetization - 
  177.     { 0x4057, 0x8C6E, 0x309A, 0x87E8, 0xCA05, 0xF8FE, 0xA91E, 0xCCE3, 0x56A1, 0xE590 } 
  178. */
  179. RtpPacket*
  180. convertRtpPacketCodec (RtpPayloadType toType, RtpPacket* packet)
  181. {
  182.     RtpPacket* p = new RtpPacket(packet, 1012);
  183.     assert (p);
  184.     int result_size = convertCodec (packet->getPayloadType(), toType,
  185.                                     packet->getPayloadLoc(), p->getPayloadLoc(),
  186.                                     packet->getPayloadUsage());
  187.     p->setPayloadType(toType);
  188.     p->setPayloadUsage(result_size);
  189.     return p;
  190. }
  191. // return value is size of converted data stored at out_data
  192. int
  193. convertCodec(RtpPayloadType fromType, RtpPayloadType toType,
  194.              char* in_data, char* out_data, int len)
  195. {
  196.     int result_len = -1;
  197.     unsigned char* charBuff = (unsigned char*)out_data;
  198.     short* shortBuff = (short*)out_data;
  199.     unsigned char* charPayload = (unsigned char*)in_data;
  200.     short* shortPayload = (short*)in_data;
  201.     switch (fromType)
  202.     {
  203.         case rtpPayloadPCMU :
  204.         {
  205.             switch (toType)
  206.             {
  207.                 case rtpPayloadL16_mono :
  208.                 case rtpPayloadL16_8k_mono :
  209.                 for (int i = 0; i < len; i++)
  210.                     shortBuff[i] = ulaw2linear (charPayload[i]);
  211.                 result_len = len * 2;
  212.                 break;
  213.                 default :
  214.                 cpLog(LOG_DEBUG, "Unsupported converstion %d -> %d",
  215.                       fromType, toType);
  216.                 break;
  217.             }
  218.         }
  219.         break;
  220.         case rtpPayloadL16_mono :
  221.         case rtpPayloadL16_8k_mono :
  222.         {
  223.             switch (toType)
  224.             {
  225.                 case rtpPayloadPCMU :
  226.                 for (int i = 0; i < len / 2; i++)
  227.                     charBuff[i] = linear2ulaw (shortPayload[i]);
  228.                 result_len = len / 2;
  229.                 break;
  230.                 default :
  231.                 cpLog(LOG_DEBUG, "Unsupported conversion %d -> %d",
  232.                       fromType, toType);
  233.                 break;
  234.             }
  235.         }
  236.         break;
  237.         default :
  238.         {
  239.             cpLog(LOG_DEBUG, "Unsupported conversion %d -> %d",
  240.                   fromType, toType);
  241.             break;
  242.         }
  243.     }
  244.     return result_len;
  245. }
  246. void rtp_htonl (RtpPacket* p)
  247. {
  248. #if __BYTE_ORDER == __LITTLE_ENDIAN
  249.     unsigned char tdata;
  250.     if (p->getPayloadType() == rtpPayloadL16_mono)
  251.     {
  252.         unsigned char* data = (unsigned char*) p->getPayloadLoc();
  253.         for (int i = 0; i < p->getPayloadUsage(); i = i + 2)
  254.         {
  255.             tdata = data[i];
  256.             data[i] = data[i + 1];
  257.             data[i + 1] = tdata;
  258.         }
  259.     }
  260. #endif
  261. }
  262. void rtp_ntohl (RtpPacket* p)
  263. {
  264. #if __BYTE_ORDER == __LITTLE_ENDIAN
  265.     unsigned char tdata;
  266.     if (p->getPayloadType() == rtpPayloadL16_mono)
  267.     {
  268.         unsigned char* data = (unsigned char*) p->getPayloadLoc();
  269.         for (int i = 0; i < p->getPayloadUsage(); i = i + 2)
  270.         {
  271.             tdata = data[i];
  272.             data[i] = data[i + 1];
  273.             data[i + 1] = tdata;
  274.         }
  275.     }
  276. #endif
  277. }
  278. char* findSilenceCodec( RtpPayloadType type, int len )
  279. {
  280.     for( int i = 0; i < numRtpCodecInfo; i++ )
  281.     {
  282.         if( rtpCodecInfo[i].payloadType == type  && rtpCodecInfo[i].length == len )
  283.         {
  284.             cpLog( LOG_DEBUG_STACK, "Silence packet template found at index %d",
  285.                    i );
  286.             return (char*)&rtpCodecInfo[i].silence;
  287.         }
  288.     }
  289.     cpLog( LOG_DEBUG_STACK, "Silence unknown for type:%d, len%d", type, len );
  290.     return 0;
  291. }
  292. void createSilenceCodec (char* buffer, RtpPayloadType type, int len)
  293. {
  294.     switch (type)
  295.     {
  296.         case rtpPayloadPCMU:
  297.         memset (buffer, 0xFF, len);
  298.         break;
  299.         case rtpPayloadL16_mono:   // debug
  300.         case rtpPayloadG729:   // debug
  301.         default:
  302.         cpLog (LOG_ERR, "Can't make exact silence for type: &d", (int)type);
  303.         memset (buffer, 0, len);
  304.         break;
  305.     }
  306. }
  307. // sets the exact networkFormat information, esp network_perSampleSize
  308. void setNetworkFormatCodec()
  309. {
  310.     return ;
  311. }