Mercurial > cgi-bin > hgwebdir.cgi > PR > Applications > VSs > VSs__H264__App
view libavcodec/h264_entropy.h @ 2:897f711a7157
rearrange to work with autoconf
| author | Nina Engelhardt <nengel@mailbox.tu-berlin.de> |
|---|---|
| date | Tue, 25 Sep 2012 15:55:33 +0200 |
| parents | |
| children |
line source
1 #ifndef H264_CABAC_H
2 #define H264_CABAC_H
4 #include "h264_types.h"
5 #include "cabac.h"
7 /**
8 * decodes a CABAC coded macroblock
9 * @return 0 if OK, AC_ERROR / DC_ERROR / MV_ERROR if an error is noticed
10 */
12 int ff_h264_decode_mb_cabac(EntropyContext *ec, H264Slice *s, CABACContext *c);
13 void ff_h264_init_cabac_states(EntropyContext *ec, H264Slice *s, CABACContext *c);
15 int init_entropy_buf(EntropyContext *ec, H264Slice *s, int line);
16 EntropyContext * get_entropy_context(H264Context *h);
17 void init_dequant_tables(H264Slice *s, EntropyContext *ec);
18 void free_entropy_context(EntropyContext *ec);
20 #endif
