Mercurial > cgi-bin > hgwebdir.cgi > PR > Applications > VSs > VSs__H264__App
comparison libavcodec/h264_entropy.h @ 4:96e628866d41
naming some tasks to help debugging
| author | Nina Engelhardt <nengel@mailbox.tu-berlin.de> |
|---|---|
| date | Wed, 19 Dec 2012 15:40:26 +0100 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:f66f930daa9e |
|---|---|
| 1 #ifndef H264_CABAC_H | |
| 2 #define H264_CABAC_H | |
| 3 | |
| 4 #include "h264_types.h" | |
| 5 #include "cabac.h" | |
| 6 | |
| 7 /** | |
| 8 * decodes a CABAC coded macroblock | |
| 9 * @return 0 if OK, AC_ERROR / DC_ERROR / MV_ERROR if an error is noticed | |
| 10 */ | |
| 11 | |
| 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); | |
| 14 | |
| 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); | |
| 19 | |
| 20 #endif |
