liveMedia/AACAudioMatroskaFileServerMediaSubsession.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-2012 Live Networks, Inc.  All rights reserved.
00018 // A 'ServerMediaSubsession' object that creates new, unicast, "RTPSink"s
00019 // on demand, from an AAC audio track within a Matroska file.
00020 // Implementation
00021 
00022 #include "AACAudioMatroskaFileServerMediaSubsession.hh"
00023 #include "MPEG4GenericRTPSink.hh"
00024 #include "MatroskaDemuxedTrack.hh"
00025 
00026 AACAudioMatroskaFileServerMediaSubsession* AACAudioMatroskaFileServerMediaSubsession
00027 ::createNew(MatroskaFileServerDemux& demux, unsigned trackNumber) {
00028   return new AACAudioMatroskaFileServerMediaSubsession(demux, trackNumber);
00029 }
00030 
00031 AACAudioMatroskaFileServerMediaSubsession
00032 ::AACAudioMatroskaFileServerMediaSubsession(MatroskaFileServerDemux& demux, unsigned trackNumber)
00033   : FileServerMediaSubsession(demux.envir(), demux.fileName(), False),
00034     fOurDemux(demux), fTrackNumber(trackNumber) {
00035   // The Matroska file's 'Codec Private' data is assumed to be the AAC configuration information.
00036   // Use this to generate a 'config string':
00037   MatroskaTrack* track = fOurDemux.lookup(fTrackNumber);
00038   fConfigStr = new char[2*track->codecPrivateSize + 1]; // 2 hex digits per byte, plus the trailing '\0'
00039   for (unsigned i = 0; i < track->codecPrivateSize; ++i) sprintf(&fConfigStr[2*i], "%02X", track->codecPrivate[i]);
00040 }
00041 
00042 AACAudioMatroskaFileServerMediaSubsession
00043 ::~AACAudioMatroskaFileServerMediaSubsession() {
00044   delete[] fConfigStr;
00045 }
00046 
00047 float AACAudioMatroskaFileServerMediaSubsession::duration() const { return fOurDemux.fileDuration(); }
00048 
00049 void AACAudioMatroskaFileServerMediaSubsession
00050 ::seekStreamSource(FramedSource* inputSource, double& seekNPT, double /*streamDuration*/, u_int64_t& /*numBytes*/) {
00051   ((MatroskaDemuxedTrack*)inputSource)->seekToTime(seekNPT);
00052 }
00053 
00054 FramedSource* AACAudioMatroskaFileServerMediaSubsession
00055 ::createNewStreamSource(unsigned clientSessionId, unsigned& estBitrate) {
00056   estBitrate = 96; // kbps, estimate
00057 
00058   return fOurDemux.newDemuxedTrack(clientSessionId, fTrackNumber);
00059 }
00060 
00061 RTPSink* AACAudioMatroskaFileServerMediaSubsession
00062 ::createNewRTPSink(Groupsock* rtpGroupsock, unsigned char rtpPayloadTypeIfDynamic, FramedSource* /*inputSource*/) {
00063   MatroskaTrack* track = fOurDemux.lookup(fTrackNumber);
00064   return MPEG4GenericRTPSink::createNew(envir(), rtpGroupsock,
00065                                         rtpPayloadTypeIfDynamic,
00066                                         track->samplingFrequency,
00067                                         "audio", "AAC-hbr", fConfigStr,
00068                                         track->numChannels);
00069 }

Generated on Thu May 10 20:25:11 2012 for live by  doxygen 1.5.2