pan_mv_data.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. This software module was originally developed by
  3. Naoya Tanaka (Matsushita Communication Industrial Co., Ltd.)
  4. and edited by
  5. FN2 LN2 (CN2), FN3 LN3 (CN3),
  6. in the course of development of the
  7. MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7, 14496-1,2 and 3.
  8. This software module is an implementation of a part of one or more
  9. MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4 Audio
  10. standard. ISO/IEC  gives users of the MPEG-2 NBC/MPEG-4 Audio standards
  11. free license to this software module or modifications thereof for use in
  12. hardware or software products claiming conformance to the MPEG-2 NBC/
  13. MPEG-4 Audio  standards. Those intending to use this software module in
  14. hardware or software products are advised that this use may infringe
  15. existing patents. The original developer of this software module and
  16. his/her company, the subsequent editors and their companies, and ISO/IEC
  17. have no liability for use of this software module or modifications
  18. thereof in an implementation. Copyright is not released for non
  19. MPEG-2 NBC/MPEG-4 Audio conforming products. The original developer
  20. retains full right to use the code for his/her  own purpose, assign or
  21. donate the code to a third party and to inhibit third party from using
  22. the code for non MPEG-2 NBC/MPEG-4 Audio conforming products.
  23. This copyright notice must be included in all copies or derivative works.
  24. Copyright (c)1996.
  25. */
  26. /*----------------------------------------------------------------------*
  27.  *    MPEG-4 Audio Verification Model (VM)                              * 
  28.  *                                                                      *
  29.  * CELP based coder                                                *
  30.  *    Module: pan_mv_data.c                                         *
  31.  *                                                                      *
  32.  *  Last modified: Sep. 25, 1996                                        *
  33.  *----------------------------------------------------------------------*/
  34. #include <stdio.h>
  35. #include "buffersHandle.h"       /* handler, defines, enums */
  36. #include "bitstream.h"
  37. #include "pan_celp_proto.h"
  38. /* move an array to another */
  39. void pan_mv_cdata(char out[], char in[], long num)
  40. {
  41. long i;
  42. for(i=0;i<num;i++) out[i] = in[i];
  43. }
  44. void pan_mv_sdata(short out[], short in[], long num)
  45. {
  46. long i;
  47. for(i=0;i<num;i++) out[i] = in[i];
  48. }
  49. void pan_mv_ldata(long out[], long in[], long num)
  50. {
  51. long i;
  52. for(i=0;i<num;i++) out[i] = in[i];
  53. }
  54. void pan_mv_fdata(float out[], float in[], long num)
  55. {
  56. long i;
  57. for(i=0;i<num;i++) out[i] = in[i];
  58. }
  59. void pan_mv_ddata(double out[], double in[], long num)
  60. {
  61. long i;
  62. for(i=0;i<num;i++) out[i] = in[i];
  63. }