bits.c
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:5k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*
  2. ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
  3. ** Copyright (C) 2003-2005 M. Bakker, Ahead Software AG, http://www.nero.com
  4. **  
  5. ** This program is free software; you can redistribute it and/or modify
  6. ** it under the terms of the GNU General Public License as published by
  7. ** the Free Software Foundation; either version 2 of the License, or
  8. ** (at your option) any later version.
  9. ** 
  10. ** This program is distributed in the hope that it will be useful,
  11. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. ** GNU General Public License for more details.
  14. ** 
  15. ** You should have received a copy of the GNU General Public License
  16. ** along with this program; if not, write to the Free Software 
  17. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. **
  19. ** Any non-GPL usage of this software or parts of this software is strictly
  20. ** forbidden.
  21. **
  22. ** Software using this code must display the following message visibly in the
  23. ** software:
  24. ** "FAAD2 AAC/HE-AAC/HE-AACv2/DRM decoder (c) Ahead Software, www.nero.com"
  25. ** in, for example, the about-box or help/startup screen.
  26. **
  27. ** Commercial non-GPL licensing of this software is possible.
  28. ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
  29. **
  30. ** $Id: bits.c,v 1.2 2005/11/01 21:41:43 gabest Exp $
  31. **/
  32. #include "common.h"
  33. #include "structs.h"
  34. #include <stdlib.h>
  35. #include <string.h>
  36. #include "bits.h"
  37. /* initialize buffer, call once before first getbits or showbits */
  38. void faad_initbits(bitfile *ld, const void *_buffer, const uint32_t buffer_size)
  39. {
  40.     uint32_t tmp;
  41.     if (ld == NULL)
  42.         return;
  43.     memset(ld, 0, sizeof(bitfile));
  44.     if (buffer_size == 0 || _buffer == NULL)
  45.     {
  46.         ld->error = 1;
  47.         ld->no_more_reading = 1;
  48.         return;
  49.     }
  50.     ld->buffer = faad_malloc((buffer_size+12)*sizeof(uint8_t));
  51.     memset(ld->buffer, 0, (buffer_size+12)*sizeof(uint8_t));
  52.     memcpy(ld->buffer, _buffer, buffer_size*sizeof(uint8_t));
  53.     ld->buffer_size = buffer_size;
  54.     tmp = getdword((uint32_t*)ld->buffer);
  55.     ld->bufa = tmp;
  56.     tmp = getdword((uint32_t*)ld->buffer + 1);
  57.     ld->bufb = tmp;
  58.     ld->start = (uint32_t*)ld->buffer;
  59.     ld->tail = ((uint32_t*)ld->buffer + 2);
  60.     ld->bits_left = 32;
  61.     ld->bytes_used = 0;
  62.     ld->no_more_reading = 0;
  63.     ld->error = 0;
  64. }
  65. void faad_endbits(bitfile *ld)
  66. {
  67.     if (ld)
  68.     {
  69.         if (ld->buffer)
  70.         {
  71.             faad_free(ld->buffer);
  72.             ld->buffer = NULL;
  73.         }
  74.     }
  75. }
  76. uint32_t faad_get_processed_bits(bitfile *ld)
  77. {
  78.     return (uint32_t)(8 * (4*(ld->tail - ld->start) - 4) - (ld->bits_left));
  79. }
  80. uint8_t faad_byte_align(bitfile *ld)
  81. {
  82.     uint8_t remainder = (uint8_t)((32 - ld->bits_left) % 8);
  83.     if (remainder)
  84.     {
  85.         faad_flushbits(ld, 8 - remainder);
  86.         return (8 - remainder);
  87.     }
  88.     return 0;
  89. }
  90. void faad_flushbits_ex(bitfile *ld, uint32_t bits)
  91. {
  92.     uint32_t tmp;
  93.     ld->bufa = ld->bufb;
  94.     if (ld->no_more_reading == 0)
  95.     {
  96.         tmp = getdword(ld->tail);
  97.         ld->tail++;
  98.     } else {
  99.         tmp = 0;
  100.     }
  101.     ld->bufb = tmp;
  102.     ld->bits_left += (32 - bits);
  103.     ld->bytes_used += 4;
  104.     if (ld->bytes_used == ld->buffer_size)
  105.         ld->no_more_reading = 1;
  106.     if (ld->bytes_used > ld->buffer_size)
  107.         ld->error = 1;
  108. }
  109. /* rewind to beginning */
  110. void faad_rewindbits(bitfile *ld)
  111. {
  112.     uint32_t tmp;
  113.     tmp = ld->start[0];
  114. #ifndef ARCH_IS_BIG_ENDIAN
  115.     BSWAP(tmp);
  116. #endif
  117.     ld->bufa = tmp;
  118.     tmp = ld->start[1];
  119. #ifndef ARCH_IS_BIG_ENDIAN
  120.     BSWAP(tmp);
  121. #endif
  122.     ld->bufb = tmp;
  123.     ld->bits_left = 32;
  124.     ld->tail = &ld->start[2];
  125.     ld->bytes_used = 0;
  126.     ld->no_more_reading = 0;
  127. }
  128. uint8_t *faad_getbitbuffer(bitfile *ld, uint32_t bits
  129.                        DEBUGDEC)
  130. {
  131.     uint16_t i;
  132.     uint8_t temp;
  133.     uint16_t bytes = (uint16_t)bits / 8;
  134.     uint8_t remainder = (uint8_t)bits % 8;
  135.     uint8_t *buffer = (uint8_t*)faad_malloc((bytes+1)*sizeof(uint8_t));
  136.     for (i = 0; i < bytes; i++)
  137.     {
  138.         buffer[i] = (uint8_t)faad_getbits(ld, 8 DEBUGVAR(print,var,dbg));
  139.     }
  140.     if (remainder)
  141.     {
  142.         temp = (uint8_t)faad_getbits(ld, remainder DEBUGVAR(print,var,dbg)) << (8-remainder);
  143.         buffer[bytes] = temp;
  144.     }
  145.     return buffer;
  146. }
  147. #ifdef DRM
  148. /* return the original data buffer */
  149. void *faad_origbitbuffer(bitfile *ld)
  150. {
  151.     return (void*)ld->start;
  152. }
  153. /* return the original data buffer size */
  154. uint32_t faad_origbitbuffer_size(bitfile *ld)
  155. {
  156.     return ld->buffer_size;
  157. }
  158. #endif
  159. /* reversed bit reading routines, used for RVLC and HCR */
  160. void faad_initbits_rev(bitfile *ld, void *buffer,
  161.                        uint32_t bits_in_buffer)
  162. {
  163.     uint32_t tmp;
  164.     int32_t index;
  165.     ld->buffer_size = bit2byte(bits_in_buffer);
  166.     index = (bits_in_buffer+31)/32 - 1;
  167.     ld->start = (uint32_t*)buffer + index - 2;
  168.     tmp = getdword((uint32_t*)buffer + index);
  169.     ld->bufa = tmp;
  170.     tmp = getdword((uint32_t*)buffer + index - 1);
  171.     ld->bufb = tmp;
  172.     ld->tail = (uint32_t*)buffer + index;
  173.     ld->bits_left = bits_in_buffer % 32;
  174.     if (ld->bits_left == 0)
  175.         ld->bits_left = 32;
  176.     ld->bytes_used = 0;
  177.     ld->no_more_reading = 0;
  178.     ld->error = 0;
  179. }