liveMedia/AMRAudioFileServerMediaSubsession.cpp

Go to the documentation of this file.
00001 /**********
00002 This library is free software; you can redistribute it and/or modify it under
00003 the terms of the GNU Lesser General Public License as published by the
00004 Free Software Foundation; either version 2.1 of the License, or (at your
00005 option) any later version. (See <http://www.gnu.org/copyleft/lesser.html>.)
00006 
00007 This library is distributed in the hope that it will be useful, but WITHOUT
00008 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
00009 FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for
00010 more details.
00011 
00012 You should have received a copy of the GNU Lesser General Public License
00013 along with this library; if not, write to the Free Software Foundation, Inc.,
00014 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
00015 **********/
00016 // "liveMedia"
00017 // Copyright (c) 1996-2008 Live Networks, Inc.  All rights reserved.
00018 // A 'ServerMediaSubsession' object that creates new, unicast, "RTPSink"s
00019 // on demand, from an AMR audio file.
00020 // Implementation
00021 
00022 #include "AMRAudioFileServerMediaSubsession.hh"
00023 #include "AMRAudioRTPSink.hh"
00024 #include "AMRAudioFileSource.hh"
00025 
00026 AMRAudioFileServerMediaSubsession*
00027 AMRAudioFileServerMediaSubsession::createNew(UsageEnvironment& env,
00028                                              char const* fileName,
00029                                              Boolean reuseFirstSource) {
00030   return new AMRAudioFileServerMediaSubsession(env, fileName, reuseFirstSource);
00031 }
00032 
00033 AMRAudioFileServerMediaSubsession
00034 ::AMRAudioFileServerMediaSubsession(UsageEnvironment& env,
00035                                     char const* fileName, Boolean reuseFirstSource)
00036   : FileServerMediaSubsession(env, fileName, reuseFirstSource) {
00037 }
00038 
00039 AMRAudioFileServerMediaSubsession
00040 ::~AMRAudioFileServerMediaSubsession() {
00041 }
00042 
00043 FramedSource* AMRAudioFileServerMediaSubsession
00044 ::createNewStreamSource(unsigned /*clientSessionId*/, unsigned& estBitrate) {
00045   estBitrate = 10; // kbps, estimate
00046 
00047   return AMRAudioFileSource::createNew(envir(), fFileName);
00048 }
00049 
00050 RTPSink* AMRAudioFileServerMediaSubsession
00051 ::createNewRTPSink(Groupsock* rtpGroupsock,
00052                    unsigned char rtpPayloadTypeIfDynamic,
00053                    FramedSource* inputSource) {
00054   AMRAudioFileSource* amrSource = (AMRAudioFileSource*)inputSource;
00055   return AMRAudioRTPSink::createNew(envir(), rtpGroupsock,
00056                                     rtpPayloadTypeIfDynamic,
00057                                     amrSource->isWideband(),
00058                                     amrSource->numChannels());
00059 }

Generated on Tue Oct 7 15:38:08 2008 for live by  doxygen 1.5.2