comparison cavs.h @ 5244:eeba62cd2181 libavcodec

prepare splitting decoder-only parts into own file: make commonly used functions global
author stefang
date Sat, 07 Jul 2007 07:35:18 +0000
parents dd11d0b32cc9
children dc2579bede07
comparison
equal deleted inserted replaced
5243:dd11d0b32cc9 5244:eeba62cd2181
459 dst[scantab[pos]] = (level_buf[coeff_num]*mul + round) >> shift; 459 dst[scantab[pos]] = (level_buf[coeff_num]*mul + round) >> shift;
460 } 460 }
461 return 0; 461 return 0;
462 } 462 }
463 463
464 void ff_cavs_filter(AVSContext *h, enum mb_t mb_type);
465 void ff_cavs_inter(AVSContext *h, enum mb_t mb_type);
466 void ff_cavs_mv(AVSContext *h, enum mv_loc_t nP, enum mv_loc_t nC,
467 enum mv_pred_t mode, enum block_t size, int ref);
468 void ff_cavs_init_pic(AVSContext *h);
469 void ff_cavs_init_top_lines(AVSContext *h);
470 int ff_cavs_init(AVCodecContext *avctx);
471 int ff_cavs_end (AVCodecContext *avctx);
472
464 #endif /* CAVS_H */ 473 #endif /* CAVS_H */