You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

509 lines
12KB

  1. /*
  2. * H.26L/H.264/AVC/JVT/14496-10/... encoder/decoder
  3. * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. */
  22. /**
  23. * @file cabac.h
  24. * Context Adaptive Binary Arithmetic Coder.
  25. */
  26. //#undef NDEBUG
  27. #include <assert.h>
  28. #define CABAC_BITS 16
  29. #define CABAC_MASK ((1<<CABAC_BITS)-1)
  30. typedef struct CABACContext{
  31. int low;
  32. int range;
  33. int outstanding_count;
  34. #ifdef STRICT_LIMITS
  35. int symCount;
  36. #endif
  37. uint8_t lps_range[2*66][4]; ///< rangeTabLPS
  38. uint8_t lps_state[2*65]; ///< transIdxLPS
  39. uint8_t mps_state[2*65]; ///< transIdxMPS
  40. const uint8_t *bytestream_start;
  41. const uint8_t *bytestream;
  42. const uint8_t *bytestream_end;
  43. PutBitContext pb;
  44. }CABACContext;
  45. extern const uint8_t ff_h264_lps_range[64][4];
  46. extern const uint8_t ff_h264_mps_state[64];
  47. extern const uint8_t ff_h264_lps_state[64];
  48. extern const uint8_t ff_h264_norm_shift[256];
  49. void ff_init_cabac_encoder(CABACContext *c, uint8_t *buf, int buf_size);
  50. void ff_init_cabac_decoder(CABACContext *c, const uint8_t *buf, int buf_size);
  51. void ff_init_cabac_states(CABACContext *c, uint8_t const (*lps_range)[4],
  52. uint8_t const *mps_state, uint8_t const *lps_state, int state_count);
  53. static inline void put_cabac_bit(CABACContext *c, int b){
  54. put_bits(&c->pb, 1, b);
  55. for(;c->outstanding_count; c->outstanding_count--){
  56. put_bits(&c->pb, 1, 1-b);
  57. }
  58. }
  59. static inline void renorm_cabac_encoder(CABACContext *c){
  60. while(c->range < 0x100){
  61. //FIXME optimize
  62. if(c->low<0x100){
  63. put_cabac_bit(c, 0);
  64. }else if(c->low<0x200){
  65. c->outstanding_count++;
  66. c->low -= 0x100;
  67. }else{
  68. put_cabac_bit(c, 1);
  69. c->low -= 0x200;
  70. }
  71. c->range+= c->range;
  72. c->low += c->low;
  73. }
  74. }
  75. static void put_cabac(CABACContext *c, uint8_t * const state, int bit){
  76. int RangeLPS= c->lps_range[*state][c->range>>6];
  77. if(bit == ((*state)&1)){
  78. c->range -= RangeLPS;
  79. *state= c->mps_state[*state];
  80. }else{
  81. c->low += c->range - RangeLPS;
  82. c->range = RangeLPS;
  83. *state= c->lps_state[*state];
  84. }
  85. renorm_cabac_encoder(c);
  86. #ifdef STRICT_LIMITS
  87. c->symCount++;
  88. #endif
  89. }
  90. static void put_cabac_static(CABACContext *c, int RangeLPS, int bit){
  91. assert(c->range > RangeLPS);
  92. if(!bit){
  93. c->range -= RangeLPS;
  94. }else{
  95. c->low += c->range - RangeLPS;
  96. c->range = RangeLPS;
  97. }
  98. renorm_cabac_encoder(c);
  99. #ifdef STRICT_LIMITS
  100. c->symCount++;
  101. #endif
  102. }
  103. /**
  104. * @param bit 0 -> write zero bit, !=0 write one bit
  105. */
  106. static void put_cabac_bypass(CABACContext *c, int bit){
  107. c->low += c->low;
  108. if(bit){
  109. c->low += c->range;
  110. }
  111. //FIXME optimize
  112. if(c->low<0x200){
  113. put_cabac_bit(c, 0);
  114. }else if(c->low<0x400){
  115. c->outstanding_count++;
  116. c->low -= 0x200;
  117. }else{
  118. put_cabac_bit(c, 1);
  119. c->low -= 0x400;
  120. }
  121. #ifdef STRICT_LIMITS
  122. c->symCount++;
  123. #endif
  124. }
  125. /**
  126. *
  127. * @return the number of bytes written
  128. */
  129. static int put_cabac_terminate(CABACContext *c, int bit){
  130. c->range -= 2;
  131. if(!bit){
  132. renorm_cabac_encoder(c);
  133. }else{
  134. c->low += c->range;
  135. c->range= 2;
  136. renorm_cabac_encoder(c);
  137. assert(c->low <= 0x1FF);
  138. put_cabac_bit(c, c->low>>9);
  139. put_bits(&c->pb, 2, ((c->low>>7)&3)|1);
  140. flush_put_bits(&c->pb); //FIXME FIXME FIXME XXX wrong
  141. }
  142. #ifdef STRICT_LIMITS
  143. c->symCount++;
  144. #endif
  145. return (put_bits_count(&c->pb)+7)>>3;
  146. }
  147. /**
  148. * put (truncated) unary binarization.
  149. */
  150. static void put_cabac_u(CABACContext *c, uint8_t * state, int v, int max, int max_index, int truncated){
  151. int i;
  152. assert(v <= max);
  153. #if 1
  154. for(i=0; i<v; i++){
  155. put_cabac(c, state, 1);
  156. if(i < max_index) state++;
  157. }
  158. if(truncated==0 || v<max)
  159. put_cabac(c, state, 0);
  160. #else
  161. if(v <= max_index){
  162. for(i=0; i<v; i++){
  163. put_cabac(c, state+i, 1);
  164. }
  165. if(truncated==0 || v<max)
  166. put_cabac(c, state+i, 0);
  167. }else{
  168. for(i=0; i<=max_index; i++){
  169. put_cabac(c, state+i, 1);
  170. }
  171. for(; i<v; i++){
  172. put_cabac(c, state+max_index, 1);
  173. }
  174. if(truncated==0 || v<max)
  175. put_cabac(c, state+max_index, 0);
  176. }
  177. #endif
  178. }
  179. /**
  180. * put unary exp golomb k-th order binarization.
  181. */
  182. static void put_cabac_ueg(CABACContext *c, uint8_t * state, int v, int max, int is_signed, int k, int max_index){
  183. int i;
  184. if(v==0)
  185. put_cabac(c, state, 0);
  186. else{
  187. const int sign= v < 0;
  188. if(is_signed) v= ABS(v);
  189. if(v<max){
  190. for(i=0; i<v; i++){
  191. put_cabac(c, state, 1);
  192. if(i < max_index) state++;
  193. }
  194. put_cabac(c, state, 0);
  195. }else{
  196. int m= 1<<k;
  197. for(i=0; i<max; i++){
  198. put_cabac(c, state, 1);
  199. if(i < max_index) state++;
  200. }
  201. v -= max;
  202. while(v >= m){ //FIXME optimize
  203. put_cabac_bypass(c, 1);
  204. v-= m;
  205. m+= m;
  206. }
  207. put_cabac_bypass(c, 0);
  208. while(m>>=1){
  209. put_cabac_bypass(c, v&m);
  210. }
  211. }
  212. if(is_signed)
  213. put_cabac_bypass(c, sign);
  214. }
  215. }
  216. static void refill(CABACContext *c){
  217. if(c->bytestream <= c->bytestream_end)
  218. #if CABAC_BITS == 16
  219. c->low+= (c->bytestream[0]<<9) + (c->bytestream[1]<<1);
  220. #else
  221. c->low+= c->bytestream[0]<<1;
  222. #endif
  223. c->low -= CABAC_MASK;
  224. c->bytestream+= CABAC_BITS/8;
  225. }
  226. static void refill2(CABACContext *c){
  227. int i, x;
  228. x= c->low ^ (c->low-1);
  229. i= 9 - ff_h264_norm_shift[x>>(CABAC_BITS+1)];
  230. x= -CABAC_MASK;
  231. if(c->bytestream <= c->bytestream_end)
  232. #if CABAC_BITS == 16
  233. x+= (c->bytestream[0]<<9) + (c->bytestream[1]<<1);
  234. #else
  235. x+= c->bytestream[0]<<1;
  236. #endif
  237. c->low += x<<i;
  238. c->bytestream+= CABAC_BITS/8;
  239. }
  240. static inline void renorm_cabac_decoder(CABACContext *c){
  241. while(c->range < (0x200 << CABAC_BITS)){
  242. c->range+= c->range;
  243. c->low+= c->low;
  244. if(!(c->low & CABAC_MASK))
  245. refill(c);
  246. }
  247. }
  248. static inline void renorm_cabac_decoder_once(CABACContext *c){
  249. #ifdef ARCH_X86_DISABLED
  250. int temp;
  251. #if 0
  252. //P3:683 athlon:475
  253. asm(
  254. "lea -0x2000000(%0), %2 \n\t"
  255. "shr $31, %2 \n\t" //FIXME 31->63 for x86-64
  256. "shl %%cl, %0 \n\t"
  257. "shl %%cl, %1 \n\t"
  258. : "+r"(c->range), "+r"(c->low), "+c"(temp)
  259. );
  260. #elif 0
  261. //P3:680 athlon:474
  262. asm(
  263. "cmp $0x2000000, %0 \n\t"
  264. "setb %%cl \n\t" //FIXME 31->63 for x86-64
  265. "shl %%cl, %0 \n\t"
  266. "shl %%cl, %1 \n\t"
  267. : "+r"(c->range), "+r"(c->low), "+c"(temp)
  268. );
  269. #elif 1
  270. int temp2;
  271. //P3:665 athlon:517
  272. asm(
  273. "lea -0x2000000(%0), %%eax \n\t"
  274. "cdq \n\t"
  275. "mov %0, %%eax \n\t"
  276. "and %%edx, %0 \n\t"
  277. "and %1, %%edx \n\t"
  278. "add %%eax, %0 \n\t"
  279. "add %%edx, %1 \n\t"
  280. : "+r"(c->range), "+r"(c->low), "+a"(temp), "+d"(temp2)
  281. );
  282. #elif 0
  283. int temp2;
  284. //P3:673 athlon:509
  285. asm(
  286. "cmp $0x2000000, %0 \n\t"
  287. "sbb %%edx, %%edx \n\t"
  288. "mov %0, %%eax \n\t"
  289. "and %%edx, %0 \n\t"
  290. "and %1, %%edx \n\t"
  291. "add %%eax, %0 \n\t"
  292. "add %%edx, %1 \n\t"
  293. : "+r"(c->range), "+r"(c->low), "+a"(temp), "+d"(temp2)
  294. );
  295. #else
  296. int temp2;
  297. //P3:677 athlon:511
  298. asm(
  299. "cmp $0x2000000, %0 \n\t"
  300. "lea (%0, %0), %%eax \n\t"
  301. "lea (%1, %1), %%edx \n\t"
  302. "cmovb %%eax, %0 \n\t"
  303. "cmovb %%edx, %1 \n\t"
  304. : "+r"(c->range), "+r"(c->low), "+a"(temp), "+d"(temp2)
  305. );
  306. #endif
  307. #else
  308. //P3:675 athlon:476
  309. int shift= (uint32_t)(c->range - (0x200 << CABAC_BITS))>>31;
  310. c->range<<= shift;
  311. c->low <<= shift;
  312. #endif
  313. if(!(c->low & CABAC_MASK))
  314. refill(c);
  315. }
  316. static int get_cabac(CABACContext *c, uint8_t * const state){
  317. //FIXME gcc generates duplicate load/stores for c->low and c->range
  318. //START_TIMER
  319. int s = *state;
  320. int RangeLPS= c->lps_range[s][c->range>>(CABAC_BITS+7)]<<(CABAC_BITS+1);
  321. int bit, lps_mask attribute_unused;
  322. c->range -= RangeLPS;
  323. #if 1
  324. if(c->low < c->range){
  325. bit= s&1;
  326. #ifdef ARCH_X86
  327. //P3:627
  328. asm(
  329. "addb $2, %b0 \n\t"
  330. " js 1f \n\t"
  331. "movb %b0, %1 \n\t"
  332. "1: \n\t"
  333. : "+q"(s), "=m"(*state)
  334. );
  335. #else
  336. *state= c->mps_state[s]; //P3:655
  337. /* if(s<126) //P3:657
  338. *state= s+2;*/
  339. s+=2; //P3:631
  340. if(s<128)
  341. *state= s;
  342. #endif
  343. renorm_cabac_decoder_once(c);
  344. }else{
  345. bit= ff_h264_norm_shift[RangeLPS>>17];
  346. c->low -= c->range;
  347. *state= c->lps_state[s];
  348. c->range = RangeLPS<<bit;
  349. c->low <<= bit;
  350. bit= (s&1)^1;
  351. if(!(c->low & 0xFFFF)){
  352. refill2(c);
  353. }
  354. }
  355. #else
  356. lps_mask= (c->range - c->low)>>31;
  357. c->low -= c->range & lps_mask;
  358. c->range += (RangeLPS - c->range) & lps_mask;
  359. bit= (s^lps_mask)&1;
  360. *state= c->mps_state[s - (128&lps_mask)];
  361. lps_mask= ff_h264_norm_shift[c->range>>(CABAC_BITS+2)];
  362. c->range<<= lps_mask;
  363. c->low <<= lps_mask;
  364. if(!(c->low & CABAC_MASK))
  365. refill2(c);
  366. #endif
  367. //STOP_TIMER("get_cabac")
  368. return bit;
  369. }
  370. static int get_cabac_bypass(CABACContext *c){
  371. c->low += c->low;
  372. if(!(c->low & CABAC_MASK))
  373. refill(c);
  374. if(c->low < c->range){
  375. return 0;
  376. }else{
  377. c->low -= c->range;
  378. return 1;
  379. }
  380. }
  381. /**
  382. *
  383. * @return the number of bytes read or 0 if no end
  384. */
  385. static int get_cabac_terminate(CABACContext *c){
  386. c->range -= 4<<CABAC_BITS;
  387. if(c->low < c->range){
  388. renorm_cabac_decoder_once(c);
  389. return 0;
  390. }else{
  391. return c->bytestream - c->bytestream_start;
  392. }
  393. }
  394. /**
  395. * get (truncated) unnary binarization.
  396. */
  397. static int get_cabac_u(CABACContext *c, uint8_t * state, int max, int max_index, int truncated){
  398. int i;
  399. for(i=0; i<max; i++){
  400. if(get_cabac(c, state)==0)
  401. return i;
  402. if(i< max_index) state++;
  403. }
  404. return truncated ? max : -1;
  405. }
  406. /**
  407. * get unary exp golomb k-th order binarization.
  408. */
  409. static int get_cabac_ueg(CABACContext *c, uint8_t * state, int max, int is_signed, int k, int max_index){
  410. int i, v;
  411. int m= 1<<k;
  412. if(get_cabac(c, state)==0)
  413. return 0;
  414. if(0 < max_index) state++;
  415. for(i=1; i<max; i++){
  416. if(get_cabac(c, state)==0){
  417. if(is_signed && get_cabac_bypass(c)){
  418. return -i;
  419. }else
  420. return i;
  421. }
  422. if(i < max_index) state++;
  423. }
  424. while(get_cabac_bypass(c)){
  425. i+= m;
  426. m+= m;
  427. }
  428. v=0;
  429. while(m>>=1){
  430. v+= v + get_cabac_bypass(c);
  431. }
  432. i += v;
  433. if(is_signed && get_cabac_bypass(c)){
  434. return -i;
  435. }else
  436. return i;
  437. }