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 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00015 **********/ 00016 // "liveMedia" 00017 // Copyright (c) 1996-2005 Live Networks, Inc. All rights reserved. 00018 // A 'ServerMediaSubsession' object that creates new, unicast, "RTPSink"s 00019 // on demand, from a file. 00020 // Implementation 00021 00022 #include "FileServerMediaSubsession.hh" 00023 00024 FileServerMediaSubsession 00025 ::FileServerMediaSubsession(UsageEnvironment& env, char const* fileName, 00026 Boolean reuseFirstSource) 00027 : OnDemandServerMediaSubsession(env, reuseFirstSource), 00028 fFileSize(0) { 00029 fFileName = strDup(fileName); 00030 } 00031 00032 FileServerMediaSubsession::~FileServerMediaSubsession() { 00033 delete[] (char*)fFileName; 00034 }
1.6.3