]> git.sesse.net Git - mlt/blob - src/swig/mlt.i
Add Mlt::Profile.list().
[mlt] / src / swig / mlt.i
1 /**
2  * mlt.i - Swig Bindings for mlt++
3  * Copyright (C) 2004-2005 Charles Yates
4  * Author: Charles Yates <charles.yates@pandora.be>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License as published
8  * by the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program 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
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19  */
20
21 %module mlt
22 %include "carrays.i"
23 %array_class(unsigned char, unsignedCharArray);
24
25 %{
26 #include <mlt++/Mlt.h>
27 int mlt_log_get_level( void );
28 void mlt_log_set_level( int );
29 %}
30
31 /** These methods return objects which should be gc'd.
32  */
33
34 namespace Mlt {
35 %newobject Factory::init( const char * );
36 %newobject Factory::producer( Profile &, char *, char * );
37 %newobject Factory::filter( Profile &, char *, char * );
38 %newobject Factory::transition( Profile &, char *, char * );
39 %newobject Factory::consumer( Profile &, char *, char * );
40 %newobject Properties::listen( const char *, void *, mlt_listener );
41 %newobject Properties::setup_wait_for( const char * );
42 %newobject Properties::parse_yaml( const char * );
43 %newobject Service::producer( );
44 %newobject Service::consumer( );
45 %newobject Service::get_frame( int );
46 %newobject Service::filter( int );
47 %newobject Producer::filter( int );
48 %newobject Producer::cut( int, int );
49 %newobject Playlist::current( );
50 %newobject Playlist::clip_info( int );
51 %newobject Playlist::get_clip( int );
52 %newobject Multitrack::track( int );
53 %newobject Tractor::multitrack( );
54 %newobject Tractor::field( );
55 %newobject Tractor::track( int );
56 %newobject Frame::get_original_producer( );
57 %newobject Repository::consumers( );
58 %newobject Repository::filters( );
59 %newobject Repository::producers( );
60 %newobject Repository::transitions( );
61 %newobject Repository::metadata( mlt_service_type, const char * );
62 %newobject Repository::languages( );
63 %newobject Profile::list();
64 }
65
66 /** Classes to wrap.
67  */
68
69 %include <framework/mlt_types.h>
70 %include <framework/mlt_factory.h>
71 %include <framework/mlt_version.h>
72 int mlt_log_get_level( void );
73 void mlt_log_set_level( int );
74 %include <MltFactory.h>
75 %include <MltRepository.h>
76 %include <MltEvent.h>
77 %include <MltProperties.h>
78 %include <MltFrame.h>
79 %include <MltGeometry.h>
80 %include <MltService.h>
81 %include <MltProducer.h>
82 %include <MltProfile.h>
83 %include <MltPlaylist.h>
84 %include <MltConsumer.h>
85 %include <MltFilter.h>
86 %include <MltTransition.h>
87 %include <MltMultitrack.h>
88 %include <MltField.h>
89 %include <MltTractor.h>
90 %include <MltParser.h>
91 %include <MltFilteredConsumer.h>
92
93 #if defined(SWIGRUBY)
94
95 %{
96
97 static void ruby_listener( mlt_properties owner, void *object );
98
99 class RubyListener
100 {
101         private:
102                 VALUE callback;
103                 Mlt::Event *event;
104
105         public:
106                 RubyListener( Mlt::Properties &properties, char *id, VALUE callback ) : 
107                         callback( callback ) 
108                 {
109                         event = properties.listen( id, this, ( mlt_listener )ruby_listener );
110                 }
111
112                 ~RubyListener( )
113                 {
114                         delete event;
115                 }
116
117         void mark( ) 
118                 { 
119                         ((void (*)(VALUE))(rb_gc_mark))( callback ); 
120                 }
121
122         void doit( ) 
123                 {
124                 ID method = rb_intern( "call" );
125                 rb_funcall( callback, method, 0 );
126         }
127 };
128
129 static void ruby_listener( mlt_properties owner, void *object )
130 {
131         RubyListener *o = static_cast< RubyListener * >( object );
132         o->doit( );
133 }
134
135 void markRubyListener( void* p ) 
136 {
137     RubyListener *o = static_cast<RubyListener*>( p );
138     o->mark( );
139 }
140
141 %}
142
143 // Ruby wrapper
144 %rename( Listener )  RubyListener;
145 %markfunc RubyListener "markRubyListener";
146
147 class RubyListener 
148 {
149         public:
150                 RubyListener( Mlt::Properties &properties, char *id, VALUE callback );
151 };
152
153 #endif
154
155 #if defined(SWIGPYTHON)
156 %{
157 typedef struct {
158         int size;
159         char* data;
160 } binary_data;
161
162 binary_data frame_get_waveform( Mlt::Frame &frame, int w, int h )
163 {
164         binary_data result = {
165                 w * h,
166                 (char*) frame.get_waveform( w, h )
167         };
168         return result;
169 }
170
171 %}
172
173 %typemap(out) binary_data {
174         $result = PyString_FromStringAndSize( $1.data, $1.size );
175 }
176
177 binary_data frame_get_waveform(Mlt::Frame&, int, int);
178
179 #endif