annotate libmpcodecs/vf_geq.c @ 33672:e576232a39d5

Prevent balance from hopping. Only recalculate the balance if the balance has changed, not if just the volume has changed. Because (at least with my soundcard) not all volume values can be stored, but seem to be mapped onto a discrete value set, recalculation the balance from the volume isn't accurate enough.
author ib
date Tue, 28 Jun 2011 18:16:06 +0000
parents d676ffcbc45f
children d206960484fe
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
1 /*
26727
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
2 * Copyright (C) 2006 Michael Niedermayer <michaelni@gmx.at>
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
3 *
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
4 * This file is part of MPlayer.
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
5 *
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
6 * MPlayer is free software; you can redistribute it and/or modify
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
7 * it under the terms of the GNU General Public License as published by
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
8 * the Free Software Foundation; either version 2 of the License, or
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
9 * (at your option) any later version.
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
10 *
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
11 * MPlayer is distributed in the hope that it will be useful,
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
14 * GNU General Public License for more details.
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
15 *
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
16 * You should have received a copy of the GNU General Public License along
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
17 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
82601a38e2a7 Use standard license headers.
diego
parents: 25221
diff changeset
19 */
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
20
5f216140e72b generic equation filter
michael
parents:
diff changeset
21 #include <stdio.h>
5f216140e72b generic equation filter
michael
parents:
diff changeset
22 #include <stdlib.h>
5f216140e72b generic equation filter
michael
parents:
diff changeset
23 #include <string.h>
5f216140e72b generic equation filter
michael
parents:
diff changeset
24 #include <math.h>
5f216140e72b generic equation filter
michael
parents:
diff changeset
25 #include <inttypes.h>
5f216140e72b generic equation filter
michael
parents:
diff changeset
26
5f216140e72b generic equation filter
michael
parents:
diff changeset
27 #include "config.h"
5f216140e72b generic equation filter
michael
parents:
diff changeset
28
5f216140e72b generic equation filter
michael
parents:
diff changeset
29 #include "mp_msg.h"
5f216140e72b generic equation filter
michael
parents:
diff changeset
30
24738
45189040161d Reorder #includes to get rid of the FIXME
zuxy
parents: 24737
diff changeset
31 #include "img_format.h"
45189040161d Reorder #includes to get rid of the FIXME
zuxy
parents: 24737
diff changeset
32 #include "mp_image.h"
45189040161d Reorder #includes to get rid of the FIXME
zuxy
parents: 24737
diff changeset
33 #include "vf.h"
45189040161d Reorder #includes to get rid of the FIXME
zuxy
parents: 24737
diff changeset
34
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
35 #include "libavcodec/avcodec.h"
31256
0d03e9c53d26 Fix compilation after FFmpeg r23485.
cehoyos
parents: 31233
diff changeset
36 #include "libavutil/eval.h"
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
37
5f216140e72b generic equation filter
michael
parents:
diff changeset
38 struct vf_priv_s {
30987
e1483ae3d93c Fix build due to FFmpeg r22833 change (typedef rename).
iive
parents: 30642
diff changeset
39 AVExpr * e[3];
20456
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
40 int framenum;
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
41 mp_image_t *mpi;
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
42 };
5f216140e72b generic equation filter
michael
parents:
diff changeset
43
30642
a972c1a4a012 cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents: 30638
diff changeset
44 static int config(struct vf_instance *vf,
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
45 int width, int height, int d_width, int d_height,
20456
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
46 unsigned int flags, unsigned int outfmt){
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
47 return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt);
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
48 }
5f216140e72b generic equation filter
michael
parents:
diff changeset
49
30642
a972c1a4a012 cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents: 30638
diff changeset
50 static inline double getpix(struct vf_instance *vf, double x, double y, int plane){
20270
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
51 int xi, yi;
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
52 mp_image_t *mpi= vf->priv->mpi;
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
53 int stride= mpi->stride[plane];
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
54 uint8_t *src= mpi->planes[plane];
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
55 xi=x= FFMIN(FFMAX(x, 0), (mpi->w >> (plane ? mpi->chroma_x_shift : 0))-1);
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
56 yi=y= FFMIN(FFMAX(y, 0), (mpi->h >> (plane ? mpi->chroma_y_shift : 0))-1);
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
57
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
58 x-=xi;
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
59 y-=yi;
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
60
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
61 return
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
62 (1-y)*((1-x)*src[xi + yi * stride] + x*src[xi + 1 + yi * stride])
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
63 + y *((1-x)*src[xi + (yi+1) * stride] + x*src[xi + 1 + (yi+1) * stride]);
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
64 }
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
65
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
66 //FIXME cubic interpolate
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
67 //FIXME keep the last few frames
31543
59a6592b57b7 Fix function prototypes to match the required type.
reimar
parents: 31256
diff changeset
68 static double lum(void *vf, double x, double y){
20270
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
69 return getpix(vf, x, y, 0);
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
70 }
5f216140e72b generic equation filter
michael
parents:
diff changeset
71
31543
59a6592b57b7 Fix function prototypes to match the required type.
reimar
parents: 31256
diff changeset
72 static double cb(void *vf, double x, double y){
20270
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
73 return getpix(vf, x, y, 1);
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
74 }
5f216140e72b generic equation filter
michael
parents:
diff changeset
75
31543
59a6592b57b7 Fix function prototypes to match the required type.
reimar
parents: 31256
diff changeset
76 static double cr(void *vf, double x, double y){
20270
eaddc65c500a bilinear interpolation
michael
parents: 20268
diff changeset
77 return getpix(vf, x, y, 2);
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
78 }
5f216140e72b generic equation filter
michael
parents:
diff changeset
79
30642
a972c1a4a012 cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents: 30638
diff changeset
80 static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts){
20456
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
81 mp_image_t *dmpi;
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
82 int x,y, plane;
20455
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
83
20456
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
84 if(!(mpi->flags&MP_IMGFLAG_DIRECT)){
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
85 // no DR, so get a new image! hope we'll get DR buffer:
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
86 vf->dmpi=vf_get_image(vf->next,mpi->imgfmt, MP_IMGTYPE_TEMP,
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
87 MP_IMGFLAG_ACCEPT_STRIDE|MP_IMGFLAG_PREFER_ALIGNED_STRIDE,
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
88 mpi->w,mpi->h);
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
89 }
20455
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
90
20456
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
91 dmpi= vf->dmpi;
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
92 vf->priv->mpi= mpi;
20455
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
93
20456
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
94 vf_clone_mpi_attributes(dmpi, mpi);
20455
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
95
20456
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
96 for(plane=0; plane<3; plane++){
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
97 int w= mpi->w >> (plane ? mpi->chroma_x_shift : 0);
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
98 int h= mpi->h >> (plane ? mpi->chroma_y_shift : 0);
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
99 uint8_t *dst = dmpi->planes[plane];
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
100 int dst_stride= dmpi->stride[plane];
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
101 double const_values[]={
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
102 M_PI,
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
103 M_E,
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
104 0,
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
105 0,
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
106 w,
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
107 h,
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
108 vf->priv->framenum,
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
109 w/(double)mpi->w,
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
110 h/(double)mpi->h,
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
111 0
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
112 };
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
113 if (!vf->priv->e[plane]) continue;
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
114 for(y=0; y<h; y++){
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
115 const_values[3]=y;
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
116 for(x=0; x<w; x++){
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
117 const_values[2]=x;
33183
d676ffcbc45f vf_geq: Fix FFmpeg API usage; eliminates some deprecation warnings.
diego
parents: 33173
diff changeset
118 dst[x + y * dst_stride] = av_expr_eval(vf->priv->e[plane],
30989
686241d65b86 Fix build after FFmpeg symbol rename:
diego
parents: 30987
diff changeset
119 const_values, vf);
20455
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
120 }
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
121 }
20456
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
122 }
20455
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
123
20456
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
124 vf->priv->framenum++;
20455
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
125
20456
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
126 return vf_next_put_image(vf,dmpi, pts);
20455
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
127 }
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
128
30642
a972c1a4a012 cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents: 30638
diff changeset
129 static void uninit(struct vf_instance *vf){
20456
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
130 av_free(vf->priv);
52b0d09d347a cosmetic, reindentation, tab removal
ods15
parents: 20455
diff changeset
131 vf->priv=NULL;
20455
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
132 }
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
133
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
134 //===========================================================================//
30638
a7b908875c14 Rename open() vf initialization function to vf_open().
diego
parents: 27694
diff changeset
135 static int vf_open(vf_instance_t *vf, char *args){
20455
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
136 char eq[3][2000] = { { 0 }, { 0 }, { 0 } };
31233
01fdbb0aaa5c Fix compilation after FFmpeg r23402.
cehoyos
parents: 31130
diff changeset
137 int plane, res;
20455
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
138
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
139 vf->config=config;
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
140 vf->put_image=put_image;
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
141 // vf->get_image=get_image;
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
142 vf->uninit=uninit;
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
143 vf->priv=av_malloc(sizeof(struct vf_priv_s));
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
144 memset(vf->priv, 0, sizeof(struct vf_priv_s));
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
145
20466
a5d299e877b2 make vf_geq read whitespace in equation param
ods15
parents: 20457
diff changeset
146 if (args) sscanf(args, "%1999[^:]:%1999[^:]:%1999[^:]", eq[0], eq[1], eq[2]);
20455
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
147
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
148 if (!eq[1][0]) strncpy(eq[1], eq[0], sizeof(eq[0])-1);
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
149 if (!eq[2][0]) strncpy(eq[2], eq[1], sizeof(eq[0])-1);
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
150
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
151 for(plane=0; plane<3; plane++){
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
152 static const char *const_names[]={
5f216140e72b generic equation filter
michael
parents:
diff changeset
153 "PI",
5f216140e72b generic equation filter
michael
parents:
diff changeset
154 "E",
5f216140e72b generic equation filter
michael
parents:
diff changeset
155 "X",
5f216140e72b generic equation filter
michael
parents:
diff changeset
156 "Y",
5f216140e72b generic equation filter
michael
parents:
diff changeset
157 "W",
5f216140e72b generic equation filter
michael
parents:
diff changeset
158 "H",
5f216140e72b generic equation filter
michael
parents:
diff changeset
159 "N",
5f216140e72b generic equation filter
michael
parents:
diff changeset
160 "SW",
5f216140e72b generic equation filter
michael
parents:
diff changeset
161 "SH",
5f216140e72b generic equation filter
michael
parents:
diff changeset
162 NULL
5f216140e72b generic equation filter
michael
parents:
diff changeset
163 };
5f216140e72b generic equation filter
michael
parents:
diff changeset
164 static const char *func2_names[]={
5f216140e72b generic equation filter
michael
parents:
diff changeset
165 "lum",
5f216140e72b generic equation filter
michael
parents:
diff changeset
166 "cb",
5f216140e72b generic equation filter
michael
parents:
diff changeset
167 "cr",
5f216140e72b generic equation filter
michael
parents:
diff changeset
168 "p",
5f216140e72b generic equation filter
michael
parents:
diff changeset
169 NULL
5f216140e72b generic equation filter
michael
parents:
diff changeset
170 };
20455
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
171 double (*func2[])(void *, double, double)={
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
172 lum,
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
173 cb,
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
174 cr,
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
175 plane==0 ? lum : (plane==1 ? cb : cr),
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
176 NULL
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
177 };
33183
d676ffcbc45f vf_geq: Fix FFmpeg API usage; eliminates some deprecation warnings.
diego
parents: 33173
diff changeset
178 res = av_expr_parse(&vf->priv->e[plane], eq[plane], const_names, NULL, NULL, func2_names, func2, 0, NULL);
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
179
31233
01fdbb0aaa5c Fix compilation after FFmpeg r23402.
cehoyos
parents: 31130
diff changeset
180 if (res < 0) {
31130
d1f5069bef25 Fix compilation broken by FFmpeg-r23201 that changed the api of error logging.
iive
parents: 30991
diff changeset
181 mp_msg(MSGT_VFILTER, MSGL_ERR, "geq: error loading equation `%s'\n", eq[plane]);
d1f5069bef25 Fix compilation broken by FFmpeg-r23201 that changed the api of error logging.
iive
parents: 30991
diff changeset
182 return 0;
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
183 }
20455
e36737b5ec2f update vf_geq to new ff_eval API
ods15
parents: 20270
diff changeset
184 }
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
185
5f216140e72b generic equation filter
michael
parents:
diff changeset
186 return 1;
5f216140e72b generic equation filter
michael
parents:
diff changeset
187 }
5f216140e72b generic equation filter
michael
parents:
diff changeset
188
25221
00fff9a3b735 Make all vf_info_t structs const
reimar
parents: 24975
diff changeset
189 const vf_info_t vf_info_geq = {
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
190 "generic equation filter",
5f216140e72b generic equation filter
michael
parents:
diff changeset
191 "geq",
5f216140e72b generic equation filter
michael
parents:
diff changeset
192 "Michael Niedermayer",
5f216140e72b generic equation filter
michael
parents:
diff changeset
193 "",
30638
a7b908875c14 Rename open() vf initialization function to vf_open().
diego
parents: 27694
diff changeset
194 vf_open,
20266
5f216140e72b generic equation filter
michael
parents:
diff changeset
195 NULL
5f216140e72b generic equation filter
michael
parents:
diff changeset
196 };