⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 amraudiofilesource.cpp

📁 流媒体传输协议的实现代码,非常有用.可以支持rtsp mms等流媒体传输协议
💻 CPP
字号:
/**********This library is free software; you can redistribute it and/or modify it underthe terms of the GNU Lesser General Public License as published by theFree Software Foundation; either version 2.1 of the License, or (at youroption) any later version. (See <http://www.gnu.org/copyleft/lesser.html>.)This library is distributed in the hope that it will be useful, but WITHOUTANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESSFOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License formore details.You should have received a copy of the GNU Lesser General Public Licensealong 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-2004 Live Networks, Inc.  All rights reserved.// A source object for AMR audio files (as defined in RFC 3267, section 5)// Implementation#include "AMRAudioFileSource.hh"#include "InputFile.hh"#include "GroupsockHelper.hh"////////// AMRAudioFileSource //////////AMRAudioFileSource*AMRAudioFileSource::createNew(UsageEnvironment& env, char const* fileName) {  FILE* fid = NULL;  Boolean magicNumberOK = True;  do {    fid = OpenInputFile(env, fileName);    if (fid == NULL) break;    // Now, having opened the input file, read the first few bytes, to    // check the required 'magic number':    magicNumberOK = False; // until we learn otherwise    Boolean isWideband = False; // by default    unsigned numChannels = 1; // by default    char buf[100];    // Start with the first 6 bytes (the first 5 of which must be "#!AMR"):    if (fread(buf, 1, 6, fid) < 6) break;    if (strncmp(buf, "#!AMR", 5) != 0) break; // bad magic #    unsigned bytesRead = 6;        // The next bytes must be "\n", "-WB\n", "_MC1.0\n", or "-WB_MC1.0\n"    if (buf[5] == '-') {      // The next bytes must be "WB\n" or "WB_MC1.0\n"      if (fread(&buf[bytesRead], 1, 3, fid) < 3) break;      if (strncmp(&buf[bytesRead], "WB", 2) != 0) break; // bad magic #      isWideband = True;      bytesRead += 3;    }    if (buf[bytesRead-1] == '_') {      // The next bytes must be "MC1.0\n"      if (fread(&buf[bytesRead], 1, 6, fid) < 6) break;      if (strncmp(&buf[bytesRead], "MC1.0\n", 6) != 0) break; // bad magic #      bytesRead += 6;      // The next 4 bytes contain the number of channels:      char channelDesc[4];      if (fread(channelDesc, 1, 4, fid) < 4) break;      numChannels = channelDesc[3]&0xF;    } else if (buf[bytesRead-1] != '\n') {      break; // bad magic #    }    // If we get here, the magic number was OK:    magicNumberOK = True;#ifdef DEBUG    fprintf(stderr, "isWideband: %d, numChannels: %d\n",	    isWideband, numChannels);#endif    return new AMRAudioFileSource(env, fid, isWideband, numChannels);  } while (0);  // An error occurred:  CloseInputFile(fid);  if (!magicNumberOK) {    env.setResultMsg("Bad (or nonexistent) AMR file header");  }  return NULL;}AMRAudioFileSource::AMRAudioFileSource(UsageEnvironment& env, FILE* fid,		     Boolean isWideband, unsigned numChannels)  : AMRAudioSource(env, isWideband, numChannels),    fFid(fid) {}AMRAudioFileSource::~AMRAudioFileSource() {  CloseInputFile(fFid);}// The mapping from the "FT" field to frame size.// Values of 65535 are invalid.#define FT_INVALID 65535static unsigned short frameSize[16] = {  12, 13, 15, 17,  19, 20, 26, 31,  5, FT_INVALID, FT_INVALID, FT_INVALID,  FT_INVALID, FT_INVALID, FT_INVALID, 0};static unsigned short frameSizeWideband[16] = {  17, 23, 32, 36,  40, 46, 50, 58,  60, 5, FT_INVALID, FT_INVALID,  FT_INVALID, FT_INVALID, 0, 0};void AMRAudioFileSource::doGetNextFrame() {  if (feof(fFid) || ferror(fFid)) {    handleClosure(this);    return;  }  // Begin by reading the 1-byte frame header (and checking it for validity)  while (1) {    if (fread(&fLastFrameHeader, 1, 1, fFid) < 1) {      handleClosure(this);      return;    }    if ((fLastFrameHeader&0x83) != 0) {#ifdef DEBUG      fprintf(stderr, "Invalid frame header 0x%02x (padding bits (0x83) are not zero)\n", fLastFrameHeader);#endif    } else {      unsigned char ft = (fLastFrameHeader&0x78)>>3;      fFrameSize = fIsWideband ? frameSizeWideband[ft] : frameSize[ft];      if (fFrameSize == FT_INVALID) {#ifdef DEBUG	fprintf(stderr, "Invalid FT field %d (from frame header 0x%02x)\n",		ft, fLastFrameHeader);#endif      } else {	// The frame header is OK#ifdef DEBUG	fprintf(stderr, "Valid frame header 0x%02x -> ft %d -> frame size %d\n", fLastFrameHeader, ft, fFrameSize);#endif	break;      }    }  }         // Next, read the frame-block into the buffer provided:  fFrameSize *= fNumChannels; // because multiple channels make up a frame-block  if (fFrameSize > fMaxSize) {    fNumTruncatedBytes = fFrameSize - fMaxSize;    fFrameSize = fMaxSize;  }  fFrameSize = fread(fTo, 1, fFrameSize, fFid);  // Set the 'presentation time':  if (fPresentationTime.tv_sec == 0 && fPresentationTime.tv_usec == 0) {    // This is the first frame, so use the current time:    gettimeofday(&fPresentationTime, NULL);  } else {    // Increment by the play time of the previous frame (20 ms)    unsigned uSeconds	= fPresentationTime.tv_usec + 20000;    fPresentationTime.tv_sec += uSeconds/1000000;    fPresentationTime.tv_usec = uSeconds%1000000;  }  fDurationInMicroseconds = 20000; // each frame is 20 ms  // Switch to another task, and inform the reader that he has data:  nextTask() = envir().taskScheduler().scheduleDelayedTask(0,				(TaskFunc*)FramedSource::afterGetting, this); }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -