392faecaefef2e18eb4da338df1f39b395d28ba8
[melted] / src / modules / core / filter_region.c
1 /*
2 * filter_region.c -- region filter
3 * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4 * Author: Charles Yates <charles.yates@pandora.be>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #include "filter_region.h"
22 #include "transition_region.h"
23
24 #include <framework/mlt.h>
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29
30 /** Filter processing.
31 */
32
33 static mlt_frame filter_process( mlt_filter this, mlt_frame frame )
34 {
35 // Get the properties of the filter
36 mlt_properties properties = MLT_FILTER_PROPERTIES( this );
37
38 // Get the region transition
39 mlt_transition transition = mlt_properties_get_data( properties, "_transition", NULL );
40
41 // Create the transition if not available
42 if ( transition == NULL )
43 {
44 // Create the transition
45 transition = mlt_factory_transition( "region", NULL );
46
47 // Register with the filter
48 mlt_properties_set_data( properties, "_transition", transition, 0, ( mlt_destructor )mlt_transition_close, NULL );
49
50 // Pass a reference to this filter down
51 mlt_properties_set_data( MLT_TRANSITION_PROPERTIES( transition ), "_region_filter", this, 0, NULL, NULL );
52 }
53
54 // Pass all properties down
55 mlt_properties_pass( MLT_TRANSITION_PROPERTIES( transition ), properties, "" );
56
57 // Process the frame
58 return mlt_transition_process( transition, frame, NULL );
59 }
60
61 /** Constructor for the filter.
62 */
63
64 mlt_filter filter_region_init( void *arg )
65 {
66 // Create a new filter
67 mlt_filter this = mlt_filter_new( );
68
69 // Further initialisation
70 if ( this != NULL )
71 {
72 // Get the properties from the filter
73 mlt_properties properties = MLT_FILTER_PROPERTIES( this );
74
75 // Assign the filter process method
76 this->process = filter_process;
77
78 // Resource defines the shape of the region
79 mlt_properties_set( properties, "resource", arg == NULL ? "rectangle" : arg );
80
81 // Ensure that attached filters are handled privately
82 mlt_properties_set_int( properties, "_filter_private", 1 );
83 }
84
85 // Return the filter
86 return this;
87 }
88