comparison mpegvideo.h @ 3786:616a81d04758 libavcodec

Pull out the ff_eval* from the mpegvideo header, as it doesn't belong there and put it in a separate file.
author takis
date Fri, 29 Sep 2006 19:33:04 +0000
parents 8e79b099d354
children 730ad999e379
comparison
equal deleted inserted replaced
3785:5b987af96509 3786:616a81d04758
989 /* rate control */ 989 /* rate control */
990 int ff_rate_control_init(MpegEncContext *s); 990 int ff_rate_control_init(MpegEncContext *s);
991 float ff_rate_estimate_qscale(MpegEncContext *s, int dry_run); 991 float ff_rate_estimate_qscale(MpegEncContext *s, int dry_run);
992 void ff_write_pass1_stats(MpegEncContext *s); 992 void ff_write_pass1_stats(MpegEncContext *s);
993 void ff_rate_control_uninit(MpegEncContext *s); 993 void ff_rate_control_uninit(MpegEncContext *s);
994 #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
995 double ff_eval(char *s, double *const_value, const char **const_name,
996 double (**func1)(void *, double), const char **func1_name,
997 double (**func2)(void *, double, double), char **func2_name,
998 void *opaque);
999 #endif
1000 double ff_eval2(char *s, double *const_value, const char **const_name,
1001 double (**func1)(void *, double), const char **func1_name,
1002 double (**func2)(void *, double, double), char **func2_name,
1003 void *opaque, char **error);
1004 int ff_vbv_update(MpegEncContext *s, int frame_size); 994 int ff_vbv_update(MpegEncContext *s, int frame_size);
1005 void ff_get_2pass_fcode(MpegEncContext *s); 995 void ff_get_2pass_fcode(MpegEncContext *s);
1006 996
1007 int ff_xvid_rate_control_init(MpegEncContext *s); 997 int ff_xvid_rate_control_init(MpegEncContext *s);
1008 void ff_xvid_rate_control_uninit(MpegEncContext *s); 998 void ff_xvid_rate_control_uninit(MpegEncContext *s);