mp4_predict.h
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:0k
源码类别:

VC书籍

开发平台:

Visual C++

  1. // mp4_predict.h //
  2. #ifndef _MP4_PREDICT_H_
  3. #define _MP4_PREDICT_H_
  4. #define TOP 1
  5. #define LEFT 0
  6. #endif // _MP4_PREDICT_H_
  7. #define _div_div(a, b) (a>0) ? (a+(b>>1))/b : (a-(b>>1))/b
  8. /*** *** ***/
  9. extern void dc_recon(int block_num, short * dc_value);
  10. extern void ac_recon(int block_num, short * psBlock);
  11. extern int ac_rescaling(int block_num, short * psBlock);
  12. extern void ac_store(int block_num, short * psBlock);