cabac_engine.h
上传用户:sunbaby
上传日期:2013-05-31
资源大小:242k
文件大小:2k
源码类别:

mpeg/mp3

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * cabac.h: h264 encoder library
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 Laurent Aimar
  5.  *
  6.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  21.  *****************************************************************************/
  22. #ifndef _CABAC_ENGINE_H_
  23. #define _CABAC_ENGINE_H_
  24. #include "T264.h"
  25. #include "Bitstream.h"
  26. /* encoder/decoder: init the contexts given i_slice_type, the quantif and the model */
  27. void T264_cabac_context_init( T264_cabac_t *cb, int i_slice_type, int i_qp, int i_model );
  28. /* decoder only: */
  29. void T264_cabac_decode_init    ( T264_cabac_t *cb, bs_t *s );
  30. int  T264_cabac_decode_decision( T264_cabac_t *cb, int i_ctx_idx );
  31. int  T264_cabac_decode_bypass  ( T264_cabac_t *cb );
  32. int  T264_cabac_decode_terminal( T264_cabac_t *cb );
  33. /* encoder only: adaptive model init */
  34. void T264_cabac_model_init( T264_cabac_t *cb );
  35. int  T264_cabac_model_get ( T264_cabac_t *cb, int i_slice_type );
  36. void T264_cabac_model_update( T264_cabac_t *cb, int i_slice_type, int i_qp );
  37. /* encoder only: */
  38. void T264_cabac_encode_init ( T264_cabac_t *cb, bs_t *s );
  39. void T264_cabac_encode_decision( T264_cabac_t *cb, int i_ctx_idx, int b );
  40. void T264_cabac_encode_bypass( T264_cabac_t *cb, int b );
  41. void T264_cabac_encode_terminal( T264_cabac_t *cb, int b );
  42. void T264_cabac_encode_flush( T264_cabac_t *cb );
  43. #endif