00001 class dynamic_bitrate_helper 00002 { 00003 public: 00004 dynamic_bitrate_helper(); 00005 void on_frame(double p_duration,t_size p_bits); 00006 bool on_update(file_info & p_out, double & p_timestamp_delta); 00007 void reset(); 00008 private: 00009 void init(); 00010 double m_last_duration; 00011 t_size m_update_bits; 00012 double m_update_time; 00013 double m_update_interval; 00014 bool m_inited, m_enabled; 00015 };
1.5.5