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

流媒体/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 281421,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 RtspFileRtp_cxx_version =
  51.     "$Id: RtspFileRtp.cxx,v 1.15 2001/05/15 20:26:08 bko Exp $";
  52. #include "RtspFileRtp.hxx"
  53. #include "RtpFileTypes.hxx"
  54. #include "RtspConfiguration.hxx"
  55. #include <fcntl.h>
  56. #include <unistd.h>
  57. #include <sys/stat.h>
  58. RtspFileRtp::RtspFileRtp( const string& shortFilename )
  59.     : RtspFile( shortFilename ),
  60.       m_xAudioFile( 0 )
  61. {
  62.     myFileMode = RTSP_FILE_MODE_UNKNOWN;
  63.     // read codec from filename - has default value if none found
  64.     string name = shortFilename;
  65.     string::size_type pos = name.find_last_of( '-' );
  66.     if( pos != string::npos )
  67.     {
  68.         // some type of codec string was found
  69.         bool success = false;
  70.         string codecString2 = name.substr( pos+1, string::npos );
  71.         cpLog( LOG_DEBUG, "Codec string %s", codecString2.c_str());
  72.         for( int i = 0; i< myNumberOfCodecs; i++ )
  73.         {
  74.             if( rtpFileTypeInfo[i].name == codecString2 )
  75.             {
  76.                 myFtIndex = i;
  77.                 name = name.substr( 0, pos );
  78.                 success = true;
  79.                 break;
  80.             }
  81.         }
  82.         if( !success )
  83.         {
  84.             // non codec string was found
  85.             cpLog( LOG_DEBUG, "Non-codec string found, using default value" );
  86.             myFtIndex = RtspConfiguration::instance().defaultCodec;
  87.         }
  88.     }
  89.     else
  90.     {
  91.         // no codec string was found
  92.         cpLog( LOG_DEBUG, "No codec string found, using default value" );
  93.         myFtIndex = RtspConfiguration::instance().defaultCodec;
  94.     }
  95.     // save stripped name
  96.     myShortFilename = name;
  97. }
  98. RtspFileRtp::~RtspFileRtp()
  99. {
  100.     close();
  101. }
  102. bool
  103. RtspFileRtp::saveHeader( const int ftIndex, RtspSdp& rtspSdp )
  104. {
  105.     //TODO
  106.     if( myFtIndex != ftIndex )
  107.     {
  108.         cpLog( LOG_ERR, "%d %d", myFtIndex, ftIndex );
  109.     }
  110. // RtspFileHandler will call this exact code if SDP_FILE defined
  111. #ifndef SDP_FILE
  112.     if( !writeSdpFile( rtspSdp ) )
  113.     {
  114.         cpLog( LOG_ERR, "Error in writeSdpFile()" );
  115.         return false;
  116.     }
  117. #ifndef REAL_AUDIO
  118.     Data controlData = "a=control:rtsp://";
  119.     //TODO need to get this data into this class
  120.     //controlData += filenameUrl();
  121.     controlData += "rn";
  122.     deleteLineSdpFile( "a=control:" );
  123.     appendSdpFile( controlData.getData(), controlData.length() );
  124. #endif
  125. #endif
  126.     FILE* xAudioFile = fopen( localFilename().getData(), "wb" );
  127.     if( !xAudioFile )
  128.     {
  129.         cpLog( LOG_DEBUG, "fopen %s - failed while saving header",
  130.                localFilename().getData() );
  131.         return false;
  132.     }
  133.     dummyWrite( xAudioFile, rtpFileTypeInfo[ftIndex].packetSize);
  134.     // close audio file
  135.     fclose( xAudioFile );
  136.     return true;
  137. }
  138. bool
  139. RtspFileRtp::loadHeader( int* ftIndex, int* lengthInMs )
  140. {
  141.     *ftIndex = myFtIndex;
  142.     *lengthInMs = 0;
  143.     // read packet size from first rtp packet
  144.     int dummyBufLen = 2000;
  145.     char dummyBuf[dummyBufLen];
  146.     unsigned short seqNum;
  147.     unsigned int ts;
  148.     m_xAudioFile = fopen( localFilename().getData(),"rb" );
  149.     if( !m_xAudioFile )
  150.     {
  151.         cpLog( LOG_ERR, "fopen %s - failed ",
  152.                localFilename().getData());
  153.         return false;
  154.     }
  155.     int cc = read( dummyBuf, dummyBufLen, &seqNum, &ts );
  156.     fclose( m_xAudioFile );
  157.     m_xAudioFile = 0;
  158.     if( cc < 0 )
  159.     {
  160.         cpLog( LOG_ERR, "error reading first rtp packet from file" );
  161.         return false;
  162.     }
  163.     // read total file length
  164.     struct stat ifstat;
  165.     if( stat( localFilename().getData(), &ifstat ) )
  166.     {
  167.         cpLog( LOG_ERR, "Error in stat()" );
  168.         return false;
  169.     }
  170.     // calculate file length
  171.     *lengthInMs = int( (float)ifstat.st_size /
  172.                        ( cc +
  173.                          4 + /*length*/
  174.                          2 + /*sequence number*/
  175.                          4 /*time stamp*/ )
  176.                      );
  177.     *lengthInMs = *lengthInMs * rtpFileTypeInfo[*ftIndex].intervalMs;
  178.     cpLog( LOG_DEBUG, "File lengths is %d ms", *lengthInMs );
  179.     return true;
  180. }
  181. bool
  182. RtspFileRtp::open( bool bReadWrite, int ftIndex )
  183. {
  184.     if( !bReadWrite ) //read mode
  185.     {
  186.         m_xAudioFile = fopen( localFilename().getData(), "rb" );
  187.         if( !m_xAudioFile )
  188.         {
  189.             cpLog( LOG_ERR, "fopen %s - failed",
  190.                    localFilename().getData() );
  191.             return false;
  192.         }
  193.         myFileMode = RTSP_FILE_MODE_PLAY;
  194.     }
  195.     else //write mode
  196.     {
  197.         m_xAudioFile = fopen( localFilename().getData(), "wb" );
  198.         if( !m_xAudioFile )
  199.         {
  200.             cpLog( LOG_ERR, "fopen %s - failed",
  201.                    filename().getData() );
  202.             return false;
  203.         }
  204.         myFileMode = RTSP_FILE_MODE_REC;
  205.     }
  206.     return true;
  207. }
  208. bool
  209. RtspFileRtp::close()
  210. {
  211.     if( m_xAudioFile )
  212.     {
  213.         if( fclose( m_xAudioFile ) != 0 )
  214.         {
  215.             cpLog( LOG_ERR, "Error in fclose()" );
  216.         }
  217.         m_xAudioFile = 0;
  218.         updateSdpFileRange();
  219.         return true;
  220.     }
  221.     return false;
  222. }
  223. int
  224. RtspFileRtp::read( void* data, int max, 
  225.                    unsigned short* pSeqNum, unsigned int* pTS )
  226. {
  227.     const unsigned int MaxRtpPacketSize=2000;
  228.     unsigned short tempSeqNum;
  229.     unsigned int tempTS;
  230.     //if(pSeqNum==0 || pTS==0) return -1;
  231.     if(pSeqNum==0) pSeqNum=&tempSeqNum;
  232.     if(pTS==0) pTS=&tempTS;
  233.     unsigned int uRtpBlockSize;
  234.     int cc = fread((void*)&uRtpBlockSize, 4, 1, m_xAudioFile);
  235.     if(cc<=0)
  236.     {
  237.         cpLog(LOG_DEBUG, "Can't read Rtp file" );
  238.         return -1;
  239.     }
  240.     uRtpBlockSize=ntohl(uRtpBlockSize);
  241.     if(uRtpBlockSize>MaxRtpPacketSize)
  242.     {
  243.         cpLog(LOG_DEBUG, "Can't read Rtp file - incorrect size of Rtp packet (%d)n", uRtpBlockSize);
  244.         return -1;
  245.     }
  246.     if(uRtpBlockSize>(unsigned(max+2+4))) // 2 bytes for SeqNum and 4 bytes for TS
  247.     {
  248.         cpLog(LOG_DEBUG, "Read buffer(%d) not large enough for this RTP packet(%d)n",max, uRtpBlockSize);
  249.         return -1;
  250.     }
  251.     cc = fread((void*)pSeqNum, 2, 1, m_xAudioFile);
  252.     if(cc<=0)
  253.     {
  254.         cpLog(LOG_DEBUG, "Can't read Rtp file (SeqNum)" );
  255.         return -1;
  256.     }
  257.     *pSeqNum=ntohs(*pSeqNum);
  258.     cc = fread((void*)pTS, 4, 1, m_xAudioFile);
  259.     if(cc<=0)
  260.     {
  261.         cpLog(LOG_DEBUG, "Can't read Rtp file (TS)" );
  262.         return -1;
  263.     }
  264.     *pTS=ntohl(*pTS);
  265.     cc = fread( data, uRtpBlockSize-2-4, 1, m_xAudioFile);
  266.     if(cc>0) cc=uRtpBlockSize-2-4;
  267.     return cc;
  268. /*
  269.     if( pSeqNum==0 || pTS==0 ) return -1;
  270.     int uRtpBlockSize;
  271.     int cc = fread((void*)&uRtpBlockSize, 4, 1, m_xAudioFile);
  272.     uRtpBlockSize=ntohl(uRtpBlockSize);
  273.     if(cc<=0) return -1;
  274.     if(uRtpBlockSize>max+2+4) // 2 bytes for SeqNum and 4 bytes for TS
  275.     {
  276.         cpLog(LOG_DEBUG, "Read buffer(%d) not large enough for this RTP packet(%d)",max, uRtpBlockSize);
  277.         return -1;
  278.     }
  279.     cc = fread((void*)&pSeqNum, 2, 1, m_xAudioFile);
  280.     if(cc<=0) return -1;
  281.     cc = fread((void*)&pTS, 4, 1, m_xAudioFile);
  282.     if(cc<=0) return -1;
  283.     cc = fread( data, uRtpBlockSize-2-4, 1, m_xAudioFile);
  284.     if(cc>0) cc=max;
  285.     return cc;
  286. */
  287. }
  288. int
  289. RtspFileRtp::write( void* data, int max, 
  290.                         unsigned short uSeqNum, unsigned int uTS )
  291. {
  292.     unsigned int uRtpBlockLen=max+2+4; //2 bytes for SeqNum + 4 bytes for TS
  293.     uRtpBlockLen=htonl(uRtpBlockLen);
  294.     //uSeqNum=htons(uSeqNum);
  295.     //uTS=htonl(uTS);
  296.     int result = fwrite( (void*)&uRtpBlockLen, 4, 1, m_xAudioFile);
  297.     if(result>0) result = fwrite( (void*)&uSeqNum, 2, 1, m_xAudioFile);
  298.     else       return -1; // TODO add debug info
  299.     if(result>0) result = fwrite( (void*)&uTS, 4, 1, m_xAudioFile);
  300.     else       return -1; // TODO add debug info
  301.     result = fwrite( data, max, 1, m_xAudioFile);
  302.     result = result>0?(int)max:-1;
  303.     return result;   
  304. }
  305. long
  306. RtspFileRtp::seek( long samples, int whence )
  307. {
  308.     long packets = (long)( (float) samples /
  309.                            (float) rtpFileTypeInfo[myFtIndex].intervalMs );
  310.     long seek_size = packets * ( rtpFileTypeInfo[myFtIndex].packetSize +
  311.                                  4 + /*size*/
  312.                                  2 + /*SeqNum*/
  313.                                  4   /*TS*/ );
  314.     return fseek( m_xAudioFile, seek_size, whence );
  315. }
  316. void
  317. RtspFileRtp::dummyWrite( FILE* xAudioFile, const int dummyLen )
  318. {
  319.     unsigned int uRtpBlockLen = dummyLen + 2 + 4; //2 bytes for SeqNum + 4 bytes for TS
  320.     uRtpBlockLen = htonl( uRtpBlockLen );
  321.     // write some dummy data
  322.     cpLog( LOG_DEBUG, "Writing %d bytes of dummy data", dummyLen );
  323.     char dummyBuffer[dummyLen];
  324.     memset( dummyBuffer, 0, dummyLen );
  325.     if( fwrite( (void*)&uRtpBlockLen, 4, 1, xAudioFile ) <=0 )
  326.     {
  327.         cpLog( LOG_DEBUG, "fwrite error ");
  328.     }
  329.     if( fwrite( dummyBuffer, 2+4, 1, xAudioFile ) <=0 )
  330.     {
  331.         cpLog( LOG_DEBUG, "fwrite error ");
  332.     }
  333.     if( fwrite( dummyBuffer, dummyLen, 1, xAudioFile ) <=0 )
  334.     {
  335.         cpLog( LOG_DEBUG, "fwrite error ");
  336.     }
  337. }
  338. /* Local Variables: */
  339. /* c-file-style: "stroustrup" */
  340. /* indent-tabs-mode: nil */
  341. /* c-file-offsets: ((access-label . -) (inclass . ++)) */
  342. /* c-basic-offset: 4 */
  343. /* End: */