]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/ratecontrol.h
Add stereo rematrixing support to the AC-3 encoders.
[ffmpeg] / libavcodec / ratecontrol.h
index 5673750e83c21ccaf30f821b33f9ace0e4ac5293..32efe01d24a5d68af1401216a251ca92256feede 100644 (file)
 #define AVCODEC_RATECONTROL_H
 
 /**
- * @file libavcodec/ratecontrol.h
+ * @file
  * ratecontrol header.
  */
 
 #include <stdio.h>
 #include <stdint.h>
-#include "eval.h"
+#include "libavutil/eval.h"
 
 typedef struct Predictor{
     double coeff;
@@ -84,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;