]> git.sesse.net Git - vlc/blob - modules/video_filter/atmo/atmo.cpp
Merge branch 1.0-bugfix into master
[vlc] / modules / video_filter / atmo / atmo.cpp
1 /*****************************************************************************
2 * atmo.cpp : "Atmo Light" video filter
3 *****************************************************************************
4 * Copyright (C) 2000-2006 the VideoLAN team
5 * $Id$
6 *
7 * Authors: AndrĂ© Weber (WeberAndre@gmx.de)
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
23
24 /*****************************************************************************
25 * Preamble
26 *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <string.h>
29 #include <math.h>                                            /* sin(), cos() */
30
31 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 // #define __ATMO_DEBUG__
36 // [:Zs]+$
37 #include <vlc_common.h>
38 #include <vlc_plugin.h>
39 #include <vlc_vout.h>
40
41 #include <vlc_playlist.h>
42 #include "vlc_filter.h"
43
44 #include "AtmoDefs.h"
45 #include "AtmoDynData.h"
46 #include "AtmoLiveView.h"
47 #include "AtmoTools.h"
48 #include "AtmoExternalCaptureInput.h"
49 #include "AtmoConfig.h"
50 #include "AtmoConnection.h"
51 #include "AtmoSerialConnection.h"
52
53
54 /*****************************************************************************
55 * Local prototypes
56 *****************************************************************************/
57 /* directly to vlc related functions required that the module is accepted */
58 static int  CreateFilter    ( vlc_object_t * );
59 static void DestroyFilter   ( vlc_object_t * );
60 static picture_t * Filter( filter_t *, picture_t *);
61
62 /* callback for global variable state pause / continue / stop events */
63 static void AddStateVariableCallback( filter_t *);
64 static void DelStateVariableCallback( filter_t *);
65 static int StateCallback(vlc_object_t *, char const *,
66                          vlc_value_t, vlc_value_t, void *);
67
68 /* callback for variable crop-update */
69 static void AddCropVariableCallback( filter_t *);
70 static void DelCropVariableCallback( filter_t *);
71 static int CropCallback(vlc_object_t *, char const *,
72                         vlc_value_t, vlc_value_t, void *);
73
74 /* callback for atmo settings variables whose change
75    should be immediately realized and applied to output
76 */
77 static void DelAtmoSettingsVariablesCallbacks(filter_t *);
78 static void AddAtmoSettingsVariablesCallbacks(filter_t *);
79 static int AtmoSettingsCallback(vlc_object_t *, char const *,
80                                 vlc_value_t, vlc_value_t, void *);
81
82
83 #if defined(__ATMO_DEBUG__)
84 static void atmo_parse_crop(char *psz_cropconfig,
85                             video_format_t fmt_in,
86                             video_format_t fmt_render,
87                             int &i_visible_width,
88                             int &i_visible_height,
89                             int &i_x_offset,
90                             int &i_y_offset );
91 #endif
92
93
94 /* function to shutdown the fade thread which is started on pause*/
95 static void CheckAndStopFadeThread(filter_t *);
96
97 /* extracts a small RGB (BGR) Image from an YUV image */
98 static void ExtractMiniImage_YUV(filter_sys_t *, picture_t *, uint8_t *);
99
100 #if defined(__ATMO_DEBUG__)
101 void SaveBitmap(filter_sys_t *p_sys, uint8_t *p_pixels, char *psz_filename);
102 #endif
103
104 /*****************************************************************************
105 * External Prototypes for the AtmoCtrlLib.DLL
106 *****************************************************************************/
107 /*
108 * if effectmode = emLivePicture then the source could be GDI (Screencapture)
109 * or External - this means another application delivers Pixeldata to AtmoWin
110 * Clientsoftware through  AtmoCtrlLib.DLL and the COM Api
111 */
112 #define lvsGDI           0
113 #define lvsExternal      1
114
115
116 /*
117 strings for settings menus and hints
118 */
119 #define MODULE_DESCRIPTION N_ ( \
120  "This module allows to control an so called AtmoLight device "\
121  "connected to your computer.\n"\
122  "AtmoLight is the homegrown version of what Philips calls AmbiLight.\n"\
123  "If you need further information feel free to visit us at\n\n"\
124  "http://www.vdr-wiki.de/wiki/index.php/Atmo-plugin\n "\
125  "http://www.vdr-wiki.de/wiki/index.php/AtmoWin\n\n"\
126  "You can find there detailed descriptions on how to build it for yourself "\
127  "and where to get the required parts.\n" \
128  "You can also have a look at pictures and some movies showing such a device " \
129  "in live action.")
130
131
132
133 #if defined( __ATMO_DEBUG__ )
134 #   define SAVEFRAMES_TEXT     N_("Save Debug Frames")
135 #   define SAVEFRAMES_LONGTEXT N_("Write every 128th miniframe to a folder.")
136 #   define FRAMEPATH_TEXT      N_("Debug Frame Folder")
137 #   define FRAMEPATH_LONGTEXT  N_("The path where the debugframes " \
138                                   "should be saved")
139 #endif
140
141 #define WIDTH_TEXT             N_("Extracted Image Width")
142 #define WIDTH_LONGTEXT         N_("The width of the mini image for " \
143                                   "further processing (64 is default)")
144
145 #define HEIGHT_TEXT            N_("Extracted Image Height")
146 #define HEIGHT_LONGTEXT        N_("The height of the mini image for " \
147                                   "further processing (48 is default)")
148
149 #define PCOLOR_TEXT            N_("Color when paused")
150 #define PCOLOR_LONGTEXT        N_("Set the color to show if the user " \
151                                   "pauses the video. (Have light to get " \
152                                   "another beer?)")
153 #define PCOLOR_RED_TEXT        N_("Pause-Red")
154 #define PCOLOR_RED_LONGTEXT    N_("Red component of the pause color")
155 #define PCOLOR_GREEN_TEXT      N_("Pause-Green")
156 #define PCOLOR_GREEN_LONGTEXT  N_("Green component of the pause color")
157 #define PCOLOR_BLUE_TEXT       N_("Pause-Blue")
158 #define PCOLOR_BLUE_LONGTEXT   N_("Blue component of the pause color")
159 #define FADESTEPS_TEXT         N_("Pause-Fadesteps")
160 #define FADESTEPS_LONGTEXT     N_("Number of steps to change current color " \
161                                   "to pause color (each step takes 40ms)")
162
163 #define ECOLOR_RED_TEXT        N_("End-Red")
164 #define ECOLOR_RED_LONGTEXT    N_("Red component of the shutdown color")
165 #define ECOLOR_GREEN_TEXT      N_("End-Green")
166 #define ECOLOR_GREEN_LONGTEXT  N_("Green component of the shutdown color")
167 #define ECOLOR_BLUE_TEXT       N_("End-Blue")
168 #define ECOLOR_BLUE_LONGTEXT   N_("Blue component of the shutdown color")
169 #define EFADESTEPS_TEXT        N_("End-Fadesteps")
170 #define EFADESTEPS_LONGTEXT  N_("Number of steps to change current color to " \
171                              "end color for dimming up the light in cinema " \
172                              "style... (each step takes 40ms)")
173
174 #define USEWHITEADJ_TEXT       N_("Use Software White adjust")
175 #define USEWHITEADJ_LONGTEXT   N_("Should the buildin driver do a white " \
176                                   "adjust or your LED stripes? recommend.")
177 #define WHITE_RED_TEXT         N_("White Red")
178 #define WHITE_RED_LONGTEXT     N_("Red value of a pure white on your "\
179                                   "LED stripes.")
180 #define WHITE_GREEN_TEXT       N_("White Green")
181 #define WHITE_GREEN_LONGTEXT   N_("Green value of a pure white on your "\
182                                   "LED stripes.")
183 #define WHITE_BLUE_TEXT        N_("White Blue")
184 #define WHITE_BLUE_LONGTEXT    N_("Blue value of a pure white on your "\
185                                   "LED stripes.")
186
187 #define SERIALDEV_TEXT         N_("Serial Port/Device")
188 #define SERIALDEV_LONGTEXT   N_("Name of the serial port where the AtmoLight "\
189                                 "controller is attached to.\n" \
190                                 "On Windows usually something like COM1 or " \
191                                 "COM2. On Linux /dev/ttyS01 f.e.")
192
193 #define EDGE_TEXT            N_("Edge Weightning")
194 #define EDGE_LONGTEXT        N_("Increasing this value will result in color "\
195                                 "more depending on the border of the frame.")
196 #define BRIGHTNESS_TEXT     N_("Brightness")
197 #define BRIGHTNESS_LONGTEXT N_("Overall brightness of your LED stripes")
198 #define DARKNESS_TEXT       N_("Darkness Limit")
199 #define DARKNESS_LONGTEXT   N_("Pixels with a saturation lower than this will "\
200                                "be ignored. Should be greater than one for "\
201                                "letterboxed videos.")
202 #define HUEWINSIZE_TEXT     N_("Hue windowing")
203 #define HUEWINSIZE_LONGTEXT N_("Used for statistics.")
204 #define SATWINSIZE_TEXT     N_("Sat windowing")
205 #define SATWINSIZE_LONGTEXT N_("Used for statistics.")
206
207 #define MEANLENGTH_TEXT     N_("Filter length (ms)")
208 #define MEANLENGTH_LONGTEXT N_("Time it takes until a color is completely "\
209                                 "changed. This prevents flickering.")
210 #define MEANTHRESHOLD_TEXT     N_("Filter threshold")
211 #define MEANTHRESHOLD_LONGTEXT N_("How much a color has to be changed for an "\
212                                   "immediate color change.")
213 #define MEANPERCENTNEW_TEXT     N_("Filter Smoothness (in %)")
214 #define MEANPERCENTNEW_LONGTEXT N_("Filter Smoothness")
215
216 /* FIXME: WTF?!! feepk, July 6 '08 */
217 #define FILTERMODE_TEXT        N_("Filter mode")
218 #define FILTERMODE_LONGTEXT    N_("kind of filtering which should be use to "\
219                                   "calcuate the color output")
220 static const int pi_filtermode_values[] = {
221        (int)afmNoFilter,
222        (int)afmCombined,
223        (int)afmPercent
224 };
225 static const char *const ppsz_filtermode_descriptions[] = {
226         N_("No Filtering"),
227         N_("Combined"),
228         N_("Percent")
229 };
230
231 #define FRAMEDELAY_TEXT       N_("Frame delay")
232 #define FRAMEDELAY_LONGTEXT   N_("Helps to get the video output and the light "\
233                                  "effects in sync. Values around 20ms should " \
234                                  "do the trick.")
235
236
237 #define CHANNEL_0_ASSIGN_TEXT N_("Channel summary")
238 #define CHANNEL_1_ASSIGN_TEXT N_("Channel left")
239 #define CHANNEL_2_ASSIGN_TEXT N_("Channel right")
240 #define CHANNEL_3_ASSIGN_TEXT N_("Channel top")
241 #define CHANNEL_4_ASSIGN_TEXT N_("Channel bottom")
242
243 #define CHANNELASSIGN_LONGTEXT N_("Maps the hardware channel X to logical "\
244                                   "channel Y to fix wrong wiring :-)")
245 static const int pi_channel_assignment_values[] = {
246     -1,
247      0,
248      1,
249      2,
250      3,
251      4
252 };
253 static const char *const ppsz_channel_assignment_descriptions[] = {
254         N_("disabled"),
255         N_("summary"),
256         N_("left"),
257         N_("right"),
258         N_("top"),
259         N_("bottom")
260 };
261
262 #define ZONE_0_GRADIENT_TEXT N_("Summary gradient")
263 #define ZONE_1_GRADIENT_TEXT N_("Left gradient")
264 #define ZONE_2_GRADIENT_TEXT N_("Right gradient")
265 #define ZONE_3_GRADIENT_TEXT N_("Top gradient")
266 #define ZONE_4_GRADIENT_TEXT N_("Bottom gradient")
267 #define ZONE_X_GRADIENT_LONG_TEXT N_("Defines a small bitmap with 64x48 "\
268                                      "pixels, containing a grayscale gradient")
269
270 #if defined( WIN32 )
271 #   define ATMOWINEXE_TEXT      N_("Filename of AtmoWinA.exe")
272 #   define ATMOWINEXE_LONGTEXT  N_("if you want the AtmoLight control "\
273                                    "software to be launched by VLC, enter the "\
274                                    "complete path of AtmoWinA.exe here.")
275 #   define USEBUILDIN_TEXT      N_("Use built-in AtmoLight")
276 #   define USEBUILDIN_LONGTEXT N_("VLC will directly use your AtmoLight "\
277                                   "hardware without running the external "\
278                                   "AtmoWinA.exe Userspace driver.")
279 #endif
280
281 #define CFG_PREFIX "atmo-"
282
283 /*****************************************************************************
284 * Module descriptor
285 *****************************************************************************/
286 vlc_module_begin ()
287 set_description( N_("AtmoLight Filter") )
288 set_help( MODULE_DESCRIPTION )
289 set_shortname( N_( "AtmoLight" ))
290 set_capability( "video filter2", 0 )
291
292 set_category( CAT_VIDEO )
293 set_subcategory( SUBCAT_VIDEO_VFILTER )
294
295 #if defined(WIN32)
296 set_section( N_("Choose between the built-in AtmoLight "\
297                  "driver or the external" ), 0 )
298
299 /*
300     only on win32 exists the option to use the buildin driver or
301     the more flexible external driver application
302 */
303 add_bool(CFG_PREFIX "usebuildin", true, NULL,
304          USEBUILDIN_TEXT, USEBUILDIN_LONGTEXT, false)
305 add_string(CFG_PREFIX "serialdev", "COM1", NULL,
306            SERIALDEV_TEXT, SERIALDEV_LONGTEXT, false )
307
308 /*
309     on win32 the executeable external driver application
310     for automatic start if needed
311 */
312 add_file(CFG_PREFIX "atmowinexe", NULL, NULL,
313          ATMOWINEXE_TEXT, ATMOWINEXE_LONGTEXT, false )
314 #else
315 set_section( N_("Enter the connection of your AtmoLight hardware" ), 0 )
316 add_string(CFG_PREFIX "serialdev", "/dev/ttyS01", NULL,
317            SERIALDEV_TEXT, SERIALDEV_LONGTEXT, false )
318 #endif
319
320 /*
321     color which is showed if you want durring pausing
322     your movie ... used for both buildin / external
323 */
324 set_section( N_("Illuminate the room with this color on pause" ), 0 )
325 add_bool(CFG_PREFIX "usepausecolor", false, NULL,
326          PCOLOR_TEXT, PCOLOR_LONGTEXT, false)
327 add_integer_with_range(CFG_PREFIX "pcolor-red",   0, 0, 255, NULL,
328                        PCOLOR_RED_TEXT, PCOLOR_RED_LONGTEXT, false)
329 add_integer_with_range(CFG_PREFIX "pcolor-green", 0, 0, 255, NULL,
330                        PCOLOR_GREEN_TEXT, PCOLOR_GREEN_LONGTEXT, false)
331 add_integer_with_range(CFG_PREFIX "pcolor-blue",  192, 0, 255, NULL,
332                        PCOLOR_BLUE_TEXT, PCOLOR_BLUE_LONGTEXT, false)
333 add_integer_with_range(CFG_PREFIX "fadesteps", 50, 1, 250, NULL,
334                        FADESTEPS_TEXT, FADESTEPS_LONGTEXT, false)
335
336 /*
337     color which is showed if you finished watching your movie ...
338     used for both buildin / external
339 */
340 set_section( N_("Illuminate the room with this color on shutdown" ), 0 )
341 add_integer_with_range(CFG_PREFIX "ecolor-red",   192, 0, 255, NULL,
342                        ECOLOR_RED_TEXT,   ECOLOR_RED_LONGTEXT,   false)
343 add_integer_with_range(CFG_PREFIX "ecolor-green", 192, 0, 255, NULL,
344                        ECOLOR_GREEN_TEXT, ECOLOR_GREEN_LONGTEXT, false)
345 add_integer_with_range(CFG_PREFIX "ecolor-blue",  192, 0, 255, NULL,
346                        ECOLOR_BLUE_TEXT,  ECOLOR_BLUE_LONGTEXT,  false)
347 add_integer_with_range(CFG_PREFIX "efadesteps",    50, 1, 250, NULL,
348                        EFADESTEPS_TEXT,   EFADESTEPS_LONGTEXT,    false)
349
350 /*
351  settings only for the buildin driver (if external driver app is used
352  these parameters are ignored.)
353
354  definition of parameters for the buildin filter ...
355 */
356 set_section( N_("Settings for the built-in Live Video Processor only" ), 0 )
357
358 add_integer_with_range(CFG_PREFIX "EdgeWeightning",   8, 1, 30, NULL,
359                        EDGE_TEXT, EDGE_LONGTEXT, false)
360
361 add_integer_with_range(CFG_PREFIX "Brightness",   100, 50, 300, NULL,
362                        BRIGHTNESS_TEXT, BRIGHTNESS_LONGTEXT, false)
363
364 add_integer_with_range(CFG_PREFIX "DarknessLimit",   5, 0, 10, NULL,
365                        DARKNESS_TEXT, DARKNESS_LONGTEXT, false)
366
367 add_integer_with_range(CFG_PREFIX "HueWinSize",   3, 0, 5, NULL,
368                        HUEWINSIZE_TEXT, HUEWINSIZE_LONGTEXT, false)
369
370 add_integer_with_range(CFG_PREFIX "SatWinSize",   3, 0, 5, NULL,
371                        SATWINSIZE_TEXT, SATWINSIZE_LONGTEXT, false)
372
373 add_integer(CFG_PREFIX "filtermode", (int)afmCombined, NULL,
374             FILTERMODE_TEXT, FILTERMODE_LONGTEXT, false )
375
376 change_integer_list(pi_filtermode_values, ppsz_filtermode_descriptions, NULL )
377
378 add_integer_with_range(CFG_PREFIX "MeanLength",    300, 300, 5000, NULL,
379                        MEANLENGTH_TEXT, MEANLENGTH_LONGTEXT, false)
380
381 add_integer_with_range(CFG_PREFIX "MeanThreshold",  40, 1, 100, NULL,
382                        MEANTHRESHOLD_TEXT, MEANTHRESHOLD_LONGTEXT, false)
383
384 add_integer_with_range(CFG_PREFIX "PercentNew", 50, 1, 100, NULL,
385                       MEANPERCENTNEW_TEXT, MEANPERCENTNEW_LONGTEXT, false)
386
387 add_integer_with_range(CFG_PREFIX "FrameDelay", 18, 0, 35, NULL,
388                        FRAMEDELAY_TEXT, FRAMEDELAY_LONGTEXT, false)
389
390 /*
391   output channel reordering
392 */
393 set_section( N_("Change channel assignment (fixes wrong wiring)" ), 0 )
394 add_integer( CFG_PREFIX "channel_0", 0, NULL,
395             CHANNEL_0_ASSIGN_TEXT, CHANNELASSIGN_LONGTEXT, false )
396 change_integer_list( pi_channel_assignment_values,
397                      ppsz_channel_assignment_descriptions, 0 )
398
399 add_integer( CFG_PREFIX "channel_1", 1, NULL,
400             CHANNEL_1_ASSIGN_TEXT, CHANNELASSIGN_LONGTEXT, false )
401 change_integer_list( pi_channel_assignment_values,
402                      ppsz_channel_assignment_descriptions, 0 )
403
404 add_integer( CFG_PREFIX "channel_2", 2, NULL,
405             CHANNEL_2_ASSIGN_TEXT, CHANNELASSIGN_LONGTEXT, false )
406 change_integer_list( pi_channel_assignment_values,
407                      ppsz_channel_assignment_descriptions, 0 )
408
409 add_integer( CFG_PREFIX "channel_3", 3, NULL,
410             CHANNEL_3_ASSIGN_TEXT, CHANNELASSIGN_LONGTEXT, false )
411 change_integer_list( pi_channel_assignment_values,
412                      ppsz_channel_assignment_descriptions, 0 )
413
414 add_integer( CFG_PREFIX "channel_4", 4, NULL,
415             CHANNEL_4_ASSIGN_TEXT, CHANNELASSIGN_LONGTEXT, false )
416 change_integer_list( pi_channel_assignment_values,
417                      ppsz_channel_assignment_descriptions, 0 )
418
419 /*
420   LED color white calibration
421 */
422 set_section( N_("Adjust the white light to your LED stripes" ), 0 )
423 add_bool(CFG_PREFIX "whiteadj", true, NULL,
424          USEWHITEADJ_TEXT, USEWHITEADJ_LONGTEXT, false)
425 add_integer_with_range(CFG_PREFIX "white-red",   255, 0, 255, NULL,
426                        WHITE_RED_TEXT,   WHITE_RED_LONGTEXT,   false)
427
428 add_integer_with_range(CFG_PREFIX "white-green", 255, 0, 255, NULL,
429                        WHITE_GREEN_TEXT, WHITE_GREEN_LONGTEXT, false)
430
431 add_integer_with_range(CFG_PREFIX "white-blue",  255, 0, 255, NULL,
432                        WHITE_BLUE_TEXT,  WHITE_BLUE_LONGTEXT,  false)
433 /* end of definition of parameter for the buildin filter ... part 1 */
434
435
436 /*
437 only for buildin (external has own definition) per default the calucation
438 used linear gradients for assigning a priority to the pixel - depending
439 how near they are to the border ...for changing this you can create 64x48
440 Pixel BMP files - which contain your own grayscale... (you can produce funny
441 effects with this...) the images MUST not compressed, should have 24-bit per
442 pixel, or a simple 256 color grayscale palette
443 */
444 set_section( N_("Change gradients" ), 0 )
445 add_file(CFG_PREFIX "gradient_zone_0", NULL, NULL,
446          ZONE_0_GRADIENT_TEXT, ZONE_X_GRADIENT_LONG_TEXT, true )
447 add_file(CFG_PREFIX "gradient_zone_1", NULL, NULL,
448          ZONE_1_GRADIENT_TEXT, ZONE_X_GRADIENT_LONG_TEXT, true )
449 add_file(CFG_PREFIX "gradient_zone_2", NULL, NULL,
450          ZONE_2_GRADIENT_TEXT, ZONE_X_GRADIENT_LONG_TEXT, true )
451 add_file(CFG_PREFIX "gradient_zone_3", NULL, NULL,
452          ZONE_3_GRADIENT_TEXT, ZONE_X_GRADIENT_LONG_TEXT, true )
453 add_file(CFG_PREFIX "gradient_zone_4", NULL, NULL,
454          ZONE_4_GRADIENT_TEXT, ZONE_X_GRADIENT_LONG_TEXT, true )
455
456
457 #if defined(__ATMO_DEBUG__)
458 add_bool(CFG_PREFIX "saveframes", false, NULL,
459          SAVEFRAMES_TEXT, SAVEFRAMES_LONGTEXT, false)
460 add_string(CFG_PREFIX "framepath", "", NULL,
461            FRAMEPATH_TEXT, FRAMEPATH_LONGTEXT, false )
462 #endif
463 /*
464    may be later if computers gets more power ;-) than now we increase
465    the samplesize from which we do the stats for output color calculation
466 */
467 add_integer_with_range(CFG_PREFIX "width",  64, 64, 512, NULL,
468                        WIDTH_TEXT,  WIDTH_LONGTEXT, true)
469 add_integer_with_range(CFG_PREFIX "height", 48, 48, 384, NULL,
470                        HEIGHT_TEXT,  HEIGHT_LONGTEXT, true)
471
472 add_shortcut( "atmo" )
473 set_callbacks( CreateFilter, DestroyFilter  )
474 vlc_module_end ()
475
476
477 static const char *const ppsz_filter_options[] = {
478 #if defined(WIN32)
479         "usebuildin",
480 #endif
481         "serialdev",
482
483
484         "EdgeWeightning",
485         "Brightness",
486         "DarknessLimit",
487         "HueWinSize",
488         "SatWinSize",
489
490         "filtermode",
491
492         "MeanLength",
493         "MeanThreshold",
494         "PercentNew",
495         "FrameDelay",
496
497         "channel_0",
498         "channel_1",
499         "channel_2",
500         "channel_3",
501         "channel_4",
502
503         "whiteadj",
504         "white-red",
505         "white-green",
506         "white-blue",
507
508         "usepausecolor",
509         "pcolor-red",
510         "pcolor-green",
511         "pcolor-blue",
512         "fadesteps",
513
514         "ecolor-red",
515         "ecolor-green",
516         "ecolor-blue",
517         "efadesteps",
518
519
520 #if defined(WIN32 )
521         "usebuildin",
522         "atmowinexe",
523 #endif
524 #if defined(__ATMO_DEBUG__)
525         "saveframes" ,
526         "framepath",
527 #endif
528         "width",
529         "height",
530         "gradient_zone_0",
531         "gradient_zone_1",
532         "gradient_zone_2",
533         "gradient_zone_3",
534         "gradient_zone_4",
535         NULL
536 };
537
538
539 /*****************************************************************************
540 * fadethread_t: Color Fading Thread
541 *****************************************************************************
542 * changes slowly the color of the output if videostream gets paused...
543 *****************************************************************************
544 */
545 typedef struct
546 {
547     VLC_COMMON_MEMBERS
548         filter_t *p_filter;
549     /* tell the thread which color should be the target of fading */
550     uint8_t ui_red;
551     uint8_t ui_green;
552     uint8_t ui_blue;
553     /* how many steps should happen until this */
554     int i_steps;
555
556 } fadethread_t;
557
558 static void *FadeToColorThread(vlc_object_t *);
559
560
561 /*****************************************************************************
562 * filter_sys_t: AtmoLight filter method descriptor
563 *****************************************************************************
564 * It describes the AtmoLight specific properties of an video filter.
565 *****************************************************************************/
566 struct filter_sys_t
567 {
568     /*
569     special for the access of the p_fadethread member all other members
570     need no special protection so far!
571     */
572     vlc_mutex_t filter_lock;
573
574     bool b_enabled;
575     int32_t i_AtmoOldEffect;
576     bool b_pause_live;
577
578     int32_t i_atmo_width;
579     int32_t i_atmo_height;
580
581 #if defined(__ATMO_DEBUG__)
582     bool  b_saveframes;
583     int i_framecounter;
584     char sz_framepath[MAX_PATH];
585 #endif
586
587     /* light color durring movie pause ... */
588     bool  b_usepausecolor;
589     uint8_t ui_pausecolor_red;
590     uint8_t ui_pausecolor_green;
591     uint8_t ui_pausecolor_blue;
592     int i_fadesteps;
593
594     /* light color on movie finish ... */
595     uint8_t ui_endcolor_red;
596     uint8_t ui_endcolor_green;
597     uint8_t ui_endcolor_blue;
598     int i_endfadesteps;
599
600     fadethread_t *p_fadethread;
601
602     /* Variables for buildin driver only... */
603
604     /* is only present and initialized if the internal driver is used*/
605     CAtmoConfig *p_atmo_config;
606     /* storage for temporal settings "volatile" */
607     CAtmoDynData *p_atmo_dyndata;
608     /* initialized for buildin driver with AtmoCreateTransferBuffers */
609     BITMAPINFOHEADER mini_image_format;
610     /* is only use buildin driver! */
611     uint8_t *p_atmo_transfer_buffer;
612     /* end buildin driver */
613
614     /*
615     contains the real output size of the video calculated on
616     change event of the variable "crop" from vout
617     */
618     int32_t i_crop_x_offset;
619     int32_t i_crop_y_offset;
620     int32_t i_crop_width;
621     int32_t i_crop_height;
622
623     void (*pf_extract_mini_image) (filter_sys_t *p_sys,
624         picture_t *p_inpic,
625         uint8_t *p_transfer_dest);
626
627 #if defined( WIN32 )
628     /* External Library as wrapper arround COM Stuff */
629     HINSTANCE h_AtmoCtrl;
630     int32_t (*pf_ctrl_atmo_initialize) (void);
631     void (*pf_ctrl_atmo_finalize) (int32_t what);
632     int32_t (*pf_ctrl_atmo_switch_effect) (int32_t);
633     int32_t (*pf_ctrl_atmo_set_live_source) (int32_t);
634     void (*pf_ctrl_atmo_create_transfer_buffers) (int32_t, int32_t,
635                                                   int32_t , int32_t);
636     uint8_t* (*pf_ctrl_atmo_lock_transfer_buffer) (void);
637     void (*pf_ctrl_atmo_send_pixel_data) (void);
638 #endif
639 };
640
641 /*
642 initialize previously configured Atmo Light environment
643 - if internal is enabled try to access the device on the serial port
644 - if not internal is enabled and we are on win32 try to initialize
645 the previously loaded DLL ...
646
647 Return Values may be: -1 (failed for some reason - filter will be disabled)
648 1 Ok. lets rock
649 */
650 static int32_t AtmoInitialize(filter_t *p_filter, bool b_for_thread)
651 {
652     filter_sys_t *p_sys = p_filter->p_sys;
653     if(p_sys->p_atmo_config)
654     {
655         if(b_for_thread == false)
656         {
657             /* open com port */
658             /* setup Output Threads ... */
659             msg_Dbg( p_filter, "open serial connection %s",
660                 p_sys->p_atmo_config->getSerialDevice());
661
662             if(CAtmoTools::RecreateConnection(p_sys->p_atmo_dyndata) == ATMO_TRUE)
663             {
664                 msg_Dbg( p_filter, "start live view thread ...");
665                 CAtmoTools::SwitchEffect(p_sys->p_atmo_dyndata, emLivePicture);
666                 msg_Dbg( p_filter, "live view thread launched...");
667                 return 1;
668
669             } else {
670                 msg_Err( p_filter,"failed to open serial device? some other software/driver may use it?");
671             }
672         }
673 #if defined(WIN32)
674     } else if(p_sys->pf_ctrl_atmo_initialize)
675     {
676         /* on win32 with active ctrl dll */
677         return p_sys->pf_ctrl_atmo_initialize();
678 #endif
679     }
680     return -1;
681 }
682
683 /*
684 prepare the shutdown of the effect threads,
685 for build in filter - close the serialport after finishing the threads...
686 cleanup possible loaded DLL...
687 */
688 static void AtmoFinalize(filter_t *p_filter, int32_t what)
689 {
690     filter_sys_t *p_sys = p_filter->p_sys;
691     if(p_sys->p_atmo_config)
692     {
693         if(what == 1)
694         {
695             CAtmoDynData *p_atmo_dyndata = p_sys->p_atmo_dyndata;
696             if(p_atmo_dyndata)
697             {
698                 p_atmo_dyndata->LockCriticalSection();
699
700                 CThread *p_effect_thread = p_atmo_dyndata->getEffectThread();
701                 p_atmo_dyndata->setEffectThread(NULL);
702                 if(p_effect_thread != NULL)
703                 {
704                     /*
705                     forced the thread to die...
706                     and wait for termination of the thread
707                     */
708                     p_effect_thread->Terminate();
709                     delete p_effect_thread;
710                     msg_Dbg( p_filter, "effect thread died peacefully");
711                 }
712
713                 /*
714                 close serial port if it is open (all OS specific is inside
715                 CAtmoSerialConnection implemented / defined)
716                 */
717                 CAtmoConnection *p_atmo_connection =
718                                  p_atmo_dyndata->getAtmoConnection();
719                 p_atmo_dyndata->setAtmoConnection(NULL);
720                 if(p_atmo_connection) {
721                     p_atmo_connection->CloseConnection();
722                     delete p_atmo_connection;
723                 }
724                 p_atmo_dyndata->UnLockCriticalSection();
725             }
726         }
727 #if defined(WIN32)
728     } else if(p_sys->pf_ctrl_atmo_finalize)
729     {
730         /* on win32 with active ctrl dll */
731         p_sys->pf_ctrl_atmo_finalize(what);
732 #endif
733     }
734 }
735
736 /*
737 switch the current light effect - does only something on win32, with the
738 external  libraries - if the buildin effects are used nothing happens
739 */
740 static int32_t AtmoSwitchEffect(filter_t *p_filter, int32_t newMode)
741 {
742     filter_sys_t *p_sys = p_filter->p_sys;
743     if(p_sys->p_atmo_config)
744     {
745         /*
746         buildin driver
747
748         doesnt know different modes for effects so this
749         function call would just do nothing special
750         in this case
751         */
752
753 #if defined(WIN32)
754     } else if(p_sys->pf_ctrl_atmo_switch_effect)
755     {
756         /* on win32 with active ctrl dll */
757         return p_sys->pf_ctrl_atmo_switch_effect(newMode);
758 #endif
759     }
760     return emDisabled;
761 }
762
763 /*
764 set the current live picture source, does only something on win32,
765 with the external libraries - if the buildin effects are used nothing
766 happens...
767 */
768 static int32_t AtmoSetLiveSource(filter_t *p_filter, int32_t newSource)
769 {
770     filter_sys_t *p_sys = p_filter->p_sys;
771     if(p_sys->p_atmo_config)
772     {
773         /*
774         buildin driver
775
776         doesnt know different sources so this
777         function call would just do nothing special
778         in this case
779         */
780 #if defined(WIN32)
781     } else if(p_sys->pf_ctrl_atmo_set_live_source)
782     {
783         /* on win32 with active ctrl dll */
784         return p_sys->pf_ctrl_atmo_set_live_source(newSource);
785 #endif
786     }
787     return lvsGDI;
788 }
789
790 /*
791 setup the pixel transferbuffers which is used to transfer pixeldata from
792 the filter to the effect thread, and possible accross the process
793 boundaries on win32, with the external DLL
794 */
795 static void AtmoCreateTransferBuffers(filter_t *p_filter,
796                                       int32_t FourCC,
797                                       int32_t bytePerPixel,
798                                       int32_t width,
799                                       int32_t height)
800 {
801     filter_sys_t *p_sys = p_filter->p_sys;
802     if(p_sys->p_atmo_config)
803     {
804         /*
805         we need a buffer where the image is stored (only for transfer
806         to the processing thread)
807         */
808         if(p_sys->p_atmo_transfer_buffer)
809             free(p_sys->p_atmo_transfer_buffer);
810
811         p_sys->p_atmo_transfer_buffer = (uint8_t *)malloc(bytePerPixel *
812                                                           width *  height);
813
814         memset(&p_sys->mini_image_format,0,sizeof(BITMAPINFOHEADER));
815
816         p_sys->mini_image_format.biSize = sizeof(BITMAPINFOHEADER);
817         p_sys->mini_image_format.biWidth = width;
818         p_sys->mini_image_format.biHeight = height;
819         p_sys->mini_image_format.biBitCount = bytePerPixel*8;
820         p_sys->mini_image_format.biCompression = FourCC;
821
822 #if defined(WIN32)
823     } else if(p_sys->pf_ctrl_atmo_create_transfer_buffers)
824     {
825         /* on win32 with active ctrl dll */
826         p_sys->pf_ctrl_atmo_create_transfer_buffers(FourCC,
827             bytePerPixel,
828             width,
829             height);
830 #endif
831     }
832 }
833
834 /*
835 acquire the transfer buffer pointer the buildin version only
836 returns the pointer to the allocated buffer ... the
837 external version on win32 has to do some COM stuff to lock the
838 Variant Byte array which is behind the buffer
839 */
840 static uint8_t* AtmoLockTransferBuffer(filter_t *p_filter)
841 {
842     filter_sys_t *p_sys = p_filter->p_sys;
843     if(p_sys->p_atmo_config)
844     {
845         return p_sys->p_atmo_transfer_buffer;
846 #if defined(WIN32)
847     } else if(p_sys->pf_ctrl_atmo_lock_transfer_buffer)
848     {
849         /* on win32 with active ctrl dll */
850         return p_sys->pf_ctrl_atmo_lock_transfer_buffer();
851 #endif
852     }
853     return NULL;
854 }
855
856 /*
857 send the content of current pixel buffer got with AtmoLockTransferBuffer
858 to the processing threads
859 - build in version - will forward the data to AtmoExternalCaptureInput Thread
860 - win32 external - will do the same, but across the process boundaries via
861 COM to the AtmoWinA.exe Process
862 */
863 static void AtmoSendPixelData(filter_t *p_filter)
864 {
865     filter_sys_t *p_sys = p_filter->p_sys;
866     if(p_sys->p_atmo_config && p_sys->p_atmo_transfer_buffer)
867     {
868         CAtmoDynData *p_atmo_dyndata = p_sys->p_atmo_dyndata;
869         if(p_atmo_dyndata)
870         {
871             /*
872             the cast will go Ok because we are inside videolan there is only
873             this kind of effect thread implemented!
874             */
875
876             CAtmoLiveView *p_atmo_live_view_thread =
877                 (CAtmoLiveView *)p_atmo_dyndata->getEffectThread();
878             if(p_atmo_live_view_thread)
879             {
880                 /*
881                 the same as above inside videolan only this single kind of
882                 input exists so we can cast without further tests!
883                 */
884                 CAtmoExternalCaptureInput *p_atmo_external_capture_input_thread =
885                     (CAtmoExternalCaptureInput *)p_atmo_live_view_thread->getAtmoInput();
886                 if(p_atmo_external_capture_input_thread)
887                 {
888                     /*
889                     this call will do a 1:1 copy of this buffer, and wakeup
890                     the thread from normal sleeping
891                     */
892                     p_atmo_external_capture_input_thread->
893                         DeliverNewSourceDataPaket(&p_sys->mini_image_format,
894                         p_sys->p_atmo_transfer_buffer);
895                 }
896             }
897         }
898 #if defined(WIN32)
899     } else if(p_sys->pf_ctrl_atmo_send_pixel_data)
900     {
901         /* on win32 with active ctrl dll */
902         p_sys->pf_ctrl_atmo_send_pixel_data();
903 #endif
904     }
905 }
906
907 /*
908     Shutdown AtmoLight finally - is call from DestroyFilter
909     does the cleanup restores the effectmode on the external Software
910     (only win32) and possible setup the final light ...
911 */
912 static void Atmo_Shutdown(filter_t *p_filter)
913 {
914     filter_sys_t *p_sys = p_filter->p_sys;
915
916     if(p_sys->b_enabled == true)
917     {
918         /*
919         if there is a still running show pause color thread kill him!
920         */
921         CheckAndStopFadeThread(p_filter);
922
923         if(p_sys->p_atmo_config || (p_sys->i_AtmoOldEffect == emStaticColor))
924         {
925             /*
926             fade to end color (in case of external AtmoWin Software
927             assume that the static color will equal to this
928             one to get a soft change and no flash!
929             */
930             p_sys->b_pause_live = true;
931
932             // perpare spawn fadeing thread
933             vlc_mutex_lock( &p_sys->filter_lock );
934
935             p_sys->p_fadethread = (fadethread_t *)vlc_object_create( p_filter,
936                                                         sizeof(fadethread_t) );
937
938             p_sys->p_fadethread->p_filter = p_filter;
939             p_sys->p_fadethread->ui_red   = p_sys->ui_endcolor_red;
940             p_sys->p_fadethread->ui_green = p_sys->ui_endcolor_green;
941             p_sys->p_fadethread->ui_blue  = p_sys->ui_endcolor_blue;
942             p_sys->p_fadethread->i_steps  = p_sys->i_endfadesteps;
943
944             if( vlc_thread_create( p_sys->p_fadethread,
945                 "AtmoLight fadeing",
946                 FadeToColorThread,
947                 VLC_THREAD_PRIORITY_LOW ) )
948             {
949                 msg_Err( p_filter, "cannot create FadeToColorThread" );
950                 vlc_object_release( p_sys->p_fadethread );
951                 p_sys->p_fadethread = NULL;
952                 vlc_mutex_unlock( &p_sys->filter_lock );
953
954             } else {
955
956                 vlc_mutex_unlock( &p_sys->filter_lock );
957
958                 /* wait for the thread... */
959                 vlc_thread_join(p_sys->p_fadethread);
960
961                 vlc_object_release(p_sys->p_fadethread);
962
963                 p_sys->p_fadethread = NULL;
964             }
965         }
966
967         if(p_sys->i_AtmoOldEffect != emLivePicture)
968             AtmoSwitchEffect(p_filter, p_sys->i_AtmoOldEffect);
969         else
970             AtmoSetLiveSource(p_filter, lvsGDI);
971
972         AtmoFinalize(p_filter, 1);
973
974         /* disable filter method .. */
975         p_sys->b_enabled = false;
976     }
977 }
978
979 /*
980 initialize the filter_sys_t structure with the data from the settings
981 variables - if the external filter on win32 is enabled try loading the DLL,
982 if this fails fallback to the buildin software
983 */
984 static void Atmo_SetupParameters(filter_t *p_filter)
985 {
986     bool b_use_buildin_driver = true;
987     char *psz_path;
988     filter_sys_t *p_sys =  p_filter->p_sys;
989
990
991     /* default filter disabled until DLL loaded and Init Success!*/
992     p_sys->b_enabled             = false;
993
994     /* setup default mini image size (may be later a user option) */
995     p_sys->i_atmo_width          = 64;
996     p_sys->i_atmo_height         = 48;
997
998
999     vlc_mutex_init( &p_sys->filter_lock );
1000
1001
1002 #if defined(WIN32)
1003     /*
1004     only on WIN32 the user has the choice between
1005     internal driver and external
1006     */
1007     b_use_buildin_driver = var_CreateGetBoolCommand( p_filter,
1008         CFG_PREFIX "usebuildin" );
1009
1010     if(b_use_buildin_driver == false) {
1011
1012         /* Load the Com Wrapper Library (source available) */
1013         p_sys->h_AtmoCtrl = LoadLibraryA("AtmoCtrlLib.dll");
1014         if(p_sys->h_AtmoCtrl != NULL)
1015         {
1016             msg_Dbg( p_filter, "LoadLibrary('AtmoCtrlLib.dll'); Success");
1017
1018             /* importing all required functions I hope*/
1019             p_sys->pf_ctrl_atmo_initialize =
1020                 (int32_t (*)(void))GetProcAddress(p_sys->h_AtmoCtrl,"AtmoInitialize");
1021             if(!p_sys->pf_ctrl_atmo_initialize)
1022                 msg_Err( p_filter, "export AtmoInitialize missing.");
1023
1024             p_sys->pf_ctrl_atmo_finalize =
1025                 (void (*)(int32_t))GetProcAddress(p_sys->h_AtmoCtrl,"AtmoFinalize");
1026             if(!p_sys->pf_ctrl_atmo_finalize)
1027                 msg_Err( p_filter, "export AtmoFinalize missing.");
1028
1029             p_sys->pf_ctrl_atmo_switch_effect =
1030                 (int32_t(*)(int32_t))GetProcAddress(p_sys->h_AtmoCtrl,"AtmoSwitchEffect");
1031             if(!p_sys->pf_ctrl_atmo_switch_effect)
1032                 msg_Err( p_filter, "export AtmoSwitchEffect missing.");
1033
1034             p_sys->pf_ctrl_atmo_set_live_source =
1035                 (int32_t(*)(int32_t))GetProcAddress(p_sys->h_AtmoCtrl,"AtmoSetLiveSource");
1036             if(!p_sys->pf_ctrl_atmo_set_live_source)
1037                 msg_Err( p_filter, "export AtmoSetLiveSource missing.");
1038
1039             p_sys->pf_ctrl_atmo_create_transfer_buffers =
1040                 (void (*)(int32_t, int32_t, int32_t , int32_t))GetProcAddress(p_sys->h_AtmoCtrl,"AtmoCreateTransferBuffers");
1041             if(!p_sys->pf_ctrl_atmo_create_transfer_buffers)
1042                 msg_Err( p_filter, "export AtmoCreateTransferBuffers missing.");
1043
1044             p_sys->pf_ctrl_atmo_lock_transfer_buffer=
1045                 (uint8_t*(*) (void))GetProcAddress(p_sys->h_AtmoCtrl,"AtmoLockTransferBuffer");
1046             if(!p_sys->pf_ctrl_atmo_lock_transfer_buffer)
1047                 msg_Err( p_filter, "export AtmoLockTransferBuffer missing.");
1048
1049             p_sys->pf_ctrl_atmo_send_pixel_data =
1050                 (void (*)(void))GetProcAddress(p_sys->h_AtmoCtrl,"AtmoSendPixelData");
1051             if(!p_sys->pf_ctrl_atmo_send_pixel_data)
1052                 msg_Err( p_filter, "export AtmoSendPixelData missing.");
1053         } else {
1054             /* the DLL is missing try internal filter ...*/
1055             msg_Warn( p_filter, "AtmoCtrlLib.dll missing fallback to internal driver");
1056             b_use_buildin_driver = true;
1057         }
1058     }
1059 #endif
1060
1061
1062     if(b_use_buildin_driver == true) {
1063         msg_Dbg( p_filter, "use buildin driver");
1064         /*
1065         now we have to read a lof of options from the config dialog
1066         most important the serial device if not set ... we can skip
1067         the rest and disable the filter...
1068         */
1069         char *psz_serialdev = var_CreateGetStringCommand( p_filter,
1070                                                       CFG_PREFIX "serialdev" );
1071         if(psz_serialdev && (strlen(psz_serialdev)>0)) {
1072             msg_Dbg( p_filter, "use buildin driver on port %s",psz_serialdev);
1073
1074             p_sys->p_atmo_config = new CAtmoConfig();
1075
1076             p_sys->p_atmo_config->setSerialDevice(psz_serialdev);
1077
1078             p_sys->p_atmo_config->setLiveViewFilterMode(
1079                 (AtmoFilterMode)var_CreateGetIntegerCommand( p_filter,
1080                                                        CFG_PREFIX "filtermode")
1081                 );
1082
1083             p_sys->p_atmo_config->setLiveViewFilter_PercentNew(
1084                 var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "PercentNew")
1085                 );
1086             p_sys->p_atmo_config->setLiveViewFilter_MeanLength(
1087                 var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "MeanLength")
1088                 );
1089             p_sys->p_atmo_config->setLiveViewFilter_MeanThreshold(
1090                 var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "MeanThreshold")
1091                 );
1092
1093             p_sys->p_atmo_config->setLiveView_EdgeWeighting(
1094                 var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "EdgeWeightning")
1095                 );
1096             p_sys->p_atmo_config->setLiveView_BrightCorrect(
1097                 var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "Brightness")
1098                 );
1099             p_sys->p_atmo_config->setLiveView_DarknessLimit(
1100                 var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "DarknessLimit")
1101                 );
1102             p_sys->p_atmo_config->setLiveView_HueWinSize(
1103                 var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "HueWinSize")
1104                 );
1105             p_sys->p_atmo_config->setLiveView_SatWinSize(
1106                 var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "SatWinSize")
1107                 );
1108
1109             /* currently not required inside vlc */
1110             p_sys->p_atmo_config->setLiveView_WidescreenMode( 0 );
1111
1112             p_sys->p_atmo_config->setLiveView_FrameDelay(
1113                 var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "FrameDelay")
1114                 );
1115
1116
1117             p_sys->p_atmo_config->setUseSoftwareWhiteAdj(
1118                 var_CreateGetBoolCommand( p_filter, CFG_PREFIX "whiteadj")
1119                 );
1120             p_sys->p_atmo_config->setWhiteAdjustment_Red(
1121                 var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "white-red")
1122                 );
1123             p_sys->p_atmo_config->setWhiteAdjustment_Green(
1124                 var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "white-green")
1125                 );
1126             p_sys->p_atmo_config->setWhiteAdjustment_Blue(
1127                 var_CreateGetIntegerCommand( p_filter, CFG_PREFIX "white-blue")
1128                 );
1129
1130             tChannelAssignment *p_channel_assignment =
1131                                  p_sys->p_atmo_config->getChannelAssignment(0);
1132
1133             p_channel_assignment->mappings[0] = var_CreateGetIntegerCommand(
1134                                              p_filter, CFG_PREFIX "channel_0");
1135
1136             p_channel_assignment->mappings[1] = var_CreateGetIntegerCommand(
1137                                              p_filter, CFG_PREFIX "channel_1");
1138
1139             p_channel_assignment->mappings[2] = var_CreateGetIntegerCommand(
1140                                              p_filter, CFG_PREFIX "channel_2");
1141
1142             p_channel_assignment->mappings[3] = var_CreateGetIntegerCommand(
1143                                              p_filter, CFG_PREFIX "channel_3");
1144
1145             p_channel_assignment->mappings[4] = var_CreateGetIntegerCommand(
1146                                              p_filter, CFG_PREFIX "channel_4");
1147
1148             for(int i=0;i<ATMO_NUM_CHANNELS;i++)
1149                 msg_Dbg( p_filter, "map software channel %d to hardware channel %d",
1150                 p_channel_assignment->mappings[i],
1151                 i
1152                 );
1153
1154             // gradient_zone_0
1155             char psz_gradient_var_name[30];
1156             char *psz_gradient_file;
1157             for(int i=0;i<ATMO_NUM_CHANNELS;i++)
1158             {
1159                 sprintf(psz_gradient_var_name, CFG_PREFIX "gradient_zone_%d", i);
1160                 psz_gradient_file = var_CreateGetStringCommand(
1161                     p_filter,
1162                     psz_gradient_var_name
1163                     );
1164                 if(psz_gradient_file && strlen(psz_gradient_file)>0)
1165                 {
1166                     msg_Dbg( p_filter, "loading gradientfile %s for "\
1167                                        "zone %d", psz_gradient_file, i);
1168
1169                     int i_res = p_sys->p_atmo_config->getZoneDefinition(i)->
1170                                 LoadGradientFromBitmap(psz_gradient_file);
1171
1172                     if(i_res != ATMO_LOAD_GRADIENT_OK)
1173                     {
1174                         msg_Err( p_filter,"failed to load gradient '%s' with "\
1175                                           "error %d",psz_gradient_file,i_res);
1176                     }
1177                 }
1178                 free( psz_gradient_file );
1179             }
1180
1181             p_sys->p_atmo_dyndata = new CAtmoDynData((vlc_object_t *)p_filter,
1182                 p_sys->p_atmo_config
1183                 );
1184
1185             msg_Dbg( p_filter, "buildin driver initialized");
1186
1187             free(psz_serialdev);
1188         } else {
1189             msg_Err(p_filter,"no serial devicename set");
1190         }
1191     }
1192
1193     switch( p_filter->fmt_in.video.i_chroma )
1194     {
1195     case VLC_CODEC_I420:
1196     case VLC_CODEC_YV12:
1197         // simple enough? Dionoea?
1198         p_sys->pf_extract_mini_image = ExtractMiniImage_YUV;
1199         break;
1200     default:
1201         msg_Dbg( p_filter, "InitFilter-unsupported chroma: %4.4s",
1202                             (char *)&p_filter->fmt_in.video.i_chroma);
1203         p_sys->pf_extract_mini_image = NULL;
1204     }
1205
1206     p_sys->i_crop_x_offset  = 0;
1207     p_sys->i_crop_y_offset  = 0;
1208     p_sys->i_crop_width     = p_filter->fmt_in.video.i_visible_width;
1209     p_sys->i_crop_height    = p_filter->fmt_in.video.i_visible_height;
1210
1211     msg_Dbg( p_filter, "set default crop %d,%d %dx%d",p_sys->i_crop_x_offset,
1212         p_sys->i_crop_y_offset,
1213         p_sys->i_crop_width,
1214         p_sys->i_crop_height );
1215
1216
1217 #if defined(__ATMO_DEBUG__)
1218     /* save debug images to a folder as Bitmap files ? */
1219     p_sys->b_saveframes  = var_CreateGetBoolCommand( p_filter,
1220         CFG_PREFIX "saveframes"
1221         );
1222     msg_Dbg(p_filter,"saveframes = %d", (int)p_sys->b_saveframes);
1223
1224     /*
1225     read debug image folder from config
1226     */
1227     psz_path = var_CreateGetStringCommand( p_filter, CFG_PREFIX "framepath" );
1228     if(psz_path != NULL)
1229     {
1230         strcpy(p_sys->sz_framepath, psz_path);
1231 #if defined( WIN32 )
1232         size_t i_strlen = strlen(p_sys->sz_framepath);
1233         if((i_strlen>0) && (p_sys->sz_framepath[i_strlen-1] != '\\'))
1234         {
1235             p_sys->sz_framepath[i_strlen] = '\\';
1236             p_sys->sz_framepath[i_strlen+1] = 0;
1237         }
1238 #endif
1239         free(psz_path);
1240     }
1241     msg_Dbg(p_filter,"saveframesfolder %s",p_sys->sz_framepath);
1242 #endif
1243
1244     /*
1245        size of extracted image by default 64x48 (other imagesizes are
1246        currently ignored by AtmoWin)
1247     */
1248     p_sys->i_atmo_width  = var_CreateGetIntegerCommand( p_filter,
1249         CFG_PREFIX "width");
1250     p_sys->i_atmo_height = var_CreateGetIntegerCommand( p_filter,
1251         CFG_PREFIX "height");
1252     msg_Dbg(p_filter,"mini image size %d * %d pixels", p_sys->i_atmo_width,
1253         p_sys->i_atmo_height);
1254
1255     /*
1256     because atmowin could also be used for lighten up the room - I think if you
1257     pause the video it would be useful to get a little bit more light into to
1258     your living room? - instead switching on a lamp?
1259     */
1260     p_sys->b_usepausecolor = var_CreateGetBoolCommand( p_filter,
1261         CFG_PREFIX "usepausecolor" );
1262     p_sys->ui_pausecolor_red = (uint8_t)var_CreateGetIntegerCommand( p_filter,
1263         CFG_PREFIX "pcolor-red");
1264     p_sys->ui_pausecolor_green = (uint8_t)var_CreateGetIntegerCommand( p_filter,
1265         CFG_PREFIX "pcolor-green");
1266     p_sys->ui_pausecolor_blue = (uint8_t)var_CreateGetIntegerCommand( p_filter,
1267         CFG_PREFIX "pcolor-blue");
1268     p_sys->i_fadesteps = var_CreateGetIntegerCommand( p_filter,
1269         CFG_PREFIX "fadesteps");
1270     if(p_sys->i_fadesteps < 1)
1271         p_sys->i_fadesteps = 1;
1272     msg_Dbg(p_filter,"use pause color %d, RGB: %d, %d, %d, Fadesteps: %d",
1273         (int)p_sys->b_usepausecolor,
1274         p_sys->ui_pausecolor_red,
1275         p_sys->ui_pausecolor_green,
1276         p_sys->ui_pausecolor_blue,
1277         p_sys->i_fadesteps);
1278
1279     /*
1280     this color is use on shutdown of the filter - the define the
1281     final light after playback... may be used to dim up the light -
1282     how it happens in the cinema...
1283     */
1284     p_sys->ui_endcolor_red = (uint8_t)var_CreateGetIntegerCommand( p_filter,
1285         CFG_PREFIX "ecolor-red");
1286     p_sys->ui_endcolor_green = (uint8_t)var_CreateGetIntegerCommand( p_filter,
1287         CFG_PREFIX "ecolor-green");
1288     p_sys->ui_endcolor_blue = (uint8_t)var_CreateGetIntegerCommand( p_filter,
1289         CFG_PREFIX "ecolor-blue");
1290     p_sys->i_endfadesteps = var_CreateGetIntegerCommand( p_filter,
1291         CFG_PREFIX "efadesteps");
1292     if(p_sys->i_endfadesteps < 1)
1293         p_sys->i_endfadesteps = 1;
1294     msg_Dbg(p_filter,"use ende color RGB: %d, %d, %d, Fadesteps: %d",
1295         p_sys->ui_endcolor_red,
1296         p_sys->ui_endcolor_green,
1297         p_sys->ui_endcolor_blue,
1298         p_sys->i_endfadesteps);
1299
1300     /* if the external DLL was loaded successfully call AtmoInitialize -
1301     (must be done for each thread where you wan't to use AtmoLight!
1302     */
1303     int i = AtmoInitialize(p_filter, false);
1304 #if defined( WIN32 )
1305     if((i != 1) && !b_use_buildin_driver)
1306     {
1307         /* COM Server for AtmoLight not running ?
1308         if the exe path is configured try to start the "userspace" driver
1309         */
1310         psz_path = var_CreateGetStringCommand( p_filter,
1311                                                CFG_PREFIX "atmowinexe" );
1312         if(psz_path != NULL)
1313         {
1314             STARTUPINFO startupinfo;
1315             PROCESS_INFORMATION pinfo;
1316             memset(&startupinfo, 0, sizeof(STARTUPINFO));
1317             startupinfo.cb = sizeof(STARTUPINFO);
1318             if(CreateProcess(psz_path, NULL, NULL, NULL,
1319                 FALSE, 0, NULL, NULL, &startupinfo, &pinfo) == TRUE)
1320             {
1321                 msg_Dbg(p_filter,"launched AtmoWin from %s",psz_path);
1322                 WaitForInputIdle(pinfo.hProcess, 5000);
1323                 /*
1324                 retry to initialize the library COM ... functionality
1325                 after the server was launched
1326                 */
1327                 i = AtmoInitialize(p_filter, false);
1328             } else {
1329                 msg_Err(p_filter,"failed to launch AtmoWin from %s", psz_path);
1330             }
1331             free(psz_path);
1332         }
1333     }
1334 #endif
1335
1336     if(i == 1) /* Init Atmolight success... */
1337     {
1338         msg_Dbg( p_filter, "AtmoInitialize Ok!");
1339
1340         /* Setup Transferbuffers for 64 x 48 , RGB with 32bit Per Pixel */
1341         AtmoCreateTransferBuffers(p_filter, BI_RGB, 4,
1342             p_sys->i_atmo_width,
1343             p_sys->i_atmo_height
1344             );
1345
1346         /* say the userspace driver that a live mode should be activated
1347         the functions returns the old mode for later restore!
1348         */
1349         p_sys->i_AtmoOldEffect = AtmoSwitchEffect(p_filter, emLivePicture);
1350
1351         /*
1352         live view can have two differnt source the AtmoWinA
1353         internal GDI Screencapture and the external one - which we
1354         need here...
1355         */
1356         AtmoSetLiveSource(p_filter, lvsExternal);
1357
1358         /* enable other parts only if everything is fine */
1359         p_sys->b_enabled = true;
1360     }
1361
1362 }
1363
1364
1365 /*****************************************************************************
1366 * CreateFilter: allocates AtmoLight video thread output method
1367 *****************************************************************************
1368 * This function allocates and initializes a AtmoLight vout method.
1369 *****************************************************************************/
1370 static int CreateFilter( vlc_object_t *p_this )
1371 {
1372     filter_t *p_filter = (filter_t *)p_this;
1373     filter_sys_t *p_sys;
1374
1375     /* Allocate structure */
1376     p_sys = (filter_sys_t *)malloc( sizeof( filter_sys_t ) );
1377     p_filter->p_sys = p_sys;
1378     if( p_filter->p_sys == NULL )
1379         return VLC_ENOMEM;
1380     /* set all entries to zero */
1381     memset(p_sys, 0, sizeof( filter_sys_t ));
1382
1383     /* further Setup Function pointers for videolan for calling my filter */
1384     p_filter->pf_video_filter = Filter;
1385
1386     config_ChainParse( p_filter, CFG_PREFIX, ppsz_filter_options,
1387                        p_filter->p_cfg );
1388
1389     AddStateVariableCallback(p_filter);
1390
1391     AddCropVariableCallback(p_filter);
1392
1393     AddAtmoSettingsVariablesCallbacks(p_filter);
1394
1395     Atmo_SetupParameters(p_filter);
1396
1397
1398     return VLC_SUCCESS;
1399 }
1400
1401
1402
1403 /*****************************************************************************
1404 * DestroyFilter: destroy AtmoLight video thread output method
1405 *****************************************************************************
1406 * Terminate an output method created by CreateFilter
1407 *****************************************************************************/
1408
1409 static void DestroyFilter( vlc_object_t *p_this )
1410 {
1411     filter_t *p_filter = (filter_t *)p_this;
1412     filter_sys_t *p_sys =  p_filter->p_sys;
1413
1414     DelStateVariableCallback(p_filter);
1415     DelCropVariableCallback(p_filter);
1416     DelAtmoSettingsVariablesCallbacks(p_filter);
1417
1418     Atmo_Shutdown(p_filter);
1419
1420 #if defined( WIN32 )
1421     if(p_sys->h_AtmoCtrl != NULL)
1422     {
1423         FreeLibrary(p_sys->h_AtmoCtrl);
1424     }
1425 #endif
1426
1427     delete p_sys->p_atmo_dyndata;
1428     delete p_sys->p_atmo_config;
1429
1430     vlc_mutex_destroy( &p_sys->filter_lock );
1431
1432     free( p_sys );
1433 }
1434
1435
1436 /*
1437 function stolen from some other videolan source filter ;-)
1438 for the moment RGB is OK... but better would be a direct transformation
1439 from YUV --> HSV
1440 */
1441 static inline void yuv_to_rgb( uint8_t *r, uint8_t *g, uint8_t *b,
1442                               uint8_t y1, uint8_t u1, uint8_t v1 )
1443 {
1444     /* macros used for YUV pixel conversions */
1445 #   define SCALEBITS 10
1446 #   define ONE_HALF  (1 << (SCALEBITS - 1))
1447 #   define FIX(x)    ((int) ((x) * (1<<SCALEBITS) + 0.5))
1448 #   define CLAMP( x ) (((x) > 255) ? 255 : ((x) < 0) ? 0 : (x));
1449
1450     int y, cb, cr, r_add, g_add, b_add;
1451
1452     cb = u1 - 128;
1453     cr = v1 - 128;
1454     r_add = FIX(1.40200*255.0/224.0) * cr + ONE_HALF;
1455     g_add = - FIX(0.34414*255.0/224.0) * cb
1456         - FIX(0.71414*255.0/224.0) * cr + ONE_HALF;
1457     b_add = FIX(1.77200*255.0/224.0) * cb + ONE_HALF;
1458     y = (y1 - 16) * FIX(255.0/219.0);
1459     *r = CLAMP((y + r_add) >> SCALEBITS);
1460     *g = CLAMP((y + g_add) >> SCALEBITS);
1461     *b = CLAMP((y + b_add) >> SCALEBITS);
1462 }
1463 /******************************************************************************
1464 * ExtractMiniImage_YUV: extract a small image from the picture as 24-bit RGB
1465 *******************************************************************************
1466 * p_sys is a pointer to
1467 * p_inpic is the source frame
1468 * p_transfer_dest is the target buffer for the picture must be big enough!
1469 * (in win32 enviroment this buffer comes from the external DLL where it is
1470 * create as "variant array" and returned through the AtmoLockTransferbuffer
1471 */
1472 static void ExtractMiniImage_YUV(filter_sys_t *p_sys,
1473                                  picture_t *p_inpic,
1474                                  uint8_t *p_transfer_dest)
1475 {
1476     int i_col;
1477     int i_row;
1478     uint8_t *p_src_y;
1479     uint8_t *p_src_u;
1480     uint8_t *p_src_v;
1481     uint8_t *p_rgb_dst_line_red;
1482     uint8_t *p_rgb_dst_line_green;
1483     uint8_t *p_rgb_dst_line_blue;
1484     int i_xpos_y;
1485     int i_xpos_u;
1486     int i_xpos_v;
1487
1488     /* calcute Pointers for Storage of B G R (A) */
1489     p_rgb_dst_line_blue      = p_transfer_dest;
1490     p_rgb_dst_line_green     = p_transfer_dest + 1;
1491     p_rgb_dst_line_red       = p_transfer_dest + 2 ;
1492
1493     int i_row_count = p_sys->i_atmo_height + 1;
1494     int i_col_count = p_sys->i_atmo_width + 1;
1495     int i_y_row,i_u_row,i_v_row,i_pixel_row;
1496     int i_pixel_col;
1497
1498
1499     /*  these two ugly loops extract the small image - goes it faster? how?
1500     the loops are so designed that there is a small border around the extracted
1501     image so we wont get column and row - zero from the frame, and not the most
1502     right and bottom pixels --- which may be clipped on computers useing TV out
1503     - through overscan!
1504
1505     TODO: try to find out if the output is clipped through VLC - and try here
1506     to ingore the clipped away area for a better result!
1507
1508     TODO: performance improvement in InitFilter percalculated the offsets of
1509     the lines inside the planes so I can save (i_row_count * 3) 2xMUL and
1510     one time DIV the same could be done for the inner loop I think...
1511     */
1512     for(i_row = 1; i_row < i_row_count; i_row++)
1513     {
1514         // calcute the current Lines in the source planes for this outputrow
1515         /*  Adresscalcuation  pointer to plane  Length of one pixelrow in bytes
1516         calculate row now number
1517         */
1518         /*
1519            p_inpic->format? transform Pixel row into row of plane...
1520            how? simple? fast? good?
1521         */
1522
1523         /* compute the source pixel row and respect the active cropping */
1524         i_pixel_row = (i_row * p_sys->i_crop_height) / i_row_count
1525             + p_sys->i_crop_y_offset;
1526
1527         /*
1528         trans for these Pixel row into the row of each plane ..
1529         because planesize can differ from image size
1530         */
1531         i_y_row = (i_pixel_row * p_inpic->p[Y_PLANE].i_visible_lines) /
1532             p_inpic->format.i_visible_height;
1533
1534         i_u_row = (i_pixel_row * p_inpic->p[U_PLANE].i_visible_lines) /
1535             p_inpic->format.i_visible_height;
1536
1537         i_v_row = (i_pixel_row * p_inpic->p[V_PLANE].i_visible_lines) /
1538             p_inpic->format.i_visible_height;
1539
1540         /* calculate  the pointers to the pixeldata for this row
1541            in each plane
1542         */
1543         p_src_y = p_inpic->p[Y_PLANE].p_pixels +
1544             p_inpic->p[Y_PLANE].i_pitch * i_y_row;
1545         p_src_u = p_inpic->p[U_PLANE].p_pixels +
1546             p_inpic->p[U_PLANE].i_pitch * i_u_row;
1547         p_src_v = p_inpic->p[V_PLANE].p_pixels +
1548             p_inpic->p[V_PLANE].i_pitch * i_v_row;
1549
1550         for(i_col = 1; i_col < i_col_count; i_col++)
1551         {
1552             i_pixel_col = (i_col * p_sys->i_crop_width) / i_col_count +
1553                 p_sys->i_crop_x_offset;
1554             /*
1555             trans for these Pixel row into the row of each plane ..
1556             because planesize can differ from image size
1557             */
1558             i_xpos_y = (i_pixel_col * p_inpic->p[Y_PLANE].i_visible_pitch) /
1559                 p_inpic->format.i_visible_width;
1560             i_xpos_u = (i_pixel_col * p_inpic->p[U_PLANE].i_visible_pitch) /
1561                 p_inpic->format.i_visible_width;
1562             i_xpos_v = (i_pixel_col * p_inpic->p[V_PLANE].i_visible_pitch) /
1563                 p_inpic->format.i_visible_width;
1564
1565             yuv_to_rgb(p_rgb_dst_line_red,
1566                 p_rgb_dst_line_green,
1567                 p_rgb_dst_line_blue,
1568
1569                 p_src_y[i_xpos_y],
1570                 p_src_u[i_xpos_u],
1571                 p_src_v[i_xpos_v]);
1572
1573             /* +4 because output image should be RGB32 with dword alignment! */
1574             p_rgb_dst_line_red   += 4;
1575             p_rgb_dst_line_green += 4;
1576             p_rgb_dst_line_blue  += 4;
1577         }
1578     }
1579 }
1580
1581
1582 /******************************************************************************
1583 * SaveBitmap: Saves the content of a transferbuffer as Bitmap to disk
1584 *******************************************************************************
1585 * just for debugging
1586 * p_sys -> configuration if Atmo from there the function will get height and
1587 *          width
1588 * p_pixels -> should be the dword aligned BGR(A) image data
1589 * psz_filename -> filename where to store
1590 */
1591 #if defined(__ATMO_DEBUG__)
1592 void SaveBitmap(filter_sys_t *p_sys, uint8_t *p_pixels, char *psz_filename)
1593 {
1594     /* for debug out only used*/
1595     BITMAPINFO bmp_info;
1596     BITMAPFILEHEADER  bmp_fileheader;
1597     FILE *fp_bitmap;
1598
1599     memset(&bmp_info, 0, sizeof(BITMAPINFO));
1600     bmp_info.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
1601     bmp_info.bmiHeader.biSizeImage   = p_sys->i_atmo_height *
1602                                        p_sys->i_atmo_width * 4;
1603     bmp_info.bmiHeader.biCompression = BI_RGB;
1604     bmp_info.bmiHeader.biWidth        = p_sys->i_atmo_width;
1605     bmp_info.bmiHeader.biHeight       = -p_sys->i_atmo_height;
1606     bmp_info.bmiHeader.biBitCount     = 32;
1607     bmp_info.bmiHeader.biPlanes       = 1;
1608
1609     bmp_fileheader.bfReserved1 = 0;
1610     bmp_fileheader.bfReserved2 = 0;
1611     bmp_fileheader.bfSize = sizeof(BITMAPFILEHEADER) +
1612                             sizeof(BITMAPINFOHEADER) +
1613                             bmp_info.bmiHeader.biSizeImage;
1614     bmp_fileheader.bfType = VLC_TWOCC('M','B');
1615     bmp_fileheader.bfOffBits = sizeof(BITMAPFILEHEADER) +
1616                                sizeof(BITMAPINFOHEADER);
1617
1618     fp_bitmap = fopen(psz_filename,"wb");
1619     if( fp_bitmap != NULL)
1620     {
1621         fwrite(&bmp_fileheader, sizeof(BITMAPFILEHEADER), 1, fp_bitmap);
1622         fwrite(&bmp_info.bmiHeader, sizeof(BITMAPINFOHEADER), 1, fp_bitmap);
1623         fwrite(p_pixels, bmp_info.bmiHeader.biSizeImage, 1, fp_bitmap);
1624         fclose(fp_bitmap);
1625     }
1626 }
1627 #endif
1628
1629
1630 /****************************************************************************
1631 * CreateMiniImage: extracts a 64x48 pixel image from the frame
1632 * (there is a small border arround thats why the loops starts with one
1633 * instead zero) without any interpolation
1634 *****************************************************************************/
1635 static void CreateMiniImage( filter_t *p_filter, picture_t *p_inpic)
1636 {
1637     filter_sys_t *p_sys = p_filter->p_sys;
1638     /*
1639     pointer to RGB Buffer created in external libary as safe array which
1640     is locked inside AtmoLockTransferBuffer
1641     */
1642     uint8_t *p_transfer = NULL;
1643 #if defined( __ATMO_DEBUG__ )
1644     /* for debug out only used*/
1645     char sz_filename[MAX_PATH];
1646 #endif
1647
1648     /*
1649     Lock the before created VarArray (AtmoCreateTransferBuffers)
1650     inside my wrapper library and give me a pointer to the buffer!
1651     below linux a global buffer may be used and protected with a mutex?
1652     */
1653     p_transfer = AtmoLockTransferBuffer(p_filter);
1654     if(p_transfer == NULL)
1655     {
1656         msg_Err( p_filter, "AtmoLight no transferbuffer available. "\
1657                            "AtmoLight will be disabled!");
1658         p_sys->b_enabled = false;
1659         return;
1660     }
1661
1662     /*
1663     do the call via pointer to function instead of having a
1664     case structure here
1665     */
1666     p_sys->pf_extract_mini_image(p_sys, p_inpic, p_transfer);
1667
1668
1669 #if defined( __ATMO_DEBUG__ )
1670     /*
1671     if debugging enabled save every 128th image to disk
1672     */
1673     if((p_sys->b_saveframes == true) && (p_sys->sz_framepath[0] != 0 ))
1674     {
1675
1676         if((p_sys->i_framecounter & 127) == 0)
1677         {
1678             sprintf(sz_filename,"%satmo_dbg_%06d.bmp",p_sys->sz_framepath,
1679                 p_sys->i_framecounter);
1680             msg_Dbg(p_filter, "SaveFrame %s",sz_filename);
1681
1682             SaveBitmap(p_sys, p_transfer, sz_filename);
1683         }
1684         p_sys->i_framecounter++;
1685     }
1686 #endif
1687
1688     /* show the colors on the wall */
1689     AtmoSendPixelData(p_filter);
1690 }
1691
1692
1693
1694
1695 /*****************************************************************************
1696 * Filter: calls the extract method and forwards the incomming picture 1:1
1697 *****************************************************************************
1698 *
1699 *****************************************************************************/
1700
1701 static picture_t * Filter( filter_t *p_filter, picture_t *p_pic )
1702 {
1703     filter_sys_t *p_sys = p_filter->p_sys;
1704     if( !p_pic ) return NULL;
1705
1706     if((p_sys->b_enabled == true) &&
1707         (p_sys->pf_extract_mini_image != NULL) &&
1708         (p_sys->b_pause_live == false))
1709     {
1710         CreateMiniImage(p_filter, p_pic);
1711     }
1712
1713     return p_pic;
1714 }
1715
1716
1717 /*****************************************************************************
1718 * FadeToColorThread: Threadmethod which changes slowly the color
1719 * to a target color defined in p_fadethread struct
1720 * use for: Fade to Pause Color,  and Fade to End Color
1721 *****************************************************************************/
1722 static void *FadeToColorThread(vlc_object_t *obj)
1723 {
1724     fadethread_t *p_fadethread = (fadethread_t *)obj;
1725     filter_sys_t *p_sys = (filter_sys_t *)p_fadethread->p_filter->p_sys;
1726     int i_steps_done = 0;
1727     int i_index;
1728     int i_pause_red;
1729     int i_pause_green;
1730     int i_pause_blue;
1731
1732     int i_src_red;
1733     int i_src_green;
1734     int i_src_blue;
1735
1736     uint8_t *p_source = NULL;
1737
1738     int canc = vlc_savecancel ();
1739     /* initialize AtmoWin for this thread! */
1740     AtmoInitialize(p_fadethread->p_filter , true);
1741
1742     uint8_t *p_transfer = AtmoLockTransferBuffer( p_fadethread->p_filter );
1743     if(p_transfer != NULL) {
1744         /* safe colors as "32bit" Integers to avoid overflows*/
1745         i_pause_red   = p_fadethread->ui_red;
1746         i_pause_blue  = p_fadethread->ui_blue;
1747         i_pause_green = p_fadethread->ui_green;
1748
1749         /*
1750         allocate a temporary buffer for the last send
1751         image size less then 15kb
1752         */
1753         int i_size = 4 * p_sys->i_atmo_width * p_sys->i_atmo_height;
1754         p_source = (uint8_t *)malloc( i_size );
1755         if(p_source != NULL)
1756         {
1757             /*
1758             get a copy of the last transfered image as orign for the
1759             fading steps...
1760             */
1761             memcpy(p_source, p_transfer, i_size);
1762             /* send the same pixel data again... to unlock the buffer! */
1763             AtmoSendPixelData( p_fadethread->p_filter );
1764
1765             while( (vlc_object_alive (p_fadethread)) &&
1766                 (i_steps_done < p_fadethread->i_steps))
1767             {
1768                 p_transfer = AtmoLockTransferBuffer( p_fadethread->p_filter );
1769                 if(!p_transfer) break; /* should not happen if it worked
1770                                        one time in the code above! */
1771                 i_steps_done++;
1772                 /*
1773                 move all pixels in the mini image (64x48) one step closer to
1774                 the desired color these loop takes the most time of this
1775                 thread improvements wellcome!
1776                 */
1777                 for(i_index = 0;
1778                     (i_index < i_size) && (vlc_object_alive (p_fadethread));
1779                     i_index+=4)
1780                 {
1781                     i_src_blue  = p_source[i_index+0];
1782                     i_src_green = p_source[i_index+1];
1783                     i_src_red   = p_source[i_index+2];
1784                     p_transfer[i_index+0] = (uint8_t) (((
1785                         (i_pause_blue  - i_src_blue)
1786                         * i_steps_done)/p_fadethread->i_steps)
1787                         + i_src_blue);
1788
1789                     p_transfer[i_index+1] = (uint8_t) (((
1790                         (i_pause_green - i_src_green)
1791                         * i_steps_done)/p_fadethread->i_steps)
1792                         + i_src_green);
1793
1794                     p_transfer[i_index+2] = (uint8_t) (((
1795                         (i_pause_red   - i_src_red)
1796                         * i_steps_done)/p_fadethread->i_steps)
1797                         + i_src_red);
1798                 }
1799
1800                 /* send image to lightcontroller */
1801                 AtmoSendPixelData( p_fadethread->p_filter );
1802                 /* is there something like and interruptable sleep inside
1803                 the VLC libaries? inside native win32 I would use an Event
1804                 (CreateEvent) and here an WaitForSingleObject?
1805                 */
1806                 if(!vlc_object_alive (p_fadethread)) break;
1807                 msleep(10000);
1808                 if(!vlc_object_alive (p_fadethread)) break;
1809                 msleep(10000);
1810                 if(!vlc_object_alive (p_fadethread)) break;
1811                 msleep(10000);
1812                 if(!vlc_object_alive (p_fadethread)) break;
1813                 msleep(10000);
1814             }
1815             free(p_source);
1816         } else {
1817             /* in failure of malloc also unlock buffer  */
1818             AtmoSendPixelData(p_fadethread->p_filter);
1819         }
1820     }
1821     /* call indirect to OleUnitialize() for this thread */
1822     AtmoFinalize(p_fadethread->p_filter, 0);
1823     vlc_restorecancel (canc);
1824     return NULL;
1825 }
1826
1827 /*****************************************************************************
1828 * CheckAndStopFadeThread: if there is a fadethread structure left, or running.
1829 ******************************************************************************
1830 * this function will stop the thread ... and waits for its termination
1831 * before removeing the objects from vout_sys_t ...
1832 ******************************************************************************/
1833 static void CheckAndStopFadeThread(filter_t *p_filter)
1834 {
1835     filter_sys_t *p_sys = (filter_sys_t *)p_filter->p_sys;
1836     vlc_mutex_lock( &p_sys->filter_lock );
1837     if(p_sys->p_fadethread != NULL)
1838     {
1839         msg_Dbg(p_filter, "kill still running fadeing thread...");
1840
1841         p_sys->p_fadethread->b_die = true;
1842
1843         vlc_thread_join(p_sys->p_fadethread);
1844
1845         vlc_object_release(p_sys->p_fadethread);
1846         p_sys->p_fadethread = NULL;
1847     }
1848     vlc_mutex_unlock( &p_sys->filter_lock );
1849 }
1850
1851 /*****************************************************************************
1852 * StateCallback: Callback for the inputs variable "State" to get notified
1853 * about Pause and Continue Playback events.
1854 *****************************************************************************/
1855 static int StateCallback( vlc_object_t *p_this, char const *psz_cmd,
1856                          vlc_value_t oldval, vlc_value_t newval,
1857                          void *p_data )
1858 {
1859     filter_t *p_filter = (filter_t *)p_data;
1860     filter_sys_t *p_sys = (filter_sys_t *)p_filter->p_sys;
1861
1862     if((p_sys->b_usepausecolor == true) && (p_sys->b_enabled == true))
1863     {
1864         msg_Dbg(p_filter, "state change from: %d to %d", oldval.i_int,
1865             newval.i_int);
1866
1867         if((newval.i_int == PAUSE_S) && (oldval.i_int == PLAYING_S))
1868         {
1869             /* tell the other thread to stop sending images to light
1870                controller */
1871             p_sys->b_pause_live = true;
1872
1873             // ggf. alten Thread abräumen should not happen....
1874             CheckAndStopFadeThread(p_filter);
1875
1876             // perpare spawn fadeing thread
1877             vlc_mutex_lock( &p_sys->filter_lock );
1878             /*
1879             launch only a new thread if there is none active!
1880             or waiting for cleanup
1881             */
1882             if(p_sys->p_fadethread == NULL)
1883             {
1884                 p_sys->p_fadethread = (fadethread_t *)vlc_object_create(
1885                      p_filter,
1886                      sizeof(fadethread_t) );
1887
1888                 p_sys->p_fadethread->p_filter = p_filter;
1889                 p_sys->p_fadethread->ui_red   = p_sys->ui_pausecolor_red;
1890                 p_sys->p_fadethread->ui_green = p_sys->ui_pausecolor_green;
1891                 p_sys->p_fadethread->ui_blue  = p_sys->ui_pausecolor_blue;
1892                 p_sys->p_fadethread->i_steps  = p_sys->i_fadesteps;
1893
1894                 if( vlc_thread_create( p_sys->p_fadethread,
1895                     "AtmoLight fadeing",
1896                     FadeToColorThread,
1897                     VLC_THREAD_PRIORITY_LOW ) )
1898                 {
1899                     msg_Err( p_filter, "cannot create FadeToColorThread" );
1900                     vlc_object_release( p_sys->p_fadethread );
1901                     p_sys->p_fadethread = NULL;
1902                 }
1903             }
1904             vlc_mutex_unlock( &p_sys->filter_lock );
1905         }
1906
1907         if((newval.i_int == PLAYING_S) && (oldval.i_int == PAUSE_S))
1908         {
1909             /* playback continues check thread state */
1910             CheckAndStopFadeThread(p_filter);
1911             /* reactivate the Render function... to do its normal work */
1912             p_sys->b_pause_live = false;
1913         }
1914     }
1915
1916     return VLC_SUCCESS;
1917 }
1918
1919 /*****************************************************************************
1920 * AddPlaylistInputThreadStateCallback: Setup call back on "State" Variable
1921 *****************************************************************************
1922 * Add Callback function to the "state" variable of the input thread..
1923 * first find the PlayList and get the input thread from there to attach
1924 * my callback? is vlc_object_find the right way for this??
1925 *****************************************************************************/
1926 static void AddStateVariableCallback(filter_t *p_filter)
1927 {
1928     playlist_t *p_playlist = pl_Hold( p_filter );
1929     input_thread_t *p_input = playlist_CurrentInput( p_playlist );
1930     if(p_input)
1931     {
1932         var_AddCallback( p_input, "state", StateCallback, p_filter );
1933         vlc_object_release( p_input );
1934     }
1935     pl_Release( p_filter );
1936 }
1937
1938 /*****************************************************************************
1939 * DelPlaylistInputThreadStateCallback: Remove call back on "State" Variable
1940 *****************************************************************************
1941 * Delete the callback function to the "state" variable of the input thread...
1942 * first find the PlayList and get the input thread from there to attach
1943 * my callback? is vlc_object_find the right way for this??
1944 *****************************************************************************/
1945 static void DelStateVariableCallback( filter_t *p_filter )
1946 {
1947     playlist_t *p_playlist = pl_Hold( p_filter );
1948     input_thread_t *p_input = playlist_CurrentInput( p_playlist );
1949     if(p_input)
1950     {
1951         var_DelCallback( p_input, "state", StateCallback, p_filter );
1952         vlc_object_release( p_input );
1953     }
1954     pl_Release( p_filter );
1955 }
1956
1957
1958 static int CropCallback(vlc_object_t *p_this, char const *psz_cmd,
1959                         vlc_value_t oldval, vlc_value_t newval,
1960                         void *p_data)
1961 {
1962     vout_thread_t *p_vout = (vout_thread_t *)p_this;
1963     filter_t *p_filter = (filter_t *)p_data;
1964     filter_sys_t *p_sys = (filter_sys_t *)p_filter->p_sys;
1965
1966     /*
1967     //if the handler is attache to crop variable directly!
1968     int i_visible_width, i_visible_height, i_x_offset, i_y_offset;
1969     atmo_parse_crop(newval.psz_string, p_vout->fmt_render,
1970     p_vout->fmt_render,
1971     i_visible_width, i_visible_height,
1972     i_x_offset, i_y_offset);
1973     p_sys->i_crop_x_offset  = i_x_offset;
1974     p_sys->i_crop_y_offset  = i_y_offset;
1975     p_sys->i_crop_width     = i_visible_width;
1976     p_sys->i_crop_height    = i_visible_height;
1977     */
1978
1979     p_sys->i_crop_x_offset  = p_vout->fmt_in.i_x_offset;
1980     p_sys->i_crop_y_offset  = p_vout->fmt_in.i_y_offset;
1981     p_sys->i_crop_width     = p_vout->fmt_in.i_visible_width;
1982     p_sys->i_crop_height    = p_vout->fmt_in.i_visible_height;
1983
1984     msg_Dbg(p_filter, "cropping picture %ix%i to %i,%i,%ix%i",
1985         p_vout->fmt_in.i_width,
1986         p_vout->fmt_in.i_height,
1987         p_sys->i_crop_x_offset,
1988         p_sys->i_crop_y_offset,
1989         p_sys->i_crop_width,
1990         p_sys->i_crop_height
1991         );
1992
1993     return VLC_SUCCESS;
1994 }
1995
1996
1997 static void AddCropVariableCallback( filter_t *p_filter)
1998 {
1999     vout_thread_t *p_vout = (vout_thread_t *)vlc_object_find( p_filter,
2000         VLC_OBJECT_VOUT,
2001         FIND_ANYWHERE );
2002     if( p_vout )
2003     {
2004         var_AddCallback( p_vout, "crop-update", CropCallback, p_filter );
2005         vlc_object_release( p_vout );
2006     }
2007 }
2008
2009 static void DelCropVariableCallback( filter_t *p_filter)
2010 {
2011     vout_thread_t *p_vout = (vout_thread_t *)vlc_object_find( p_filter,
2012         VLC_OBJECT_VOUT,
2013         FIND_ANYWHERE );
2014     if( p_vout )
2015     {
2016         var_DelCallback( p_vout, "crop-update", CropCallback, p_filter );
2017         vlc_object_release( p_vout );
2018     }
2019 }
2020
2021
2022 /****************************************************************************
2023 * StateCallback: Callback for the inputs variable "State" to get notified
2024 * about Pause and Continue Playback events.
2025 *****************************************************************************/
2026 static int AtmoSettingsCallback( vlc_object_t *p_this, char const *psz_var,
2027                                  vlc_value_t oldval, vlc_value_t newval,
2028                                  void *p_data )
2029 {
2030     filter_t *p_filter = (filter_t *)p_data;
2031     filter_sys_t *p_sys = (filter_sys_t *)p_filter->p_sys;
2032
2033     CAtmoConfig *p_atmo_config = p_sys->p_atmo_config;
2034     if(p_atmo_config)
2035     {
2036
2037        msg_Dbg(p_filter, "apply AtmoSettingsCallback %s (int: %d -> %d)",
2038              psz_var,
2039              oldval.i_int,
2040              newval.i_int
2041        );
2042
2043         if( !strcmp( psz_var, CFG_PREFIX "filtermode" ))
2044             p_atmo_config->setLiveViewFilterMode( (AtmoFilterMode)newval.i_int);
2045
2046         else if( !strcmp( psz_var, CFG_PREFIX "PercentNew" ))
2047                  p_atmo_config->setLiveViewFilter_PercentNew( newval.i_int );
2048
2049         else if( !strcmp( psz_var, CFG_PREFIX "MeanLength" ))
2050                  p_atmo_config->setLiveViewFilter_MeanLength( newval.i_int );
2051
2052         else if( !strcmp( psz_var, CFG_PREFIX "MeanThreshold" ))
2053                  p_atmo_config->setLiveViewFilter_MeanThreshold( newval.i_int );
2054
2055         else if( !strcmp( psz_var, CFG_PREFIX "EdgeWeightning" ))
2056                  p_atmo_config->setLiveView_EdgeWeighting( newval.i_int );
2057
2058         else if( !strcmp( psz_var, CFG_PREFIX "Brightness" ))
2059                  p_atmo_config->setLiveView_BrightCorrect( newval.i_int );
2060
2061         else if( !strcmp( psz_var, CFG_PREFIX "DarknessLimit" ))
2062                  p_atmo_config->setLiveView_DarknessLimit( newval.i_int );
2063
2064         else if( !strcmp( psz_var, CFG_PREFIX "HueWinSize" ))
2065                  p_atmo_config->setLiveView_HueWinSize( newval.i_int );
2066
2067         else if( !strcmp( psz_var, CFG_PREFIX "SatWinSize" ))
2068                  p_atmo_config->setLiveView_SatWinSize( newval.i_int );
2069
2070         else if( !strcmp( psz_var, CFG_PREFIX "FrameDelay" ))
2071                  p_atmo_config->setLiveView_FrameDelay( newval.i_int );
2072
2073         else if( !strcmp( psz_var, CFG_PREFIX "whiteadj" ))
2074                  p_atmo_config->setUseSoftwareWhiteAdj( newval.b_bool );
2075
2076         else if( !strcmp( psz_var, CFG_PREFIX "white-red" ))
2077                  p_atmo_config->setWhiteAdjustment_Red( newval.i_int );
2078
2079         else if( !strcmp( psz_var, CFG_PREFIX "white-green" ))
2080                  p_atmo_config->setWhiteAdjustment_Green( newval.i_int );
2081
2082         else if( !strcmp( psz_var, CFG_PREFIX "white-blue" ))
2083                  p_atmo_config->setWhiteAdjustment_Blue( newval.i_int );
2084
2085     }
2086     return VLC_SUCCESS;
2087 }
2088
2089 static void AddAtmoSettingsVariablesCallbacks(filter_t *p_filter)
2090 {
2091    var_AddCallback( p_filter, CFG_PREFIX "filtermode",
2092                     AtmoSettingsCallback, p_filter );
2093    var_AddCallback( p_filter, CFG_PREFIX "PercentNew",
2094                     AtmoSettingsCallback, p_filter );
2095
2096
2097    var_AddCallback( p_filter, CFG_PREFIX "MeanLength",
2098                     AtmoSettingsCallback, p_filter );
2099    var_AddCallback( p_filter, CFG_PREFIX "MeanThreshold",
2100                     AtmoSettingsCallback, p_filter );
2101
2102    var_AddCallback( p_filter, CFG_PREFIX "EdgeWeightning",
2103                     AtmoSettingsCallback, p_filter );
2104    var_AddCallback( p_filter, CFG_PREFIX "Brightness",
2105                     AtmoSettingsCallback, p_filter );
2106    var_AddCallback( p_filter, CFG_PREFIX "DarknessLimit",
2107                     AtmoSettingsCallback, p_filter );
2108
2109    var_AddCallback( p_filter, CFG_PREFIX "HueWinSize",
2110                     AtmoSettingsCallback, p_filter );
2111    var_AddCallback( p_filter, CFG_PREFIX "SatWinSize",
2112                     AtmoSettingsCallback, p_filter );
2113    var_AddCallback( p_filter, CFG_PREFIX "FrameDelay",
2114                     AtmoSettingsCallback, p_filter );
2115
2116
2117    var_AddCallback( p_filter, CFG_PREFIX "whiteadj",
2118                     AtmoSettingsCallback, p_filter );
2119    var_AddCallback( p_filter, CFG_PREFIX "white-red",
2120                     AtmoSettingsCallback, p_filter );
2121    var_AddCallback( p_filter, CFG_PREFIX "white-green",
2122                     AtmoSettingsCallback, p_filter );
2123    var_AddCallback( p_filter, CFG_PREFIX "white-blue",
2124                     AtmoSettingsCallback, p_filter );
2125 }
2126
2127 static void DelAtmoSettingsVariablesCallbacks( filter_t *p_filter )
2128 {
2129
2130    var_DelCallback( p_filter, CFG_PREFIX "filtermode",
2131                     AtmoSettingsCallback, p_filter );
2132
2133    var_DelCallback( p_filter, CFG_PREFIX "PercentNew",
2134                     AtmoSettingsCallback, p_filter );
2135    var_DelCallback( p_filter, CFG_PREFIX "MeanLength",
2136                     AtmoSettingsCallback, p_filter );
2137    var_DelCallback( p_filter, CFG_PREFIX "MeanThreshold",
2138                     AtmoSettingsCallback, p_filter );
2139
2140    var_DelCallback( p_filter, CFG_PREFIX "EdgeWeightning",
2141                     AtmoSettingsCallback, p_filter );
2142    var_DelCallback( p_filter, CFG_PREFIX "Brightness",
2143                     AtmoSettingsCallback, p_filter );
2144    var_DelCallback( p_filter, CFG_PREFIX "DarknessLimit",
2145                     AtmoSettingsCallback, p_filter );
2146
2147    var_DelCallback( p_filter, CFG_PREFIX "HueWinSize",
2148                     AtmoSettingsCallback, p_filter );
2149    var_DelCallback( p_filter, CFG_PREFIX "SatWinSize",
2150                     AtmoSettingsCallback, p_filter );
2151    var_DelCallback( p_filter, CFG_PREFIX "FrameDelay",
2152                     AtmoSettingsCallback, p_filter );
2153
2154
2155    var_DelCallback( p_filter, CFG_PREFIX "whiteadj",
2156                     AtmoSettingsCallback, p_filter );
2157    var_DelCallback( p_filter, CFG_PREFIX "white-red",
2158                     AtmoSettingsCallback, p_filter );
2159    var_DelCallback( p_filter, CFG_PREFIX "white-green",
2160                     AtmoSettingsCallback, p_filter );
2161    var_DelCallback( p_filter, CFG_PREFIX "white-blue",
2162                     AtmoSettingsCallback, p_filter );
2163
2164 }
2165
2166
2167 #if defined(__ATMO_DEBUG__)
2168 static void atmo_parse_crop(char *psz_cropconfig,
2169                             video_format_t fmt_in,
2170                             video_format_t fmt_render,
2171                             int &i_visible_width, int &i_visible_height,
2172                             int &i_x_offset, int &i_y_offset )
2173 {
2174     int64_t i_aspect_num, i_aspect_den;
2175     unsigned int i_width, i_height;
2176
2177     i_visible_width  = fmt_in.i_visible_width;
2178     i_visible_height = fmt_in.i_visible_height;
2179     i_x_offset       = fmt_in.i_x_offset;
2180     i_y_offset       = fmt_in.i_y_offset;
2181
2182     char *psz_end = NULL, *psz_parser = strchr( psz_cropconfig, ':' );
2183     if( psz_parser )
2184     {
2185         /* We're using the 3:4 syntax */
2186         i_aspect_num = strtol( psz_cropconfig, &psz_end, 10 );
2187         if( psz_end == psz_cropconfig || !i_aspect_num ) return;
2188
2189         i_aspect_den = strtol( ++psz_parser, &psz_end, 10 );
2190         if( psz_end == psz_parser || !i_aspect_den ) return;
2191
2192         i_width = fmt_in.i_sar_den * fmt_render.i_visible_height *
2193             i_aspect_num / i_aspect_den / fmt_in.i_sar_num;
2194
2195         i_height = fmt_render.i_visible_width*fmt_in.i_sar_num *
2196             i_aspect_den / i_aspect_num / fmt_in.i_sar_den;
2197
2198         if( i_width < fmt_render.i_visible_width )
2199         {
2200             i_x_offset = fmt_render.i_x_offset +
2201                 (fmt_render.i_visible_width - i_width) / 2;
2202             i_visible_width = i_width;
2203         }
2204         else
2205         {
2206             i_y_offset = fmt_render.i_y_offset +
2207                 (fmt_render.i_visible_height - i_height) / 2;
2208             i_visible_height = i_height;
2209         }
2210     }
2211     else
2212     {
2213         psz_parser = strchr( psz_cropconfig, 'x' );
2214         if( psz_parser )
2215         {
2216             /* Maybe we're using the <width>x<height>+<left>+<top> syntax */
2217             unsigned int i_crop_width, i_crop_height, i_crop_top, i_crop_left;
2218
2219             i_crop_width = strtol( psz_cropconfig, &psz_end, 10 );
2220             if( psz_end != psz_parser ) return;
2221
2222             psz_parser = strchr( ++psz_end, '+' );
2223             i_crop_height = strtol( psz_end, &psz_end, 10 );
2224             if( psz_end != psz_parser ) return;
2225
2226             psz_parser = strchr( ++psz_end, '+' );
2227             i_crop_left = strtol( psz_end, &psz_end, 10 );
2228             if( psz_end != psz_parser ) return;
2229
2230             psz_end++;
2231             i_crop_top = strtol( psz_end, &psz_end, 10 );
2232             if( *psz_end != '\0' ) return;
2233
2234             i_width = i_crop_width;
2235             i_visible_width = i_width;
2236
2237             i_height = i_crop_height;
2238             i_visible_height = i_height;
2239
2240             i_x_offset = i_crop_left;
2241             i_y_offset = i_crop_top;
2242         }
2243         else
2244         {
2245             /* Maybe we're using the <left>+<top>+<right>+<bottom> syntax */
2246             unsigned int i_crop_top, i_crop_left, i_crop_bottom, i_crop_right;
2247
2248             psz_parser = strchr( psz_cropconfig, '+' );
2249             i_crop_left = strtol( psz_cropconfig, &psz_end, 10 );
2250             if( psz_end != psz_parser ) return;
2251
2252             psz_parser = strchr( ++psz_end, '+' );
2253             i_crop_top = strtol( psz_end, &psz_end, 10 );
2254             if( psz_end != psz_parser ) return;
2255
2256             psz_parser = strchr( ++psz_end, '+' );
2257             i_crop_right = strtol( psz_end, &psz_end, 10 );
2258             if( psz_end != psz_parser ) return;
2259
2260             psz_end++;
2261             i_crop_bottom = strtol( psz_end, &psz_end, 10 );
2262             if( *psz_end != '\0' ) return;
2263
2264             i_width = fmt_render.i_visible_width - i_crop_left - i_crop_right;
2265             i_visible_width = i_width;
2266
2267             i_height = fmt_render.i_visible_height - i_crop_top - i_crop_bottom;
2268             i_visible_height = i_height;
2269
2270             i_x_offset = i_crop_left;
2271             i_y_offset = i_crop_top;
2272         }
2273     }
2274 }
2275 #endif