annotate libmpcodecs/vf_hue.c @ 32282:606e4157cd4c

Split alloc and init of context so that parameters can be set in the context instead of requireing being passed through function parameters. This also makes sws work with AVOptions.
author michael
date Sun, 26 Sep 2010 19:33:57 +0000
parents 4d15378da04a
children 8fa2f43cb760
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
30421
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
1 /*
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
2 * This file is part of MPlayer.
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
3 *
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
4 * MPlayer is free software; you can redistribute it and/or modify
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
5 * it under the terms of the GNU General Public License as published by
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
6 * the Free Software Foundation; either version 2 of the License, or
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
7 * (at your option) any later version.
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
8 *
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
9 * MPlayer is distributed in the hope that it will be useful,
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
12 * GNU General Public License for more details.
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
13 *
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
14 * You should have received a copy of the GNU General Public License along
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
17 */
bbb6ebec87a0 Add missing license headers to all files in the libmpcodecs directory.
diego
parents: 29903
diff changeset
18
11249
michael
parents:
diff changeset
19 #include <stdio.h>
michael
parents:
diff changeset
20 #include <stdlib.h>
michael
parents:
diff changeset
21 #include <string.h>
michael
parents:
diff changeset
22 #include <inttypes.h>
michael
parents:
diff changeset
23 #include <math.h>
michael
parents:
diff changeset
24
17012
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 16305
diff changeset
25 #include "config.h"
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 16305
diff changeset
26 #include "mp_msg.h"
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 16305
diff changeset
27 #include "cpudetect.h"
11249
michael
parents:
diff changeset
28
michael
parents:
diff changeset
29 #include "img_format.h"
michael
parents:
diff changeset
30 #include "mp_image.h"
michael
parents:
diff changeset
31 #include "vf.h"
michael
parents:
diff changeset
32
17012
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 16305
diff changeset
33 #include "libvo/video_out.h"
11249
michael
parents:
diff changeset
34
michael
parents:
diff changeset
35 #include "m_option.h"
michael
parents:
diff changeset
36 #include "m_struct.h"
michael
parents:
diff changeset
37
michael
parents:
diff changeset
38 static struct vf_priv_s {
michael
parents:
diff changeset
39 uint8_t *buf[2];
michael
parents:
diff changeset
40 float hue;
michael
parents:
diff changeset
41 float saturation;
22027
0b262e00bc99 Mark m_struct_t defaults as const
reimar
parents: 17906
diff changeset
42 } const vf_priv_dflt = {
11249
michael
parents:
diff changeset
43 {NULL, NULL},
michael
parents:
diff changeset
44 0.0,
michael
parents:
diff changeset
45 1.0,
michael
parents:
diff changeset
46 };
michael
parents:
diff changeset
47
michael
parents:
diff changeset
48 static void process_C(uint8_t *udst, uint8_t *vdst, uint8_t *usrc, uint8_t *vsrc, int dststride, int srcstride,
michael
parents:
diff changeset
49 int w, int h, float hue, float sat)
michael
parents:
diff changeset
50 {
michael
parents:
diff changeset
51 int i;
michael
parents:
diff changeset
52 const int s= rint(sin(hue) * (1<<16) * sat);
michael
parents:
diff changeset
53 const int c= rint(cos(hue) * (1<<16) * sat);
michael
parents:
diff changeset
54
michael
parents:
diff changeset
55 while (h--) {
michael
parents:
diff changeset
56 for (i = 0; i<w; i++)
michael
parents:
diff changeset
57 {
michael
parents:
diff changeset
58 const int u= usrc[i] - 128;
michael
parents:
diff changeset
59 const int v= vsrc[i] - 128;
michael
parents:
diff changeset
60 int new_u= (c*u - s*v + (1<<15) + (128<<16))>>16;
michael
parents:
diff changeset
61 int new_v= (s*u + c*v + (1<<15) + (128<<16))>>16;
michael
parents:
diff changeset
62 if(new_u & 768) new_u= (-new_u)>>31;
michael
parents:
diff changeset
63 if(new_v & 768) new_v= (-new_v)>>31;
michael
parents:
diff changeset
64 udst[i]= new_u;
michael
parents:
diff changeset
65 vdst[i]= new_v;
michael
parents:
diff changeset
66 }
michael
parents:
diff changeset
67 usrc += srcstride;
michael
parents:
diff changeset
68 vsrc += srcstride;
michael
parents:
diff changeset
69 udst += dststride;
michael
parents:
diff changeset
70 vdst += dststride;
michael
parents:
diff changeset
71 }
michael
parents:
diff changeset
72 }
michael
parents:
diff changeset
73
michael
parents:
diff changeset
74 static void (*process)(uint8_t *udst, uint8_t *vdst, uint8_t *usrc, uint8_t *vsrc, int dststride, int srcstride,
michael
parents:
diff changeset
75 int w, int h, float hue, float sat);
michael
parents:
diff changeset
76
michael
parents:
diff changeset
77 /* FIXME: add packed yuv version of process */
michael
parents:
diff changeset
78
30642
a972c1a4a012 cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents: 30638
diff changeset
79 static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts)
11249
michael
parents:
diff changeset
80 {
michael
parents:
diff changeset
81 mp_image_t *dmpi;
michael
parents:
diff changeset
82
michael
parents:
diff changeset
83 dmpi=vf_get_image(vf->next, mpi->imgfmt,
michael
parents:
diff changeset
84 MP_IMGTYPE_EXPORT, 0,
michael
parents:
diff changeset
85 mpi->w, mpi->h);
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28628
diff changeset
86
11249
michael
parents:
diff changeset
87 dmpi->planes[0] = mpi->planes[0];
michael
parents:
diff changeset
88 dmpi->stride[0] = mpi->stride[0];
michael
parents:
diff changeset
89 dmpi->stride[1] = mpi->stride[1];
michael
parents:
diff changeset
90 dmpi->stride[2] = mpi->stride[2];
michael
parents:
diff changeset
91
michael
parents:
diff changeset
92 if (!vf->priv->buf[0]){
michael
parents:
diff changeset
93 vf->priv->buf[0] = malloc(mpi->stride[1]*mpi->h >> mpi->chroma_y_shift);
michael
parents:
diff changeset
94 vf->priv->buf[1] = malloc(mpi->stride[2]*mpi->h >> mpi->chroma_y_shift);
michael
parents:
diff changeset
95 }
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28628
diff changeset
96
13232
4b7b0cb1d6f3 hue filter bugfix by ("James Crowson" <jbcrowso at ncsu dot edu>)
michael
parents: 11306
diff changeset
97 if (vf->priv->hue == 0 && vf->priv->saturation == 1){
11249
michael
parents:
diff changeset
98 dmpi->planes[1] = mpi->planes[1];
michael
parents:
diff changeset
99 dmpi->planes[2] = mpi->planes[2];
michael
parents:
diff changeset
100 }else {
michael
parents:
diff changeset
101 dmpi->planes[1] = vf->priv->buf[0];
michael
parents:
diff changeset
102 dmpi->planes[2] = vf->priv->buf[1];
michael
parents:
diff changeset
103 process(dmpi->planes[1], dmpi->planes[2],
michael
parents:
diff changeset
104 mpi->planes[1], mpi->planes[2],
michael
parents:
diff changeset
105 dmpi->stride[1],mpi->stride[1],
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28628
diff changeset
106 mpi->w>> mpi->chroma_x_shift, mpi->h>> mpi->chroma_y_shift,
11249
michael
parents:
diff changeset
107 vf->priv->hue, vf->priv->saturation);
michael
parents:
diff changeset
108 }
michael
parents:
diff changeset
109
17906
20aca9baf5d8 passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents: 17012
diff changeset
110 return vf_next_put_image(vf,dmpi, pts);
11249
michael
parents:
diff changeset
111 }
michael
parents:
diff changeset
112
30642
a972c1a4a012 cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents: 30638
diff changeset
113 static int control(struct vf_instance *vf, int request, void* data)
11249
michael
parents:
diff changeset
114 {
michael
parents:
diff changeset
115 vf_equalizer_t *eq;
michael
parents:
diff changeset
116
michael
parents:
diff changeset
117 switch (request) {
michael
parents:
diff changeset
118 case VFCTRL_SET_EQUALIZER:
michael
parents:
diff changeset
119 eq = data;
michael
parents:
diff changeset
120 if (!strcmp(eq->item,"hue")) {
michael
parents:
diff changeset
121 vf->priv->hue = eq->value * M_PI / 100;
michael
parents:
diff changeset
122 return CONTROL_TRUE;
michael
parents:
diff changeset
123 } else if (!strcmp(eq->item,"saturation")) {
16305
514353affc6e Wrong scale conversion from VFCTRL_SET_EQUALIZER, priv->saturation should
reimar
parents: 14715
diff changeset
124 vf->priv->saturation = (eq->value + 100)/100.0;
11249
michael
parents:
diff changeset
125 return CONTROL_TRUE;
michael
parents:
diff changeset
126 }
michael
parents:
diff changeset
127 break;
michael
parents:
diff changeset
128 case VFCTRL_GET_EQUALIZER:
michael
parents:
diff changeset
129 eq = data;
michael
parents:
diff changeset
130 if (!strcmp(eq->item,"hue")) {
michael
parents:
diff changeset
131 eq->value = rint(vf->priv->hue *100 / M_PI);
michael
parents:
diff changeset
132 return CONTROL_TRUE;
michael
parents:
diff changeset
133 }else if (!strcmp(eq->item,"saturation")) {
michael
parents:
diff changeset
134 eq->value = rint(vf->priv->saturation*100 - 100);
michael
parents:
diff changeset
135 return CONTROL_TRUE;
michael
parents:
diff changeset
136 }
michael
parents:
diff changeset
137 break;
michael
parents:
diff changeset
138 }
michael
parents:
diff changeset
139 return vf_next_control(vf, request, data);
michael
parents:
diff changeset
140 }
michael
parents:
diff changeset
141
30642
a972c1a4a012 cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents: 30638
diff changeset
142 static int query_format(struct vf_instance *vf, unsigned int fmt)
11249
michael
parents:
diff changeset
143 {
michael
parents:
diff changeset
144 switch (fmt) {
michael
parents:
diff changeset
145 case IMGFMT_YVU9:
michael
parents:
diff changeset
146 case IMGFMT_IF09:
michael
parents:
diff changeset
147 case IMGFMT_YV12:
michael
parents:
diff changeset
148 case IMGFMT_I420:
michael
parents:
diff changeset
149 case IMGFMT_IYUV:
michael
parents:
diff changeset
150 case IMGFMT_CLPL:
michael
parents:
diff changeset
151 case IMGFMT_444P:
michael
parents:
diff changeset
152 case IMGFMT_422P:
michael
parents:
diff changeset
153 case IMGFMT_411P:
michael
parents:
diff changeset
154 return vf_next_query_format(vf, fmt);
michael
parents:
diff changeset
155 }
michael
parents:
diff changeset
156 return 0;
michael
parents:
diff changeset
157 }
michael
parents:
diff changeset
158
30642
a972c1a4a012 cosmetics: Rename struct vf_instance_s --> vf_instance.
diego
parents: 30638
diff changeset
159 static void uninit(struct vf_instance *vf)
11249
michael
parents:
diff changeset
160 {
michael
parents:
diff changeset
161 if (vf->priv->buf[0]) free(vf->priv->buf[0]);
michael
parents:
diff changeset
162 if (vf->priv->buf[1]) free(vf->priv->buf[1]);
michael
parents:
diff changeset
163 free(vf->priv);
michael
parents:
diff changeset
164 }
michael
parents:
diff changeset
165
30638
a7b908875c14 Rename open() vf initialization function to vf_open().
diego
parents: 30633
diff changeset
166 static int vf_open(vf_instance_t *vf, char *args)
11249
michael
parents:
diff changeset
167 {
michael
parents:
diff changeset
168 vf->control=control;
michael
parents:
diff changeset
169 vf->query_format=query_format;
michael
parents:
diff changeset
170 vf->put_image=put_image;
michael
parents:
diff changeset
171 vf->uninit=uninit;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 28628
diff changeset
172
11249
michael
parents:
diff changeset
173 vf->priv->hue *= M_PI / 180.0;
michael
parents:
diff changeset
174
michael
parents:
diff changeset
175 process = process_C;
michael
parents:
diff changeset
176 return 1;
michael
parents:
diff changeset
177 }
michael
parents:
diff changeset
178
michael
parents:
diff changeset
179 #define ST_OFF(f) M_ST_OFF(struct vf_priv_s,f)
30707
4d15378da04a Mark vf_opts/vf_opts_fields structures as const.
diego
parents: 30642
diff changeset
180 static const m_option_t vf_opts_fields[] = {
11249
michael
parents:
diff changeset
181 {"hue", ST_OFF(hue), CONF_TYPE_FLOAT, M_OPT_RANGE,-180.0 ,180.0, NULL},
michael
parents:
diff changeset
182 {"saturation", ST_OFF(saturation), CONF_TYPE_FLOAT, M_OPT_RANGE,-10.0 ,10.0, NULL},
michael
parents:
diff changeset
183 { NULL, NULL, 0, 0, 0, 0, NULL }
michael
parents:
diff changeset
184 };
michael
parents:
diff changeset
185
30707
4d15378da04a Mark vf_opts/vf_opts_fields structures as const.
diego
parents: 30642
diff changeset
186 static const m_struct_t vf_opts = {
11249
michael
parents:
diff changeset
187 "hue",
michael
parents:
diff changeset
188 sizeof(struct vf_priv_s),
michael
parents:
diff changeset
189 &vf_priv_dflt,
michael
parents:
diff changeset
190 vf_opts_fields
michael
parents:
diff changeset
191 };
michael
parents:
diff changeset
192
25221
00fff9a3b735 Make all vf_info_t structs const
reimar
parents: 22027
diff changeset
193 const vf_info_t vf_info_hue = {
11249
michael
parents:
diff changeset
194 "hue changer",
michael
parents:
diff changeset
195 "hue",
michael
parents:
diff changeset
196 "Michael Niedermayer",
michael
parents:
diff changeset
197 "",
30638
a7b908875c14 Rename open() vf initialization function to vf_open().
diego
parents: 30633
diff changeset
198 vf_open,
11249
michael
parents:
diff changeset
199 &vf_opts
michael
parents:
diff changeset
200 };