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

流媒体/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. #include "Rtp.hxx"
  51. #include "RtpEventReceiver.hxx"
  52. #include "RtpPacket.hxx"
  53. RtpEventReceiver::RtpEventReceiver()
  54. {
  55.     _DTMFInterface = 0;
  56.     _keyEvent = KeyEventNULL;
  57.     _DTMFEvent = DTMFEventNULL;
  58.     return;
  59. }
  60. RtpEventReceiver::~RtpEventReceiver()
  61. {
  62.     return;
  63. }
  64. void RtpEventReceiver::recvEvent( RtpPacket* p )
  65. {
  66.     if( _DTMFInterface == 0 )
  67.         return;
  68.     switch( p->getPayloadType() )
  69.     {
  70.         case( rtpPayloadDTMF_RFC2833 ):
  71.             recvEventRFC2833( p );
  72.             break;
  73.         case( rtpPayloadCiscoRtp ):
  74.             recvEventCiscoRTP( p );
  75.             break;
  76.         default:
  77.             cpLog(LOG_ERR, "Unknown rtp payload event");
  78.             return;
  79.     }
  80.     return;
  81. }
  82. void RtpEventReceiver::recvEventRFC2833( RtpPacket* p )
  83. {
  84.     assert(p->getPayloadType() == rtpPayloadDTMF_RFC2833);
  85.     assert(p->getPayloadUsage() != 0);
  86.     assert(p->getHeader() != 0);
  87.     RtpEventDTMFRFC2833* e = reinterpret_cast<RtpEventDTMFRFC2833*> (p->getPayloadLoc());
  88.     assert(e != NULL);
  89.     if( e->edge == 1)
  90.     {
  91.         if( _keyEvent == KeyEventOn )
  92.         {
  93.             // off detection
  94.             cpLog(LOG_DEBUG_STACK, "DTMF off detected: %d", _DTMFEvent);
  95.             sendToDTMFInterface ( _DTMFEvent, e->duration );
  96.             _keyEvent = KeyEventNULL;
  97.         }
  98.     }
  99.     else // (e->edge == 0)
  100.     {
  101. if (_keyEvent == KeyEventNULL)
  102.     {
  103.         // on detection
  104.         _keyEvent = KeyEventOn;
  105.         _DTMFEvent = DTMFToEvent( e->event );
  106.         cpLog(LOG_DEBUG_STACK, "DTMF on detected: %d", _DTMFEvent);
  107.     }
  108.     return;
  109. }
  110. }
  111. void RtpEventReceiver::recvEventCiscoRTP( RtpPacket* p )
  112. {
  113.     assert(p->getPayloadType() == rtpPayloadCiscoRtp);
  114.     RtpEventDTMFCiscoRtp* e = reinterpret_cast<RtpEventDTMFCiscoRtp*>
  115.                               (p->getPayloadLoc());
  116.     if( _keyEvent != KeyEventOn && e->digitType == 1 )
  117.     {
  118.         // on detection
  119.         _keyEvent = KeyEventOn;
  120.         _DTMFEvent = DTMFToEvent(e->digitCode);
  121.         cpLog(LOG_DEBUG_STACK, "DTMF on detected: %d", _DTMFEvent);
  122.     }
  123.     else if( _keyEvent == KeyEventOn && e->digitType == 0 && e->edge == 0 )
  124.     {
  125.         // off detection
  126.         cpLog(LOG_DEBUG_STACK, "DTMF off detected: %d", _DTMFEvent);
  127.         sendToDTMFInterface( _DTMFEvent, 20 );
  128.         _keyEvent = KeyEventNULL;
  129.     }
  130.     return;
  131. }
  132. void RtpEventReceiver::sendToDTMFInterface( const DTMFEvent e, 
  133.     unsigned int duration )
  134. {
  135.     if( _DTMFInterface != 0 )
  136.     {
  137.         cpLog(LOG_DEBUG_STACK, "Sending event %d to DTMFInterface", e);
  138.         _DTMFInterface->sendDTMF( e, duration );
  139.     }
  140.     return ;
  141. }
  142. DTMFEvent RtpEventReceiver::DTMFToEvent( int event )
  143. {
  144.     DTMFEvent result;
  145.     switch( event )
  146.     {
  147.         case 0:
  148.         result = DTMFEventDigit0;
  149.         break;
  150.         case 1:
  151.         result = DTMFEventDigit1;
  152.         break;
  153.         case 2:
  154.         result = DTMFEventDigit2;
  155.         break;
  156.         case 3:
  157.         result = DTMFEventDigit3;
  158.         break;
  159.         case 4:
  160.         result = DTMFEventDigit4;
  161.         break;
  162.         case 5:
  163.         result = DTMFEventDigit5;
  164.         break;
  165.         case 6:
  166.         result = DTMFEventDigit6;
  167.         break;
  168.         case 7:
  169.         result = DTMFEventDigit7;
  170.         break;
  171.         case 8:
  172.         result = DTMFEventDigit8;
  173.         break;
  174.         case 9:
  175.         result = DTMFEventDigit9;
  176.         break;
  177.         case 10:
  178.         result = DTMFEventDigitStar;
  179.         break;
  180.         case 11:
  181.         result = DTMFEventDigitHash;
  182.         break;
  183.         default:
  184.         cpLog(LOG_ERR, "Unknown DTMF event during conversion");
  185.         result = DTMFEventNULL;
  186.     }
  187.     return result;
  188. }