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

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: amrwb.c 543 2006-01-07 22:06:24Z picard $
  18.  *
  19.  * The Core Pocket Media Player
  20.  * Copyright (c) 2004-2005 Gabor Kovacs
  21.  *
  22.  ****************************************************************************/
  23. #include "../common/common.h"
  24. #include "amrwb.h"
  25. #include "26204/dec_if.h"
  26. extern const UWord8 block_size[];
  27. typedef struct amrwb
  28. {
  29. codec Codec;
  30. buffer Buffer;
  31. void* Decoder;
  32. int16_t Synth[L_FRAME16k];
  33. } amrwb;
  34. static int UpdateInput(amrwb* p)
  35. {
  36. if (p->Decoder)
  37. {
  38. D_IF_exit(p->Decoder);
  39. p->Decoder = NULL;
  40. }
  41. BufferClear(&p->Buffer);
  42. if (p->Codec.In.Format.Type == PACKET_AUDIO)
  43. {
  44.     p->Decoder = D_IF_init();
  45. if (!p->Decoder)
  46. return ERR_OUT_OF_MEMORY;
  47. p->Codec.In.Format.Format.Audio.SampleRate = 16000;
  48. p->Codec.In.Format.Format.Audio.Channels = 1;
  49. PacketFormatPCM(&p->Codec.Out.Format,&p->Codec.In.Format,16);
  50. }
  51. return ERR_NONE;
  52. }
  53. static int Process(amrwb* p, const packet* Packet, const flowstate* State)
  54. {
  55. int Size;
  56. if (Packet)
  57. {
  58. if (Packet->RefTime >= 0)
  59. p->Codec.Packet.RefTime = Packet->RefTime;
  60. // add new packet to buffer
  61. BufferPack(&p->Buffer,0);
  62. BufferWrite(&p->Buffer,Packet->Data[0],Packet->Length,256);
  63. }
  64. else
  65. p->Codec.Packet.RefTime = TIME_UNKNOWN;
  66. if (p->Buffer.WritePos - p->Buffer.ReadPos < 1)
  67. return ERR_NEED_MORE_DATA;
  68. if (p->Buffer.Data[p->Buffer.ReadPos] == '#' &&
  69. p->Buffer.WritePos - p->Buffer.ReadPos > 9 &&
  70. memcmp(p->Buffer.Data+p->Buffer.ReadPos,"#!AMR-WBn",9)==0)
  71. p->Buffer.ReadPos += 9;
  72. Size = block_size[(p->Buffer.Data[p->Buffer.ReadPos] >> 3) & 0xF];
  73. if (p->Buffer.WritePos - p->Buffer.ReadPos < Size)
  74. return ERR_NEED_MORE_DATA;
  75.     D_IF_decode(p->Decoder, p->Buffer.Data+p->Buffer.ReadPos, p->Synth, _good_frame);
  76. p->Buffer.ReadPos += Size;
  77. p->Codec.Packet.Length = sizeof(p->Synth);
  78. p->Codec.Packet.Data[0] = p->Synth;
  79. return ERR_NONE;
  80. }
  81. extern void D_IF_reset(void*);
  82. static int Flush(amrwb* p)
  83. {
  84. if (p->Decoder)
  85. D_IF_reset(p->Decoder);
  86. return ERR_NONE;
  87. }
  88. static int Create(amrwb* p)
  89. {
  90. p->Codec.Process = (packetprocess)Process;
  91. p->Codec.UpdateInput = (nodefunc)UpdateInput;
  92. p->Codec.Flush = (nodefunc)Flush;
  93. return ERR_NONE;
  94. }
  95. static const nodedef AMRWB =
  96. {
  97. sizeof(amrwb),
  98. AMRWB_ID,
  99. CODEC_CLASS,
  100. PRI_DEFAULT,
  101. (nodecreate)Create,
  102. NULL,
  103. };
  104. static const nodedef AMRWBFile = 
  105. {
  106. 0, //parent size
  107. AMRWB_FILE_ID,
  108. RAWAUDIO_CLASS,
  109. PRI_DEFAULT-5,
  110. };
  111. void AMRWB_Init()
  112. {
  113. NodeRegisterClass(&AMRWB);
  114. NodeRegisterClass(&AMRWBFile);
  115. }
  116. void AMRWB_Done()
  117. {
  118. NodeUnRegisterClass(AMRWB_ID);
  119. NodeUnRegisterClass(AMRWB_FILE_ID);
  120. }