wavpack.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:7k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*****************************************************************************
  2.  *
  3.  * This program is free software ; you can redistribute it and/or modify
  4.  * it under the terms of the GNU General Public License as published by
  5.  * the Free Software Foundation; either version 2 of the License, or
  6.  * (at your option) any later version.
  7.  *
  8.  * This program is distributed in the hope that it will be useful,
  9.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11.  * GNU General Public License for more details.
  12.  *
  13.  * You should have received a copy of the GNU General Public License
  14.  * along with this program; if not, write to the Free Software
  15.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  16.  *
  17.  * $Id: mpc.c 543 2006-01-07 22:06:24Z picard $
  18.  *
  19.  * The Core Pocket Media Player
  20.  * Copyright (c) 2006 Jory 'jcsston' Stone
  21.  *
  22.  ****************************************************************************/
  23.  
  24. #include "../common/common.h"
  25. #include "wavpack.h"
  26. #include "decoder/wavpack.h"
  27. #define WAVPACK_BLOCK_LEN 512
  28. typedef struct wavpack 
  29. {
  30. format_base Format;
  31. WavpackContext *Decoder;
  32. long* Buffer;
  33. int BufferLen;
  34. int BufferFilled;
  35. int Bps;
  36. int Channels;
  37. int SampleRate;
  38. int SampleSize;
  39. int64_t Samples;
  40. int64_t FileLen;
  41.   char Error[80];
  42. } wavpack;
  43. // wavpack callbacks
  44. static long read_bytes(void *buff, long bcount, void *privdata)
  45. {
  46. format_reader* Reader = ((wavpack *)privdata)->Format.Reader;
  47. return Reader->Read(Reader,buff,bcount);
  48. }
  49. // Reformat samples from longs in processor's native endian mode to
  50. // little-endian data with (possibly) less than 4 bytes / sample.
  51. static uchar *format_samples(int bps, uchar *dst, long *src, ulong samcnt)
  52. {
  53. long temp;
  54. switch (bps) 
  55. {
  56. case 1:
  57. while (samcnt--)
  58. *dst++ = (uchar)(*src++ + 128);
  59. break;
  60. case 2:
  61. while (samcnt--) 
  62. {
  63. *dst++ = (uchar)(temp = *src++);
  64. *dst++ = (uchar)(temp >> 8);
  65. }
  66. break;
  67. case 3:
  68. while (samcnt--) 
  69. {
  70. *dst++ = (uchar)(temp = *src++);
  71. *dst++ = (uchar)(temp >> 8);
  72. *dst++ = (uchar)(temp >> 16);
  73. }
  74. break;
  75. case 4:
  76. while (samcnt--) 
  77. {
  78. *dst++ = (uchar)(temp = *src++);
  79. *dst++ = (uchar)(temp >> 8);
  80. *dst++ = (uchar)(temp >> 16);
  81. *dst++ = (uchar)(temp >> 24);
  82. }
  83. break;
  84. }
  85. return dst;
  86. }
  87. static void Done(wavpack* p)
  88. {
  89. free(p->Buffer);
  90. p->Buffer = NULL;
  91. if (p->Decoder != NULL) 
  92. {
  93. WavpackClose(p->Decoder);
  94. p->Decoder = NULL;
  95. }
  96. }
  97. static int Init(wavpack* p)
  98. {
  99. format_stream* s;
  100. p->Format.HeaderLoaded = 1;
  101. p->Format.TimeStamps = 0;
  102. p->Decoder = WavpackOpenFileInput(read_bytes, p->Error, p);
  103. p->Samples = 0;
  104. s = Format_AddStream(&p->Format,sizeof(format_stream));
  105. if (s)
  106. {
  107.     if (WavpackGetMode (p->Decoder) & MODE_FLOAT) {
  108.       // Floating point?
  109.       return ERR_NOT_SUPPORTED;
  110.     }
  111. PacketFormatClear(&s->Format);
  112. s->Format.Type = PACKET_AUDIO;
  113. s->Format.Format.Audio.Format = AUDIOFMT_PCM;
  114. s->Format.Format.Audio.Bits = WavpackGetBitsPerSample(p->Decoder);
  115. s->Format.Format.Audio.SampleRate = WavpackGetSampleRate(p->Decoder);
  116. s->Format.Format.Audio.Channels = WavpackGetNumChannels(p->Decoder);
  117. PacketFormatDefault(&s->Format);
  118. if (p->Format.FileSize>0)
  119. s->Format.ByteRate = (int)   (((float) p->Format.FileSize / WavpackGetNumSamples(p->Decoder) * s->Format.Format.Audio.Channels * s->Format.Format.Audio.Bits / 8)    * s->Format.Format.Audio.SampleRate    * s->Format.Format.Audio.Channels 
  120.   * s->Format.Format.Audio.Bits 
  121.   / 128);
  122. s->PacketBurst = 1;
  123. s->Fragmented = 1;
  124. s->DisableDrop = 1;
  125. p->Format.Duration = (tick_t)(((int64_t)WavpackGetNumSamples(p->Decoder) * TICKSPERSEC) / s->Format.Format.Audio.SampleRate);
  126. Format_PrepairStream(&p->Format,s);
  127.     p->Bps = WavpackGetBytesPerSample(p->Decoder);
  128.     p->Channels = s->Format.Format.Audio.Channels;
  129.     p->SampleRate = s->Format.Format.Audio.SampleRate;
  130.     p->SampleSize = s->Format.Format.Audio.Channels * sizeof(int16_t);
  131.     if (p->Format.Comment.Node)
  132.     {
  133.       // id3v1
  134.       format_reader* Reader = p->Format.Reader;
  135.       char Buffer[ID3V1_SIZE];
  136.       filepos_t Save = Reader->Input->Seek(Reader->Input,0,SEEK_CUR);
  137.       if (Save>=0 && Reader->Input->Seek(Reader->Input,-(int)sizeof(Buffer),SEEK_END)>=0)
  138.       {
  139.         if (Reader->Input->Read(Reader->Input,Buffer,sizeof(Buffer)) == sizeof(Buffer))
  140.           ID3v1_Parse(Buffer,&p->Format.Comment);
  141.         Reader->Input->Seek(Reader->Input,Save,SEEK_SET);
  142.       }
  143.     }
  144.     p->BufferLen = WAVPACK_BLOCK_LEN * p->Channels;
  145.     p->Buffer = (long*)malloc(sizeof(long)*p->BufferLen);
  146.     if (!p->Buffer)
  147.       return ERR_OUT_OF_MEMORY;
  148. }
  149. return ERR_NONE;
  150. }
  151. static int Seek(wavpack* p, tick_t Time, int FilePos, bool_t PrevKey)
  152. {
  153. int64_t Samples;
  154. if (Time < 0)
  155. {
  156. if (FilePos<0 || p->Format.FileSize<0)
  157. return ERR_NOT_SUPPORTED;
  158. Time = Scale(FilePos,p->Format.Duration,p->Format.FileSize);
  159. }
  160. if (FilePos < 0)
  161. {
  162. if (Time<0 || p->Format.FileSize<0 || p->Format.Duration<0)
  163. return ERR_NOT_SUPPORTED;
  164. FilePos = Scale(Time,p->Format.FileSize,p->Format.Duration);
  165. }
  166. Samples = ((int64_t)Time * p->SampleRate+(TICKSPERSEC/2)) / TICKSPERSEC;
  167. WavpackFlush (p->Decoder);
  168. Format_Seek(&p->Format, (filepos_t)FilePos, SEEK_SET);
  169. p->Samples = Samples;
  170. return ERR_NONE;
  171. }
  172. static int Process(wavpack* p,format_stream* Stream)
  173. {
  174. int Result = ERR_NONE;
  175. if (Stream->Pending)
  176. {
  177. Result = Format_Send(&p->Format,Stream);
  178. if (Result == ERR_BUFFER_FULL || Result == ERR_SYNCED)
  179. return Result;
  180. }
  181. if (p->Format.Reader[0].BufferAvailable < (MINBUFFER/2) && !p->Format.Reader[0].NoMoreInput)
  182. return ERR_NEED_MORE_DATA;
  183.     p->BufferFilled = 0;
  184.     p->BufferFilled = WavpackUnpackSamples (p->Decoder, p->Buffer, WAVPACK_BLOCK_LEN);
  185.     if (p->BufferFilled < 0) 
  186. return ERR_INVALID_DATA;
  187. if (p->BufferFilled == 0)
  188. return Format_CheckEof(&p->Format,Stream);
  189.     format_samples(p->Bps, (uchar *)p->Buffer, p->Buffer, p->BufferFilled * p->Channels);
  190. Stream->Packet.RefTime = (tick_t)((p->Samples * TICKSPERSEC) / p->SampleRate);
  191. Stream->Packet.Data[0] = p->Buffer;
  192. Stream->Packet.Length = p->BufferFilled * p->SampleSize;
  193. Stream->Pending = 1;
  194. p->Samples += p->BufferFilled;
  195. Result = Format_Send(&p->Format,Stream);
  196. if (Result == ERR_BUFFER_FULL || Result == ERR_NEED_MORE_DATA)
  197. Result = ERR_NONE;
  198. return Result;
  199. }
  200. static int Create(wavpack* p)
  201. {
  202. p->Format.Init = (fmtfunc) Init;
  203. p->Format.Done = (fmtvoid) Done;
  204. p->Format.Seek = (fmtseek) Seek;
  205. p->Format.Process = (fmtstreamprocess) Process;
  206. p->Format.FillQueue = NULL;
  207. p->Format.ReadPacket = NULL;
  208. p->Format.Sended = NULL;
  209. return ERR_NONE;
  210. }
  211. static const nodedef WVP =
  212. {
  213. sizeof(wavpack),
  214. WVP_ID,
  215. FORMATBASE_CLASS,
  216. PRI_DEFAULT,
  217. (nodecreate)Create,
  218. };
  219. void WVP_Init()
  220. {
  221. NodeRegisterClass(&WVP);
  222. }
  223. void WVP_Done()
  224. {
  225. NodeUnRegisterClass(WVP_ID);
  226. }