1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
/**********
This library is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version. (See <http://www.gnu.org/copyleft/lesser.html>.)
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
**********/
// "liveMedia"
// Copyright (c) 1996-2005 Live Networks, Inc. All rights reserved.
// A 'ServerMediaSubsession' object that creates new, unicast, "RTPSink"s
// on demand, from a MP3 audio file.
// (Actually, any MPEG-1 or MPEG-2 audio file should work.)
// Implementation
#include "MP3AudioFileServerMediaSubsession.hh"
#include "MPEG1or2AudioRTPSink.hh"
#include "MP3ADURTPSink.hh"
#include "MP3FileSource.hh"
#include "MP3ADU.hh"
MP3AudioFileServerMediaSubsession* MP3AudioFileServerMediaSubsession
::createNew(UsageEnvironment& env, char const* fileName, Boolean reuseFirstSource,
Boolean generateADUs, Interleaving* interleaving) {
return new MP3AudioFileServerMediaSubsession(env, fileName, reuseFirstSource,
generateADUs, interleaving);
}
MP3AudioFileServerMediaSubsession
::MP3AudioFileServerMediaSubsession(UsageEnvironment& env,
char const* fileName, Boolean reuseFirstSource,
Boolean generateADUs,
Interleaving* interleaving)
: FileServerMediaSubsession(env, fileName, reuseFirstSource),
fGenerateADUs(generateADUs), fInterleaving(interleaving), fFileDuration(0.0) {
}
MP3AudioFileServerMediaSubsession
::~MP3AudioFileServerMediaSubsession() {
delete fInterleaving;
}
void MP3AudioFileServerMediaSubsession
::seekStreamSource(FramedSource* inputSource, float seekNPT) {
MP3FileSource* mp3Source;
if (fGenerateADUs) {
// "inputSource" is a filter; use its input source instead.
ADUFromMP3Source* filter;
if (fInterleaving != NULL) {
// There's another filter as well.
filter = (ADUFromMP3Source*)(((FramedFilter*)inputSource)->inputSource());
} else {
filter = (ADUFromMP3Source*)inputSource;
}
filter->resetInput(); // because we're about to seek within its source
mp3Source = (MP3FileSource*)(filter->inputSource());
} else if (fFileDuration > 0.0) {
// There are a pair of filters - MP3->ADU and ADU->MP3 - in front of the
// original MP3 source:
MP3FromADUSource* filter2 = (MP3FromADUSource*)inputSource;
ADUFromMP3Source* filter1 = (ADUFromMP3Source*)(filter2->inputSource());
filter1->resetInput(); // because we're about to seek within its source
mp3Source = (MP3FileSource*)(filter1->inputSource());
} else {
// "inputSource" is the original MP3 source:
mp3Source = (MP3FileSource*)inputSource;
}
mp3Source->seekWithinFile(seekNPT);
}
void MP3AudioFileServerMediaSubsession
::setStreamSourceScale(FramedSource* inputSource, float scale) {
int iScale = (int)scale;
MP3FileSource* mp3Source;
ADUFromMP3Source* aduSource = NULL;
if (fGenerateADUs) {
if (fInterleaving != NULL) {
// There's an interleaving filter in front.
aduSource = (ADUFromMP3Source*)(((FramedFilter*)inputSource)->inputSource());
} else {
aduSource = (ADUFromMP3Source*)inputSource;
}
mp3Source = (MP3FileSource*)(aduSource->inputSource());
} else if (fFileDuration > 0.0) {
// There are a pair of filters - MP3->ADU and ADU->MP3 - in front of the
// original MP3 source. So, go back one, to reach the ADU source:
aduSource = (ADUFromMP3Source*)(((FramedFilter*)inputSource)->inputSource());
// Then, go back one more, to reach the MP3 source:
mp3Source = (MP3FileSource*)(aduSource->inputSource());
} else return; // the stream is not scalable
aduSource->setScaleFactor(iScale);
mp3Source->setPresentationTimeScale(iScale);
}
FramedSource* MP3AudioFileServerMediaSubsession
::createNewStreamSource(unsigned /*clientSessionId*/, unsigned& estBitrate) {
estBitrate = 128; // kbps, estimate
FramedSource* streamSource;
do {
MP3FileSource* mp3Source;
streamSource = mp3Source = MP3FileSource::createNew(envir(), fFileName);
if (streamSource == NULL) break;
fFileDuration = mp3Source->filePlayTime();
if (fGenerateADUs) {
// Add a filter that converts the source MP3s to ADUs:
streamSource = ADUFromMP3Source::createNew(envir(), streamSource);
if (streamSource == NULL) break;
if (fInterleaving != NULL) {
// Add another filter that interleaves the ADUs before packetizing:
streamSource = MP3ADUinterleaver::createNew(envir(), *fInterleaving,
streamSource);
if (streamSource == NULL) break;
}
} else if (fFileDuration > 0.0) {
// Because this is a seekable file, insert a pair of filters: one that
// converts the input MP3 stream to ADUs; another that converts these
// ADUs back to MP3. This allows us to seek within the input stream without
// tripping over the MP3 'bit reservoir':
streamSource = ADUFromMP3Source::createNew(envir(), streamSource);
if (streamSource == NULL) break;
streamSource = MP3FromADUSource::createNew(envir(), streamSource);
if (streamSource == NULL) break;
}
} while (0);
return streamSource;
}
RTPSink* MP3AudioFileServerMediaSubsession
::createNewRTPSink(Groupsock* rtpGroupsock,
unsigned char rtpPayloadTypeIfDynamic,
FramedSource* /*inputSource*/) {
if (fGenerateADUs) {
return MP3ADURTPSink::createNew(envir(), rtpGroupsock,
rtpPayloadTypeIfDynamic);
} else {
return MPEG1or2AudioRTPSink::createNew(envir(), rtpGroupsock);
}
}
void MP3AudioFileServerMediaSubsession::testScaleFactor(float& scale) {
if (fFileDuration <= 0.0) {
// The file is non-seekable, so is probably a live input source.
// We don't support scale factors other than 1
scale = 1;
} else {
// We support any integral scale >= 1
int iScale = (int)(scale + 0.5); // round
if (iScale < 1) iScale = 1;
scale = (float)iScale;
}
}
float MP3AudioFileServerMediaSubsession::duration() const {
return fFileDuration;
}
|