ratecontrol.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:0k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. #ifndef _RATECONTROL_H_
  2. #define _RATECONTROL_H_
  3. #include "../encoder.h"
  4. #include "../portab.h"
  5. void RateControlInit(uint32_t target_rate, uint32_t reaction_delay_factor, int framerate,
  6.  int max_quant, int min_quant);
  7. int RateControlGetQ(int keyframe);
  8. void RateControlUpdate(int16_t quant, int frame_size, int keyframe);
  9. #endif /* _RATECONTROL_H_ */