root/modules/video_filter/panoramix.c

Revision dbe20e783098fdc1a13a2a0b4206f994057fc9dc, 90.8 kB (checked in by Laurent Aimar <fenrir@videolan.org>, 3 months ago)

Clean up and more panoramix fixes.

I won't say the code is bad, we are way beyond that.

  • Property mode set to 100644
Line 
1 /*****************************************************************************
2  * panoramix.c : Wall panoramic video with edge blending plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
5  * $Id$
6  *
7  * Authors: Cedric Cocquebert <cedric.cocquebert@supelec.fr>
8  *          based on Samuel Hocevar <sam@zoy.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35 #include <vlc_vout.h>
36
37 #include "filter_common.h"
38
39 // add by cedric.cocquebert@supelec.fr
40 #define OVERLAP        2350
41 #ifdef OVERLAP
42     #include <math.h>
43     // OS CODE DEPENDENT to get display dimensions
44     #ifdef SYS_MINGW32
45         #include <windows.h>
46     #else
47         #include <X11/Xlib.h>
48     #endif
49     #define GAMMA        1
50 //  #define PACKED_YUV    1
51     #define F2(a) ((a)*(a))
52     #define F4(a,b,x) ((a)*(F2(x))+((b)*(x)))
53     #define ACCURACY 1000
54     #define RATIO_MAX 2500
55     #define CLIP_01(a) (a < 0.0 ? 0.0 : (a > 1.0 ? 1.0 : a))
56 //    #define CLIP_0A(a) (a < 0.0 ? 0.0 : (a > ACCURACY ? ACCURACY : a))
57 #endif
58
59 /*****************************************************************************
60  * Local prototypes
61  *****************************************************************************/
62 static int  Create    ( vlc_object_t * );
63 static void Destroy   ( vlc_object_t * );
64
65 static int  Init      ( vout_thread_t * );
66 static void End       ( vout_thread_t * );
67 #ifdef PACKED_YUV
68 static void RenderPackedYUV   ( vout_thread_t *, picture_t * );
69 #endif
70 static void RenderPlanarYUV   ( vout_thread_t *, picture_t * );
71 static void RenderPackedRGB   ( vout_thread_t *, picture_t * );
72
73 static void RemoveAllVout  ( vout_thread_t *p_vout );
74
75 static int  SendEvents( vlc_object_t *, char const *,
76                         vlc_value_t, vlc_value_t, void * );
77
78 /*****************************************************************************
79  * Module descriptor
80  *****************************************************************************/
81 #define COLS_TEXT N_("Number of columns")
82 #define COLS_LONGTEXT N_("Select the number of horizontal video windows in " \
83     "which to split the video")
84
85 #define ROWS_TEXT N_("Number of rows")
86 #define ROWS_LONGTEXT N_("Select the number of vertical video windows in " \
87     "which to split the video")
88
89 #define ACTIVE_TEXT N_("Active windows")
90 #define ACTIVE_LONGTEXT N_("Comma separated list of active windows, " \
91     "defaults to all")
92
93 #define CFG_PREFIX "panoramix-"
94
95 vlc_module_begin();
96     set_description( N_("Panoramix: wall with overlap video filter") );
97     set_shortname( N_("Panoramix" ));
98     set_capability( "video filter", 0 );
99     set_category( CAT_VIDEO );
100     set_subcategory( SUBCAT_VIDEO_VFILTER );
101
102     add_integer( CFG_PREFIX "cols", -1, NULL,
103                  COLS_TEXT, COLS_LONGTEXT, true );
104     add_integer( CFG_PREFIX "rows", -1, NULL,
105                  ROWS_TEXT, ROWS_LONGTEXT, true );
106
107 #ifdef OVERLAP
108 #define OFFSET_X_TEXT N_("Offset X offset (automatic compensation)")
109 #define OFFSET_X_LONGTEXT N_("Select if you want an automatic offset in horizontal (in case of misalignment due to autoratio control)")
110     add_bool( CFG_PREFIX "offset-x", 1, NULL, OFFSET_X_TEXT, OFFSET_X_LONGTEXT, true );
111
112 #define LENGTH_TEXT N_("length of the overlapping area (in %)")
113 #define LENGTH_LONGTEXT N_("Select in percent the length of the blended zone")
114     add_integer_with_range( CFG_PREFIX "bz-length", 100, 0, 100, NULL, LENGTH_TEXT, LENGTH_LONGTEXT, true );
115
116 #define HEIGHT_TEXT N_("height of the overlapping area (in %)")
117 #define HEIGHT_LONGTEXT N_("Select in percent the height of the blended zone (case of 2x2 wall)")
118     add_integer_with_range( CFG_PREFIX "bz-height", 100, 0, 100, NULL, HEIGHT_TEXT, HEIGHT_LONGTEXT, true );
119
120 #define ATTENUATION_TEXT N_("Attenuation")
121 #define ATTENUATION_LONGTEXT N_("Check this option if you want attenuate blended zone by this plug-in (if option is unchecked, attenuate is made by opengl)")
122     add_bool( CFG_PREFIX "attenuate", 1, NULL, ATTENUATION_TEXT, ATTENUATION_LONGTEXT, false );
123
124 #define BEGIN_TEXT N_("Attenuation, begin (in %)")
125 #define BEGIN_LONGTEXT N_("Select in percent the Lagrange coeff of the beginning blended zone")
126     add_integer_with_range( CFG_PREFIX "bz-begin", 0, 0, 100, NULL, BEGIN_TEXT, BEGIN_LONGTEXT, true );
127
128 #define MIDDLE_TEXT N_("Attenuation, middle (in %)")
129 #define MIDDLE_LONGTEXT N_("Select in percent the Lagrange coeff of the middle of blended zone")
130     add_integer_with_range( CFG_PREFIX "bz-middle", 50, 0, 100, NULL, MIDDLE_TEXT, MIDDLE_LONGTEXT, false );
131
132 #define END_TEXT N_("Attenuation, end (in %)")
133 #define END_LONGTEXT N_("Select in percent the Lagrange coeff of the end of blended zone")
134     add_integer_with_range( CFG_PREFIX "bz-end", 100, 0, 100, NULL, END_TEXT, END_LONGTEXT, true );
135
136 #define MIDDLE_POS_TEXT N_("middle position (in %)")
137 #define MIDDLE_POS_LONGTEXT N_("Select in percent (50 is center) the position of the middle point (Lagrange) of blended zone")
138     add_integer_with_range( CFG_PREFIX "bz-middle-pos", 50, 1, 99, NULL, MIDDLE_POS_TEXT, MIDDLE_POS_LONGTEXT, false );
139 #ifdef GAMMA
140 #define RGAMMA_TEXT N_("Gamma (Red) correction")
141 #define RGAMMA_LONGTEXT N_("Select the gamma for the correction of blended zone (Red or Y component)")
142     add_float_with_range( CFG_PREFIX "bz-gamma-red", 1, 0, 5, NULL, RGAMMA_TEXT, RGAMMA_LONGTEXT, true );
143
144 #define GGAMMA_TEXT N_("Gamma (Green) correction")
145 #define GGAMMA_LONGTEXT N_("Select the gamma for the correction of blended zone (Green or U component)")
146     add_float_with_range( CFG_PREFIX "bz-gamma-green", 1, 0, 5, NULL, GGAMMA_TEXT, GGAMMA_LONGTEXT, true );
147
148 #define BGAMMA_TEXT N_("Gamma (Blue) correction")
149 #define BGAMMA_LONGTEXT N_("Select the gamma for the correction of blended zone (Blue or V component)")
150     add_float_with_range( CFG_PREFIX "bz-gamma-blue", 1, 0, 5, NULL, BGAMMA_TEXT, BGAMMA_LONGTEXT, true );
151 #endif
152 #define RGAMMA_BC_TEXT N_("Black Crush for Red")
153 #define RGAMMA_BC_LONGTEXT N_("Select the Black Crush of blended zone (Red or Y component)")
154 #define GGAMMA_BC_TEXT N_("Black Crush for Green")
155 #define GGAMMA_BC_LONGTEXT N_("Select the Black Crush of blended zone (Green or U component)")
156 #define BGAMMA_BC_TEXT N_("Black Crush for Blue")
157 #define BGAMMA_BC_LONGTEXT N_("Select the Black Crush of blended zone (Blue or V component)")
158
159 #define RGAMMA_WC_TEXT N_("White Crush for Red")
160 #define RGAMMA_WC_LONGTEXT N_("Select the White Crush of blended zone (Red or Y component)")
161 #define GGAMMA_WC_TEXT N_("White Crush for Green")
162 #define GGAMMA_WC_LONGTEXT N_("Select the White Crush of blended zone (Green or U component)")
163 #define BGAMMA_WC_TEXT N_("White Crush for Blue")
164 #define BGAMMA_WC_LONGTEXT N_("Select the White Crush of blended zone (Blue or V component)")
165
166 #define RGAMMA_BL_TEXT N_("Black Level for Red")
167 #define RGAMMA_BL_LONGTEXT N_("Select the Black Level of blended zone (Red or Y component)")
168 #define GGAMMA_BL_TEXT N_("Black Level for Green")
169 #define GGAMMA_BL_LONGTEXT N_("Select the Black Level of blended zone (Green or U component)")
170 #define BGAMMA_BL_TEXT N_("Black Level for Blue")
171 #define BGAMMA_BL_LONGTEXT N_("Select the Black Level of blended zone (Blue or V component)")
172
173 #define RGAMMA_WL_TEXT N_("White Level for Red")
174 #define RGAMMA_WL_LONGTEXT N_("Select the White Level of blended zone (Red or Y component)")
175 #define GGAMMA_WL_TEXT N_("White Level for Green")
176 #define GGAMMA_WL_LONGTEXT N_("Select the White Level of blended zone (Green or U component)")
177 #define BGAMMA_WL_TEXT N_("White Level for Blue")
178 #define BGAMMA_WL_LONGTEXT N_("Select the White Level of blended zone (Blue or V component)")
179     add_integer_with_range( CFG_PREFIX "bz-blackcrush-red", 140, 0, 255, NULL, RGAMMA_BC_TEXT, RGAMMA_BC_LONGTEXT, true );
180     add_integer_with_range( CFG_PREFIX "bz-blackcrush-green", 140, 0, 255, NULL, GGAMMA_BC_TEXT, GGAMMA_BC_LONGTEXT, true );
181     add_integer_with_range( CFG_PREFIX "bz-blackcrush-blue", 140, 0, 255, NULL, BGAMMA_BC_TEXT, BGAMMA_BC_LONGTEXT, true );
182     add_integer_with_range( CFG_PREFIX "bz-whitecrush-red", 200, 0, 255, NULL, RGAMMA_WC_TEXT, RGAMMA_WC_LONGTEXT, true );
183     add_integer_with_range( CFG_PREFIX "bz-whitecrush-green", 200, 0, 255, NULL, GGAMMA_WC_TEXT, GGAMMA_WC_LONGTEXT, true );
184     add_integer_with_range( CFG_PREFIX "bz-whitecrush-blue", 200, 0, 255, NULL, BGAMMA_WC_TEXT, BGAMMA_WC_LONGTEXT, true );
185     add_integer_with_range( CFG_PREFIX "bz-blacklevel-red", 150, 0, 255, NULL, RGAMMA_BL_TEXT, RGAMMA_BL_LONGTEXT, true );
186     add_integer_with_range( CFG_PREFIX "bz-blacklevel-green", 150, 0, 255, NULL, GGAMMA_BL_TEXT, GGAMMA_BL_LONGTEXT, true );
187     add_integer_with_range( CFG_PREFIX "bz-blacklevel-blue", 150, 0, 255, NULL, BGAMMA_BL_TEXT, BGAMMA_BL_LONGTEXT, true );
188     add_integer_with_range( CFG_PREFIX "bz-whitelevel-red", 0, 0, 255, NULL, RGAMMA_WL_TEXT, RGAMMA_WL_LONGTEXT, true );
189     add_integer_with_range( CFG_PREFIX "bz-whitelevel-green", 0, 0, 255, NULL, GGAMMA_WL_TEXT, GGAMMA_WL_LONGTEXT, true );
190     add_integer_with_range( CFG_PREFIX "bz-whitelevel-blue", 0, 0, 255, NULL, BGAMMA_WL_TEXT, BGAMMA_WL_LONGTEXT, true );
191 #ifndef SYS_MINGW32
192 #define XINERAMA_TEXT N_("Xinerama option")
193 #define XINERAMA_LONGTEXT N_("Uncheck if you have not used xinerama")
194     add_bool( CFG_PREFIX "xinerama", 1, NULL, XINERAMA_TEXT, XINERAMA_LONGTEXT, true );
195 #endif
196 #endif
197
198     add_string( CFG_PREFIX "active", NULL, NULL, ACTIVE_TEXT, ACTIVE_LONGTEXT, true );
199
200     add_shortcut( "panoramix" );
201     set_callbacks( Create, Destroy );
202 vlc_module_end();
203
204 static const char *const ppsz_filter_options[] = {
205     "cols", "rows", "offset-x", "bz-length", "bz-height", "attenuate",
206     "bz-begin", "bz-middle", "bz-end", "bz-middle-pos", "bz-gamma-red",
207     "bz-gamma-green", "bz-gamma-blue", "bz-blackcrush-red",
208     "bz-blackcrush-green", "bz-blackcrush-blue", "bz-whitecrush-red",
209     "bz-whitecrush-green", "bz-whitecrush-blue", "bz-blacklevel-red",
210     "bz-blacklevel-green", "bz-blacklevel-blue", "bz-whitelevel-red",
211     "bz-whitelevel-green", "bz-whitelevel-blue", "xinerama", "active",
212     NULL
213 };
214
215 /*****************************************************************************
216  * vout_sys_t: Wall video output method descriptor
217  *****************************************************************************
218  * This structure is part of the video output thread descriptor.
219  * It describes the Wall specific properties of an output thread.
220  *****************************************************************************/
221 struct vout_sys_t
222 {
223 #ifdef OVERLAP
224     bool   b_autocrop;
225     bool   b_attenuate;
226     unsigned int bz_length, bz_height, bz_begin, bz_middle, bz_end, bz_middle_pos;
227     unsigned int i_ratio_max;
228     unsigned int i_ratio;
229     unsigned int a_0, a_1, a_2;
230     bool     b_has_changed;
231     int lambda[2][VOUT_MAX_PLANES][500];
232     int cstYUV[2][VOUT_MAX_PLANES][500];
233     int lambda2[2][VOUT_MAX_PLANES][500];
234     int cstYUV2[2][VOUT_MAX_PLANES][500];
235     unsigned int i_halfLength;
236     unsigned int i_halfHeight;
237     int i_offset_x;
238     int i_offset_y;
239 #ifdef GAMMA
240     float        f_gamma_red, f_gamma_green, f_gamma_blue;
241     float         f_gamma[VOUT_MAX_PLANES];
242     uint8_t         LUT[VOUT_MAX_PLANES][ACCURACY + 1][256];
243 #ifdef PACKED_YUV
244     uint8_t         LUT2[VOUT_MAX_PLANES][256][500];
245 #endif
246 #endif
247 #ifndef SYS_MINGW32
248     bool   b_xinerama;
249 #endif
250 #endif
251     int    i_col;
252     int    i_row;
253     int    i_vout;
254     struct vout_list_t
255     {
256         bool b_active;
257         int i_width;
258         int i_height;
259         vout_thread_t *p_vout;
260     } *pp_vout;
261 };
262
263
264
265 /*****************************************************************************
266  * Control: control facility for the vout (forwards to child vout)
267  *****************************************************************************/
268 static int Control( vout_thread_t *p_vout, int i_query, va_list args )
269 {
270     int i_row, i_col, i_vout = 0;
271
272     for( i_row = 0; i_row < p_vout->p_sys->i_row; i_row++ )
273     {
274         for( i_col = 0; i_col < p_vout->p_sys->i_col; i_col++ )
275         {
276             vout_vaControl( p_vout->p_sys->pp_vout[ i_vout ].p_vout,
277                             i_query, args );
278             i_vout++;
279         }
280     }
281     return VLC_SUCCESS;
282 }
283
284 /*****************************************************************************
285  * Create: allocates Wall video thread output method
286  *****************************************************************************
287  * This function allocates and initializes a Wall vout method.
288  *****************************************************************************/
289 static int Create( vlc_object_t *p_this )
290 {
291     vout_thread_t *p_vout = (vout_thread_t *)p_this;
292     char *psz_method, *psz_tmp, *psz_method_tmp;
293     int i_vout;
294
295     /* Allocate structure */
296     p_vout->p_sys = malloc( sizeof( vout_sys_t ) );
297     if( p_vout->p_sys == NULL )
298         return VLC_ENOMEM;
299
300     p_vout->pf_init = Init;
301     p_vout->pf_end = End;
302     p_vout->pf_manage = NULL;
303 /* Color Format not supported
304 // Planar Y, packed UV
305 case VLC_FOURCC('Y','M','G','A'):
306 // Packed YUV 4:2:2, U:Y:V:Y, interlaced
307 case VLC_FOURCC('I','U','Y','V'):    // packed by 2
308 // Packed YUV 2:1:1, Y:U:Y:V
309 case VLC_FOURCC('Y','2','1','1'):     // packed by 4
310 // Packed YUV Reverted
311 case VLC_FOURCC('c','y','u','v'):    // packed by 2
312 */
313     switch (p_vout->render.i_chroma)
314     {
315     // planar YUV
316         case VLC_FOURCC('I','4','4','4'):
317         case VLC_FOURCC('I','4','2','2'):
318         case VLC_FOURCC('I','4','2','0'):
319         case VLC_FOURCC('Y','V','1','2'):
320         case VLC_FOURCC('I','Y','U','V'):
321         case VLC_FOURCC('I','4','1','1'):
322         case VLC_FOURCC('I','4','1','0'):
323         case VLC_FOURCC('Y','V','U','9'):
324         case VLC_FOURCC('Y','U','V','A'):
325             p_vout->pf_render = RenderPlanarYUV;
326             break;
327     // packed RGB
328         case VLC_FOURCC('R','G','B','2'):    // packed by 1
329         case VLC_FOURCC('R','V','1','5'):    // packed by 2
330         case VLC_FOURCC('R','V','1','6'):    // packed by 2
331         case VLC_FOURCC('R','V','2','4'):    // packed by 3
332         case VLC_FOURCC('R','V','3','2'):    // packed by 4
333             p_vout->pf_render = RenderPackedRGB;
334             break;
335 #ifdef PACKED_YUV
336     // packed YUV
337         case VLC_FOURCC('Y','U','Y','2'):    // packed by 2
338         case VLC_FOURCC('Y','U','N','V'):    // packed by 2
339         case VLC_FOURCC('U','Y','V','Y'):    // packed by 2
340         case VLC_FOURCC('U','Y','N','V'):    // packed by 2
341         case VLC_FOURCC('Y','4','2','2'):    // packed by 2
342             p_vout->pf_render = RenderPackedYUV;
343             break;
344 #endif
345         default:
346             msg_Err( p_vout, "colorspace not supported by plug-in !!!");
347             free( p_vout->p_sys );
348             return VLC_ENOMEM;
349     }
350     p_vout->pf_display = NULL;
351     p_vout->pf_control = Control;
352
353     config_ChainParse( p_vout, CFG_PREFIX, ppsz_filter_options,
354                        p_vout->p_cfg );
355
356     /* Look what method was requested */
357     p_vout->p_sys->i_col = var_CreateGetInteger( p_vout, CFG_PREFIX "cols" );
358     p_vout->p_sys->i_row = var_CreateGetInteger( p_vout, CFG_PREFIX "rows" );
359
360 // OS dependent code :  Autodetect number of displays in wall
361 #ifdef SYS_MINGW32
362     if ((p_vout->p_sys->i_col < 0) || (p_vout->p_sys->i_row < 0) )
363     {
364         int nbMonitors = GetSystemMetrics(SM_CMONITORS);
365         if (nbMonitors == 1)
366         {
367             nbMonitors = 5; // 1 display => 5x1 simulation
368             p_vout->p_sys->i_col = nbMonitors;
369             p_vout->p_sys->i_row = 1;
370         }
371         else
372         {
373             p_vout->p_sys->i_col = GetSystemMetrics( SM_CXVIRTUALSCREEN ) / GetSystemMetrics( SM_CXSCREEN );
374             p_vout->p_sys->i_row = GetSystemMetrics( SM_CYVIRTUALSCREEN ) / GetSystemMetrics( SM_CYSCREEN );
375             if (p_vout->p_sys->i_col * p_vout->p_sys->i_row != nbMonitors)
376             {
377                 p_vout->p_sys->i_col = nbMonitors;
378                 p_vout->p_sys->i_row = 1;
379             }
380         }
381         var_SetInteger( p_vout, CFG_PREFIX "cols", p_vout->p_sys->i_col);
382         var_SetInteger( p_vout, CFG_PREFIX "rows", p_vout->p_sys->i_row);
383     }
384 #endif
385
386 #ifdef OVERLAP
387     p_vout->p_sys->i_offset_x = var_CreateGetBool( p_vout, CFG_PREFIX "offset-x" );
388     if (p_vout->p_sys->i_col > 2) p_vout->p_sys->i_offset_x = 0; // offset-x is used in case of 2x1 wall & autocrop
389     p_vout->p_sys->b_autocrop = !(var_CreateGetInteger( p_vout, "crop-ratio" ) == 0);
390     if (!p_vout->p_sys->b_autocrop) p_vout->p_sys->b_autocrop = var_CreateGetInteger( p_vout, "autocrop" );
391     p_vout->p_sys->b_attenuate = var_CreateGetBool( p_vout, CFG_PREFIX "attenuate");
392     p_vout->p_sys->bz_length = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-length" );
393     if (p_vout->p_sys->i_row > 1)
394         p_vout->p_sys->bz_height = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-height" );
395     else
396         p_vout->p_sys->bz_height = 100;
397     p_vout->p_sys->bz_begin = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-begin" );
398     p_vout->p_sys->bz_middle = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-middle" );
399     p_vout->p_sys->bz_end = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-end" );
400     p_vout->p_sys->bz_middle_pos = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-middle-pos" );
401     double d_p = 100.0 / p_vout->p_sys->bz_middle_pos;
402     p_vout->p_sys->i_ratio_max = var_CreateGetInteger( p_vout, "autocrop-ratio-max" ); // in crop module with autocrop ...
403     p_vout->p_sys->i_ratio = var_CreateGetInteger( p_vout, "crop-ratio" ); // in crop module with manual ratio ...
404
405     p_vout->p_sys->a_2 = d_p * p_vout->p_sys->bz_begin - (double)(d_p * d_p / (d_p - 1)) * p_vout->p_sys->bz_middle + (double)(d_p / (d_p - 1)) * p_vout->p_sys->bz_end;
406     p_vout->p_sys->a_1 = -(d_p + 1) * p_vout->p_sys->bz_begin + (double)(d_p * d_p / (d_p - 1)) * p_vout->p_sys->bz_middle - (double)(1 / (d_p - 1)) * p_vout->p_sys->bz_end;
407     p_vout->p_sys->a_0 =  p_vout->p_sys->bz_begin;
408
409 #ifdef GAMMA
410     p_vout->p_sys->f_gamma_red = var_CreateGetFloat( p_vout, CFG_PREFIX "bz-gamma-red" );
411     p_vout->p_sys->f_gamma_green = var_CreateGetFloat( p_vout, CFG_PREFIX "bz-gamma-green" );
412     p_vout->p_sys->f_gamma_blue = var_CreateGetFloat( p_vout, CFG_PREFIX "bz-gamma-blue" );
413 #endif
414 #ifndef SYS_MINGW32
415     p_vout->p_sys->b_xinerama = var_CreateGetBool( p_vout, CFG_PREFIX "xinerama" );
416 #endif
417 #else
418     p_vout->p_sys->i_col = __MAX( 1, __MIN( 15, p_vout->p_sys->i_col ) );
419     p_vout->p_sys->i_row = __MAX( 1, __MIN( 15, p_vout->p_sys->i_row ) );
420 #endif
421
422     msg_Dbg( p_vout, "opening a %i x %i wall",
423              p_vout->p_sys->i_col, p_vout->p_sys->i_row );
424
425     p_vout->p_sys->pp_vout = calloc( p_vout->p_sys->i_row *
426                                      p_vout->p_sys->i_col,
427                                      sizeof(struct vout_list_t) );
428     if( p_vout->p_sys->pp_vout == NULL )
429     {
430         free( p_vout->p_sys );
431         return VLC_ENOMEM;
432     }
433
434     psz_method_tmp =
435     psz_method = var_CreateGetNonEmptyString( p_vout, CFG_PREFIX "active" );
436
437     /* If no trailing vout are specified, take them all */
438     if( psz_method == NULL )
439     {
440         for( i_vout = p_vout->p_sys->i_row * p_vout->p_sys->i_col;
441              i_vout--; )
442         {
443             p_vout->p_sys->pp_vout[i_vout].b_active = 1;
444         }
445     }
446     /* If trailing vout are specified, activate only the requested ones */
447     else
448     {
449         for( i_vout = p_vout->p_sys->i_row * p_vout->p_sys->i_col;
450              i_vout--; )
451         {
452             p_vout->p_sys->pp_vout[i_vout].b_active = 0;
453         }
454
455         while( *psz_method )
456         {
457             psz_tmp = psz_method;
458             while( *psz_tmp && *psz_tmp != ',' )
459             {
460                 psz_tmp++;
461             }
462
463             if( *psz_tmp )
464             {
465                 *psz_tmp = '\0';
466                 i_vout = atoi( psz_method );
467                 psz_method = psz_tmp + 1;
468             }
469             else
470             {
471                 i_vout = atoi( psz_method );
472                 psz_method = psz_tmp;
473             }
474
475             if( i_vout >= 0 &&
476                 i_vout < p_vout->p_sys->i_row * p_vout->p_sys->i_col )
477             {
478                 p_vout->p_sys->pp_vout[i_vout].b_active = 1;
479             }
480         }
481     }
482
483     free( psz_method_tmp );
484
485     return VLC_SUCCESS;
486 }
487
488
489 #ifdef OVERLAP
490 /*****************************************************************************
491  * CLIP_0A: clip between 0 and ACCURACY
492  *****************************************************************************/
493 inline static int CLIP_0A( int a )
494 {
495     return (a > ACCURACY) ? ACCURACY : (a < 0) ? 0 : a;
496 }
497
498 #ifdef GAMMA
499 /*****************************************************************************
500  *  Gamma: Gamma correction
501  *****************************************************************************/
502 static double Gamma_Correction(int i_plane, float f_component, float f_BlackCrush[VOUT_MAX_PLANES], float f_WhiteCrush[VOUT_MAX_PLANES], float f_BlackLevel[VOUT_MAX_PLANES], float f_WhiteLevel[VOUT_MAX_PLANES], float f_Gamma[VOUT_MAX_PLANES])
503 {
504     float f_Input;
505
506     f_Input = (f_component * f_BlackLevel[i_plane]) / (f_BlackCrush[i_plane]) + (1.0 - f_BlackLevel[i_plane]);
507     if (f_component <= f_BlackCrush[i_plane])
508     {
509         return pow(f_Input, 1.0 / f_Gamma[i_plane]);
510     }
511     else if (f_component >= f_WhiteCrush[i_plane])
512     {
513         f_Input = (f_component * (1.0 - (f_WhiteLevel[i_plane] + 1.0)) + (f_WhiteLevel[i_plane] + 1.0) * f_WhiteCrush[i_plane] - 1.0) / (f_WhiteCrush[i_plane] - 1.0);
514         return pow(f_Input, 1.0 / f_Gamma[i_plane]);
515     }
516     else
517     {
518         return 1.0;
519     }
520 }
521
522 #ifdef PACKED_YUV
523
524 /*****************************************************************************
525  * F: Function to calculate Gamma correction
526  *****************************************************************************/
527 static uint8_t F(uint8_t i, float gamma)
528 {
529     double input = (double) i / 255.0;
530
531     // return clip(255 * pow(input, 1.0 / gamma));
532
533     if (input < 0.5)
534         return clip_uint8((255 * pow(2 * input, gamma)) / 2);
535     else
536         return clip_uint8(255 * (1 - pow(2 * (1 - input), gamma) / 2));
537 }
538 #endif
539 #endif
540
541 /*****************************************************************************
542  * AdjustHeight: ajust p_sys->i_height to have same BZ width for any ratio
543  *****************************************************************************/
544 static int AdjustHeight( vout_thread_t *p_vout )
545 {
546     bool b_fullscreen = p_vout->b_fullscreen;
547     int i_window_width = p_vout->i_window_width;
548     int i_window_height = p_vout->i_window_height;
549     double d_halfLength = 0;
550     double d_halfLength_crop;
551     double d_halfLength_calculated;
552     int    i_offset = 0;
553
554     // OS DEPENDENT CODE to get display dimensions
555     if (b_fullscreen )
556     {
557 #ifdef SYS_MINGW32
558         i_window_width  = GetSystemMetrics(SM_CXSCREEN);
559         i_window_height = GetSystemMetrics(SM_CYSCREEN);
560 #else
561         Display *p_display = XOpenDisplay( "" );
562         if (p_vout->p_sys->b_xinerama)
563         {
564             i_window_width = DisplayWidth(p_display, 0) / p_vout->p_sys->i_col;
565             i_window_height = DisplayHeight(p_display, 0) / p_vout->p_sys->i_row;
566         }
567         else
568         {
569             i_window_width = DisplayWidth(p_display, 0);
570             i_window_height = DisplayHeight(p_display, 0);
571         }
572         XCloseDisplay( p_display );
573 #endif
574         var_SetInteger( p_vout, "width", i_window_width);
575         var_SetInteger( p_vout, "height", i_window_height);
576         p_vout->i_window_width = i_window_width;
577         p_vout->i_window_height = i_window_height;
578     }
579
580     if( p_vout->p_sys->bz_length)
581         if ((!p_vout->p_sys->b_autocrop) && (!p_vout->p_sys->i_ratio))
582         {
583             if ((p_vout->p_sys->i_row > 1) || (p_vout->p_sys->i_col > 1))
584             {
585                 while ((d_halfLength <= 0) || (d_halfLength > p_vout->render.i_width / (2 * p_vout->p_sys->i_col)))
586                 {
587                     if (p_vout->p_sys->bz_length >= 50)
588                     {
589                         d_halfLength = i_window_width * p_vout->render.i_height / (2 * i_window_height * p_vout->p_sys->i_row) - p_vout->render.i_width / (2 * p_vout->p_sys->i_col);
590                     }
591                     else
592                     {
593                         d_halfLength = (p_vout->render.i_width * p_vout->p_sys->bz_length) / (100.0 * p_vout->p_sys->i_col);
594                         d_halfLength = __MAX(i_window_width * p_vout->render.i_height / (2 * i_window_height * p_vout->p_sys->i_row) - p_vout->render.i_width / (2 * p_vout->p_sys->i_col), d_halfLength);
595                     }
596                     if ((d_halfLength <= 0) || (d_halfLength > p_vout->render.i_width / (2 * p_vout->p_sys->i_col)))
597                         p_vout->p_sys->i_row--;
598                     if (p_vout->p_sys->i_row < 1 )
599                     {
600                         p_vout->p_sys->i_row = 1;
601                         break;
602                     }
603                 }
604                 p_vout->p_sys->i_halfLength = (d_halfLength + 0.5);
605                 p_vout->p_sys->bz_length = (p_vout->p_sys->i_halfLength * 100.0 * p_vout->p_sys->i_col) / p_vout->render.i_width;
606                 var_SetInteger( p_vout, "bz-length", p_vout->p_sys->bz_length);
607                 var_SetInteger( p_vout, "panoramix-rows", p_vout->p_sys->i_row);
608             }
609         }
610         else
611         {
612             d_halfLength = ((2 * (double)i_window_width - (double)(p_vout->p_sys->i_ratio_max * i_window_height) / 1000.0 ) * (double)p_vout->p_sys->bz_length) / 200.0;
613             d_halfLength_crop = d_halfLength * VOUT_ASPECT_FACTOR * (double)p_vout->output.i_width
614                         / (double)i_window_height / (double)p_vout->render.i_aspect;
615             p_vout->p_sys->i_halfLength = (d_halfLength_crop + 0.5);
616             d_halfLength_calculated = p_vout->p_sys->i_halfLength * (double)i_window_height *
617                                 (double)p_vout->render.i_aspect  /     VOUT_ASPECT_FACTOR / (double)p_vout->output.i_width;
618
619             if (!p_vout->p_sys->b_attenuate)
620             {
621                 double d_bz_length = (p_vout->p_sys->i_halfLength * p_vout->p_sys->i_col * 100.0) / p_vout->render.i_width;
622                 // F(2x) != 2F(x) in opengl module
623                 if (p_vout->p_sys->i_col == 2) d_bz_length = (100.0 * d_bz_length) / (100.0 - d_bz_length) ;
624                 var_SetInteger( p_vout, "bz-length", (int)(d_bz_length + 0.5));
625             }
626             i_offset =  (int)d_halfLength - (int)
627                         (p_vout->p_sys->i_halfLength * (double)i_window_height *
628                         (double)p_vout->render.i_aspect  /     VOUT_ASPECT_FACTOR / (double)p_vout->output.i_width);
629         }
630     else
631         p_vout->p_sys->i_halfLength = 0;
632
633     return i_offset;
634 }
635 #endif
636
637
638 /*****************************************************************************
639  * Init: initialize Wall video thread output method
640  *****************************************************************************/
641 #define VLC_XCHG( type, a, b ) do { type __tmp = (b); (b) = (a); (a) = __tmp; } while(0)
642
643 static int Init( vout_thread_t *p_vout )
644 {
645     int i_index, i_row, i_col;
646     picture_t *p_pic;
647
648     I_OUTPUTPICTURES = 0;
649
650     /* Initialize the output structure */
651     p_vout->output.i_chroma = p_vout->render.i_chroma;
652     p_vout->output.i_width  = p_vout->render.i_width;
653     p_vout->output.i_height = p_vout->render.i_height;
654     p_vout->output.i_aspect = p_vout->render.i_aspect;
655 #ifdef OVERLAP
656     p_vout->p_sys->b_has_changed = p_vout->p_sys->b_attenuate;
657     int i_video_x = var_GetInteger( p_vout, "video-x");
658     int i_video_y = var_GetInteger( p_vout, "video-y");
659 #ifdef GAMMA
660     if (p_vout->p_sys->b_attenuate)
661     {
662         int i_index2, i_plane;
663         int constantYUV[3] = {0,128,128};
664         float    f_BlackCrush[VOUT_MAX_PLANES];
665         float    f_BlackLevel[VOUT_MAX_PLANES];
666         float    f_WhiteCrush[VOUT_MAX_PLANES];
667         float    f_WhiteLevel[VOUT_MAX_PLANES];
668         p_vout->p_sys->f_gamma[0] = var_CreateGetFloat( p_vout, CFG_PREFIX "bz-gamma-red" );
669         p_vout->p_sys->f_gamma[1] = var_CreateGetFloat( p_vout, CFG_PREFIX "bz-gamma-green" );
670         p_vout->p_sys->f_gamma[2] = var_CreateGetFloat( p_vout, CFG_PREFIX "bz-gamma-blue" );
671         f_BlackCrush[0] = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-blackcrush-red" ) / 255.0;
672         f_BlackCrush[1] = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-blackcrush-green" ) / 255.0;
673         f_BlackCrush[2] = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-blackcrush-blue" ) / 255.0;
674         f_WhiteCrush[0] = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-whitecrush-red" ) / 255.0;
675         f_WhiteCrush[1] = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-whitecrush-green" ) / 255.0;
676         f_WhiteCrush[2] = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-whitecrush-blue" ) / 255.0;
677         f_BlackLevel[0] = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-blacklevel-red" ) / 255.0;
678         f_BlackLevel[1] = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-blacklevel-green" ) / 255.0;
679         f_BlackLevel[2] = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-blacklevel-blue" ) / 255.0;
680         f_WhiteLevel[0] = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-whitelevel-red" ) / 255.0;
681         f_WhiteLevel[1] = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-whitelevel-green" ) / 255.0;
682         f_WhiteLevel[2] = var_CreateGetInteger( p_vout, CFG_PREFIX "bz-whitelevel-blue" ) / 255.0;
683         for( int i = 3; i < VOUT_MAX_PLANES; i++ )
684         {
685             /* Initialize unsupported planes */
686             f_BlackCrush[i] = 140.0/255.0;
687             f_WhiteCrush[i] = 200.0/255.0;
688             f_BlackLevel[i] = 150.0/255.0;
689             f_WhiteLevel[i] = 0.0/255.0;
690             p_vout->p_sys->f_gamma[i] = 1.0;
691         }
692
693         switch (p_vout->render.i_chroma)
694         {
695         // planar YVU
696             case VLC_FOURCC('Y','V','1','2'):
697             case VLC_FOURCC('Y','V','U','9'):
698         // packed UYV
699             case VLC_FOURCC('U','Y','V','Y'):    // packed by 2
700             case VLC_FOURCC('U','Y','N','V'):    // packed by 2
701             case VLC_FOURCC('Y','4','2','2'):    // packed by 2
702     //        case VLC_FOURCC('c','y','u','v'):    // packed by 2
703                 VLC_XCHG( float, p_vout->p_sys->f_gamma[1], p_vout->p_sys->f_gamma[2] );
704                 VLC_XCHG( float, f_BlackCrush[1], f_BlackCrush[2] );
705                 VLC_XCHG( float, f_WhiteCrush[1], f_WhiteCrush[2] );
706                 VLC_XCHG( float, f_BlackLevel[1], f_BlackLevel[2] );
707                 VLC_XCHG( float, f_WhiteLevel[1], f_WhiteLevel[2] );
708         // planar YUV
709             case VLC_FOURCC('I','4','4','4'):
710             case VLC_FOURCC('I','4','2','2'):
711             case VLC_FOURCC('I','4','2','0'):
712             case VLC_FOURCC('I','4','1','1'):
713             case VLC_FOURCC('I','4','1','0'):
714             case VLC_FOURCC('I','Y','U','V'):
715             case VLC_FOURCC('Y','U','V','A'):
716         // packed YUV
717             case VLC_FOURCC('Y','U','Y','2'):    // packed by 2
718             case VLC_FOURCC('Y','U','N','V'):    // packed by 2
719                 for (i_index = 0; i_index < 256; i_index++)
720                     for (i_index2 = 0; i_index2 <= ACCURACY; i_index2++)
721