2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #include "cpudetect.h"
28 #include "img_format.h"
32 #include "libvo/video_out.h"
37 static struct vf_priv_s
{
41 } const vf_priv_dflt
= {
48 static void process_MMX(unsigned char *dest
, int dstride
, unsigned char *src
, int sstride
,
49 int w
, int h
, int brightness
, int contrast
)
53 int dstep
= dstride
-w
;
54 int sstep
= sstride
-w
;
58 contrast
= ((contrast
+100)*256*16)/100;
59 brightness
= ((brightness
+100)*511)/200-128 - contrast
/32;
61 brvec
[0] = brvec
[1] = brvec
[2] = brvec
[3] = brightness
;
62 contvec
[0] = contvec
[1] = contvec
[2] = contvec
[3] = contrast
;
66 "movq (%5), %%mm3 \n\t"
67 "movq (%6), %%mm4 \n\t"
68 "pxor %%mm0, %%mm0 \n\t"
72 "movq (%0), %%mm1 \n\t"
73 "movq (%0), %%mm2 \n\t"
74 "punpcklbw %%mm0, %%mm1 \n\t"
75 "punpckhbw %%mm0, %%mm2 \n\t"
76 "psllw $4, %%mm1 \n\t"
77 "psllw $4, %%mm2 \n\t"
78 "pmulhw %%mm4, %%mm1 \n\t"
79 "pmulhw %%mm4, %%mm2 \n\t"
80 "paddw %%mm3, %%mm1 \n\t"
81 "paddw %%mm3, %%mm2 \n\t"
82 "packuswb %%mm2, %%mm1 \n\t"
84 "movq %%mm1, (%1) \n\t"
88 : "=r" (src
), "=r" (dest
)
89 : "0" (src
), "1" (dest
), "r" (w
>>3), "r" (brvec
), "r" (contvec
)
95 pel
= ((*src
++* contrast
)>>12) + brightness
;
96 if(pel
&768) pel
= (-pel
)>>31;
103 __asm__
volatile ( "emms \n\t" ::: "memory" );
107 static void process_C(unsigned char *dest
, int dstride
, unsigned char *src
, int sstride
,
108 int w
, int h
, int brightness
, int contrast
)
112 int dstep
= dstride
-w
;
113 int sstep
= sstride
-w
;
115 contrast
= ((contrast
+100)*256*256)/100;
116 brightness
= ((brightness
+100)*511)/200-128 - contrast
/512;
121 pel
= ((*src
++* contrast
)>>16) + brightness
;
122 if(pel
&768) pel
= (-pel
)>>31;
130 static void (*process
)(unsigned char *dest
, int dstride
, unsigned char *src
, int sstride
,
131 int w
, int h
, int brightness
, int contrast
);
133 /* FIXME: add packed yuv version of process */
135 static int put_image(struct vf_instance
*vf
, mp_image_t
*mpi
, double pts
)
139 dmpi
=vf_get_image(vf
->next
, mpi
->imgfmt
,
140 MP_IMGTYPE_EXPORT
, 0,
143 dmpi
->stride
[0] = mpi
->stride
[0];
144 dmpi
->planes
[1] = mpi
->planes
[1];
145 dmpi
->planes
[2] = mpi
->planes
[2];
146 dmpi
->stride
[1] = mpi
->stride
[1];
147 dmpi
->stride
[2] = mpi
->stride
[2];
149 if (!vf
->priv
->buf
) vf
->priv
->buf
= malloc(mpi
->stride
[0]*mpi
->h
);
151 if ((vf
->priv
->brightness
== 0) && (vf
->priv
->contrast
== 0))
152 dmpi
->planes
[0] = mpi
->planes
[0];
154 dmpi
->planes
[0] = vf
->priv
->buf
;
155 process(dmpi
->planes
[0], dmpi
->stride
[0],
156 mpi
->planes
[0], mpi
->stride
[0],
157 mpi
->w
, mpi
->h
, vf
->priv
->brightness
,
161 return vf_next_put_image(vf
,dmpi
, pts
);
164 static int control(struct vf_instance
*vf
, int request
, void* data
)
169 case VFCTRL_SET_EQUALIZER
:
171 if (!strcmp(eq
->item
,"brightness")) {
172 vf
->priv
->brightness
= eq
->value
;
175 else if (!strcmp(eq
->item
,"contrast")) {
176 vf
->priv
->contrast
= eq
->value
;
180 case VFCTRL_GET_EQUALIZER
:
182 if (!strcmp(eq
->item
,"brightness")) {
183 eq
->value
= vf
->priv
->brightness
;
186 else if (!strcmp(eq
->item
,"contrast")) {
187 eq
->value
= vf
->priv
->contrast
;
192 return vf_next_control(vf
, request
, data
);
195 static int query_format(struct vf_instance
*vf
, unsigned int fmt
)
211 return vf_next_query_format(vf
, fmt
);
216 static void uninit(struct vf_instance
*vf
)
218 if (vf
->priv
->buf
) free(vf
->priv
->buf
);
222 static int vf_open(vf_instance_t
*vf
, char *args
)
225 vf
->query_format
=query_format
;
226 vf
->put_image
=put_image
;
231 if(gCpuCaps
.hasMMX
) process
= process_MMX
;
237 #define ST_OFF(f) M_ST_OFF(struct vf_priv_s,f)
238 static const m_option_t vf_opts_fields
[] = {
239 {"brightness", ST_OFF(brightness
), CONF_TYPE_INT
, M_OPT_RANGE
,-100 ,100, NULL
},
240 {"contrast", ST_OFF(contrast
), CONF_TYPE_INT
, M_OPT_RANGE
,-100 ,100, NULL
},
241 { NULL
, NULL
, 0, 0, 0, 0, NULL
}
244 static const m_struct_t vf_opts
= {
246 sizeof(struct vf_priv_s
),
251 const vf_info_t vf_info_eq
= {
252 "soft video equalizer",