comparison mpegvideo.h @ 1057:bb5de8a59da8 libavcodec

* static,const,compiler warning cleanup
author kabi
date Mon, 10 Feb 2003 09:35:32 +0000
parents e5a9dbf597d4
children b32afefe7d33
comparison
equal deleted inserted replaced
1056:eb403f8158eb 1057:bb5de8a59da8
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */ 18 */
19 19
20 #ifndef AVCODEC_MPEGVIDEO_H 20 #ifndef AVCODEC_MPEGVIDEO_H
21 #define AVCODEC_MPEGVIDEO_H 21 #define AVCODEC_MPEGVIDEO_H
22
23 #include "dsputil.h"
22 24
23 #define FRAME_SKIPED 100 // return value for header parsers if frame is not coded 25 #define FRAME_SKIPED 100 // return value for header parsers if frame is not coded
24 26
25 enum OutputFormat { 27 enum OutputFormat {
26 FMT_MPEG1, 28 FMT_MPEG1,
769 /* rate control */ 771 /* rate control */
770 int ff_rate_control_init(MpegEncContext *s); 772 int ff_rate_control_init(MpegEncContext *s);
771 float ff_rate_estimate_qscale(MpegEncContext *s); 773 float ff_rate_estimate_qscale(MpegEncContext *s);
772 void ff_write_pass1_stats(MpegEncContext *s); 774 void ff_write_pass1_stats(MpegEncContext *s);
773 void ff_rate_control_uninit(MpegEncContext *s); 775 void ff_rate_control_uninit(MpegEncContext *s);
774 double ff_eval(char *s, double *const_value, char **const_name, 776 double ff_eval(char *s, double *const_value, const char **const_name,
775 double (**func1)(void *, double), char **func1_name, 777 double (**func1)(void *, double), const char **func1_name,
776 double (**func2)(void *, double, double), char **func2_name, 778 double (**func2)(void *, double, double), char **func2_name,
777 void *opaque); 779 void *opaque);
778 780
779 781
780 #endif /* AVCODEC_MPEGVIDEO_H */ 782 #endif /* AVCODEC_MPEGVIDEO_H */