cabac.h
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:3k
源码类别:

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * cabac.h: h264 encoder library
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2008 x264 project
  5.  *
  6.  * Authors: Loren Merritt <lorenm@u.washington.edu>
  7.  *          Laurent Aimar <fenrir@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #ifndef X264_CABAC_H
  24. #define X264_CABAC_H
  25. typedef struct
  26. {
  27.     /* state */
  28.     int i_low;
  29.     int i_range;
  30.     /* bit stream */
  31.     int i_queue;
  32.     int i_bytes_outstanding;
  33.     uint8_t *p_start;
  34.     uint8_t *p;
  35.     uint8_t *p_end;
  36.     /* aligned for memcpy_aligned starting here */
  37.     DECLARE_ALIGNED_16( int f8_bits_encoded ); // only if using x264_cabac_size_decision()
  38.     /* context */
  39.     uint8_t state[460];
  40. } x264_cabac_t;
  41. extern const uint8_t x264_cabac_transition[128][2];
  42. extern const uint16_t x264_cabac_entropy[128][2];
  43. /* init the contexts given i_slice_type, the quantif and the model */
  44. void x264_cabac_context_init( x264_cabac_t *cb, int i_slice_type, int i_qp, int i_model );
  45. /* encoder only: */
  46. void x264_cabac_encode_init ( x264_cabac_t *cb, uint8_t *p_data, uint8_t *p_end );
  47. void x264_cabac_encode_decision_c( x264_cabac_t *cb, int i_ctx, int b );
  48. void x264_cabac_encode_decision_asm( x264_cabac_t *cb, int i_ctx, int b );
  49. void x264_cabac_encode_bypass( x264_cabac_t *cb, int b );
  50. void x264_cabac_encode_ue_bypass( x264_cabac_t *cb, int exp_bits, int val );
  51. void x264_cabac_encode_terminal( x264_cabac_t *cb );
  52. void x264_cabac_encode_flush( x264_t *h, x264_cabac_t *cb );
  53. #ifdef HAVE_MMX
  54. #define x264_cabac_encode_decision x264_cabac_encode_decision_asm
  55. #else
  56. #define x264_cabac_encode_decision x264_cabac_encode_decision_c
  57. #endif
  58. static inline int x264_cabac_pos( x264_cabac_t *cb )
  59. {
  60.     return (cb->p - cb->p_start + cb->i_bytes_outstanding) * 8 + cb->i_queue;
  61. }
  62. /* internal only. these don't write the bitstream, just calculate bit cost: */
  63. static inline void x264_cabac_size_decision( x264_cabac_t *cb, long i_ctx, long b )
  64. {
  65.     int i_state = cb->state[i_ctx];
  66.     cb->state[i_ctx] = x264_cabac_transition[i_state][b];
  67.     cb->f8_bits_encoded += x264_cabac_entropy[i_state][b];
  68. }
  69. static inline int x264_cabac_size_decision2( uint8_t *state, long b )
  70. {
  71.     int i_state = *state;
  72.     *state = x264_cabac_transition[i_state][b];
  73.     return x264_cabac_entropy[i_state][b];
  74. }
  75. static inline int x264_cabac_size_decision_noup( uint8_t *state, long b )
  76. {
  77.     return x264_cabac_entropy[*state][b];
  78. }
  79. #endif