liveMedia/VP8VideoMatroskaFileServerMediaSubsession.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-2013 Live Networks, Inc.  All rights reserved.
00018 // A 'ServerMediaSubsession' object that creates new, unicast, "RTPSink"s
00019 // on demand, from a VP8 Video track within a Matroska file.
00020 // Implementation
00021 
00022 #include "VP8VideoMatroskaFileServerMediaSubsession.hh"
00023 #include "VP8VideoRTPSink.hh"
00024 #include "MatroskaDemuxedTrack.hh"
00025 
00026 VP8VideoMatroskaFileServerMediaSubsession* VP8VideoMatroskaFileServerMediaSubsession
00027 ::createNew(MatroskaFileServerDemux& demux, unsigned trackNumber) {
00028   return new VP8VideoMatroskaFileServerMediaSubsession(demux, trackNumber);
00029 }
00030 
00031 VP8VideoMatroskaFileServerMediaSubsession
00032 ::VP8VideoMatroskaFileServerMediaSubsession(MatroskaFileServerDemux& demux, unsigned trackNumber)
00033   : FileServerMediaSubsession(demux.envir(), demux.fileName(), False),
00034     fOurDemux(demux), fTrackNumber(trackNumber) {
00035 }
00036 
00037 VP8VideoMatroskaFileServerMediaSubsession
00038 ::~VP8VideoMatroskaFileServerMediaSubsession() {
00039 }
00040 
00041 float VP8VideoMatroskaFileServerMediaSubsession::duration() const { return fOurDemux.fileDuration(); }
00042 
00043 void VP8VideoMatroskaFileServerMediaSubsession
00044 ::seekStreamSource(FramedSource* inputSource, double& seekNPT, double /*streamDuration*/, u_int64_t& /*numBytes*/) {
00045   ((MatroskaDemuxedTrack*)inputSource)->seekToTime(seekNPT);
00046 }
00047 
00048 FramedSource* VP8VideoMatroskaFileServerMediaSubsession
00049 ::createNewStreamSource(unsigned clientSessionId, unsigned& estBitrate) {
00050   estBitrate = 500; // kbps, estimate
00051 
00052   return fOurDemux.newDemuxedTrack(clientSessionId, fTrackNumber);
00053 }
00054 
00055 RTPSink* VP8VideoMatroskaFileServerMediaSubsession
00056 ::createNewRTPSink(Groupsock* rtpGroupsock, unsigned char rtpPayloadTypeIfDynamic, FramedSource* /*inputSource*/) {
00057   return VP8VideoRTPSink::createNew(envir(), rtpGroupsock, rtpPayloadTypeIfDynamic);
00058 }

Generated on Mon Apr 29 13:28:03 2013 for live by  doxygen 1.5.2