[MPlayer-cvslog] r31322 - in trunk/libmpcodecs: vf_geq.c vf_qp.c
cehoyos
subversion at mplayerhq.hu
Sat Jun 5 15:44:20 CEST 2010
Author: cehoyos
Date: Sat Jun 5 15:44:20 2010
New Revision: 31322
Log:
Fix compilation after FFmpeg r23485.
Modified:
trunk/libmpcodecs/vf_geq.c
trunk/libmpcodecs/vf_qp.c
Modified: trunk/libmpcodecs/vf_geq.c
==============================================================================
--- trunk/libmpcodecs/vf_geq.c Sat Jun 5 13:38:19 2010 (r31321)
+++ trunk/libmpcodecs/vf_geq.c Sat Jun 5 15:44:20 2010 (r31322)
@@ -34,7 +34,7 @@
#include "vf.h"
#include "libavcodec/avcodec.h"
-#include "libavcodec/eval.h"
+#include "libavutil/eval.h"
struct vf_priv_s {
AVExpr * e[3];
@@ -116,7 +116,7 @@ static int put_image(struct vf_instance
const_values[3]=y;
for(x=0; x<w; x++){
const_values[2]=x;
- dst[x + y * dst_stride] = ff_eval_expr(vf->priv->e[plane],
+ dst[x + y * dst_stride] = av_eval_expr(vf->priv->e[plane],
const_values, vf);
}
}
@@ -178,7 +178,7 @@ static int vf_open(vf_instance_t *vf, ch
plane==0 ? lum : (plane==1 ? cb : cr),
NULL
};
- res = ff_parse_expr(&vf->priv->e[plane], eq[plane], const_names, NULL, NULL, func2_names, func2, 0, NULL);
+ res = av_parse_expr(&vf->priv->e[plane], eq[plane], const_names, NULL, NULL, func2_names, func2, 0, NULL);
if (res < 0) {
mp_msg(MSGT_VFILTER, MSGL_ERR, "geq: error loading equation `%s'\n", eq[plane]);
Modified: trunk/libmpcodecs/vf_qp.c
==============================================================================
--- trunk/libmpcodecs/vf_qp.c Sat Jun 5 13:38:19 2010 (r31321)
+++ trunk/libmpcodecs/vf_qp.c Sat Jun 5 15:44:20 2010 (r31322)
@@ -32,7 +32,7 @@
#include "libvo/fastmemcpy.h"
#include "libavcodec/avcodec.h"
-#include "libavcodec/eval.h"
+#include "libavutil/eval.h"
struct vf_priv_s {
@@ -69,7 +69,7 @@ static int config(struct vf_instance *vf
double temp_val;
int res;
- res= ff_parse_and_eval_expr(&temp_val, vf->priv->eq, const_names, const_values, NULL, NULL, NULL, NULL, NULL, 0, NULL);
+ res= av_parse_and_eval_expr(&temp_val, vf->priv->eq, const_names, const_values, NULL, NULL, NULL, NULL, NULL, 0, NULL);
if (res < 0){
mp_msg(MSGT_VFILTER, MSGL_ERR, "qp: Error evaluating \"%s\" \n", vf->priv->eq);
More information about the MPlayer-cvslog
mailing list