getbit.h
上传用户:hhs829
上传日期:2022-06-17
资源大小:586k
文件大小:3k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) Chia-chen Kuo - Jan 2001
  3.  *
  4.  *  This file is part of DVD2AVI, a free MPEG-2 decoder
  5.  *
  6.  *  DVD2AVI is free software; you can redistribute it and/or modify
  7.  *  it under the terms of the GNU General Public License as published by
  8.  *  the Free Software Foundation; either version 2, or (at your option)
  9.  *  any later version.
  10.  *   
  11.  *  DVD2AVI is distributed in the hope that it will be useful,
  12.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14.  *  GNU General Public License for more details.
  15.  *   
  16.  *  You should have received a copy of the GNU General Public License
  17.  *  along with GNU Make; see the file COPYING.  If not, write to
  18.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  19.  *
  20.  */
  21. #include "smartcache.h"
  22. void Initialize_Buffer(void);
  23. void Fill_Buffer(void);
  24. void Next_Packet(void);
  25. void Flush_Buffer_All(unsigned int N);
  26. unsigned int Get_Bits_All(unsigned int N);
  27. __forceinline static unsigned int Show_Bits(unsigned int N);
  28. __forceinline static unsigned int Get_Bits(unsigned int N);
  29. __forceinline static void Flush_Buffer(unsigned int N);
  30. __forceinline static void Fill_Next(void);
  31. __forceinline static unsigned int Get_Byte(void);
  32. unsigned char Rdbfr[BUFFER_SIZE], *Rdptr, *Rdmax;
  33. unsigned int BitsLeft, CurrentBfr, NextBfr, Val, Read;
  34. static unsigned int Show_Bits(unsigned int N)
  35. {
  36. if (N <= BitsLeft)
  37. return (CurrentBfr << (32 - BitsLeft)) >> (32 - N);
  38. else
  39. {
  40. N -= BitsLeft;
  41. return (((CurrentBfr << (32 - BitsLeft)) >> (32 - BitsLeft)) << N) + (NextBfr >> (32 - N));
  42. }
  43. }
  44. static unsigned int Get_Bits(unsigned int N)
  45. {
  46. if (N < BitsLeft)
  47. {
  48. Val = (CurrentBfr << (32 - BitsLeft)) >> (32 - N);
  49. BitsLeft -= N;
  50. return Val;
  51. }
  52. else
  53. return Get_Bits_All(N);
  54. }
  55. static void Flush_Buffer(unsigned int N)
  56. {
  57. if (N < BitsLeft)
  58. BitsLeft -= N;
  59. else
  60. Flush_Buffer_All(N);
  61. }
  62. static void Fill_Next()
  63. {
  64. if (SystemStream_Flag && Rdptr >= Rdmax-4)
  65. {
  66. if (Rdptr >= Rdmax)
  67. Next_Packet();
  68. NextBfr = Get_Byte() << 24;
  69. if (Rdptr >= Rdmax)
  70. Next_Packet();
  71. NextBfr += Get_Byte() << 16;
  72. if (Rdptr >= Rdmax)
  73. Next_Packet();
  74. NextBfr += Get_Byte() << 8;
  75. if (Rdptr >= Rdmax)
  76. Next_Packet();
  77. NextBfr += Get_Byte();
  78. }
  79. else if (Rdptr < Rdbfr+BUFFER_SIZE-4)
  80. {
  81. NextBfr = (*Rdptr << 24) + (*(Rdptr+1) << 16) + (*(Rdptr+2) << 8) + *(Rdptr+3);
  82. Rdptr += 4;
  83. }
  84. else
  85. {
  86. if (Rdptr >= Rdbfr+BUFFER_SIZE)
  87. Fill_Buffer();
  88. NextBfr = *Rdptr++ << 24;
  89. if (Rdptr >= Rdbfr+BUFFER_SIZE)
  90. Fill_Buffer();
  91. NextBfr += *Rdptr++ << 16;
  92. if (Rdptr >= Rdbfr+BUFFER_SIZE)
  93. Fill_Buffer();
  94. NextBfr += *Rdptr++ << 8;
  95. if (Rdptr >= Rdbfr+BUFFER_SIZE)
  96. Fill_Buffer();
  97. NextBfr += *Rdptr++;
  98. }
  99. }
  100. static unsigned int Get_Byte()
  101. {
  102. if (Rdptr >= (Rdbfr + BUFFER_SIZE))
  103. {
  104. int readsize = BUFFER_SIZE;
  105. if (gIsEOS)
  106. {
  107. int available = GetAvailableInSmartCache();
  108. if (available == 0)
  109. {
  110. // Force to exit from decoding cycle
  111. Fault_Flag = ERROR_FLUSH;
  112. }
  113. if (available < BUFFER_SIZE)
  114. {
  115. readsize = available;
  116. }
  117. }
  118. Read = FetchDataFromSmartCache(Rdbfr, BUFFER_SIZE);
  119. Rdptr = Rdbfr;
  120. Rdmax = Rdbfr + Read;
  121. }
  122. return *Rdptr++;
  123. }