]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/ratecontrol.h
tablegen: the executable depends on tablegen headers as well
[ffmpeg] / libavcodec / ratecontrol.h
index c428923a5dd7ee6fd33f2faadeb9e87d23147aa2..32efe01d24a5d68af1401216a251ca92256feede 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Ratecontrol
- * Copyright (c) 2000, 2001, 2002 Fabrice Bellard.
+ * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
  * Copyright (c) 2002-2004 Michael Niedermayer
  *
  * This file is part of FFmpeg.
 #define AVCODEC_RATECONTROL_H
 
 /**
- * @file ratecontrol.h
+ * @file
  * ratecontrol header.
  */
 
-#include "eval.h"
+#include <stdio.h>
+#include <stdint.h>
+#include "libavutil/eval.h"
 
 typedef struct Predictor{
     double coeff;
@@ -82,7 +84,7 @@ typedef struct RateControlContext{
     void *non_lavc_opaque;        ///< context for non lavc rc code (for example xvid)
     float dry_run_qscale;         ///< for xvid rc
     int last_picture_number;      ///< for xvid rc
-    AVEvalExpr * rc_eq_eval;
+    AVExpr * rc_eq_eval;
 }RateControlContext;
 
 struct MpegEncContext;