MltProducer.{h,cpp}, swig/mltpp.i: add method Producer::get_frame.
[melted] / mlt++ / swig / mltpp.i
1 /**
2  * mltpp.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 mltpp
22 %include "carrays.i"
23 %array_class(unsigned char, unsignedCharArray);
24
25 %{
26 #include <mlt++/Mlt.h>
27 %}
28
29 /** These methods return objects which should be gc'd.
30  */
31
32 namespace Mlt {
33 %newobject Factory::init( const char * );
34 %newobject Factory::producer( Profile &, char *, char * );
35 %newobject Factory::filter( Profile &, char *, char * );
36 %newobject Factory::transition( Profile &, char *, char * );
37 %newobject Factory::consumer( Profile &, char *, char * );
38 %newobject Properties::listen( char *, void *, mlt_listener );
39 %newobject Service::producer( );
40 %newobject Service::consumer( );
41 %newobject Service::get_frame( int );
42 %newobject Service::filter( int );
43 %newobject Producer::filter( int );
44 %newobject Producer::cut( int, int );
45 %newobject Producer::get_frame( int );
46 %newobject Playlist::current( );
47 %newobject Playlist::clip_info( int );
48 %newobject Playlist::get_clip( int );
49 %newobject Multitrack::track( int );
50 %newobject Tractor::multitrack( );
51 %newobject Tractor::field( );
52 %newobject Tractor::track( int );
53 %newobject Frame::get_original_producer( );
54 %newobject Miracle::execute( char * );
55 %newobject Miracle::push( char *, Service & );
56 %newobject Miracle::unit( int );
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 }
63
64 /** Classes to wrap.
65  */
66
67 %include <framework/mlt_types.h>
68 %include <framework/mlt_factory.h>
69 %include <MltFactory.h>
70 %include <MltRepository.h>
71 %include <MltEvent.h>
72 %include <MltProperties.h>
73 %include <MltFrame.h>
74 %include <MltGeometry.h>
75 %include <MltService.h>
76 %include <MltProducer.h>
77 %include <MltProfile.h>
78 %include <MltPlaylist.h>
79 %include <MltConsumer.h>
80 %include <MltFilter.h>
81 %include <MltTransition.h>
82 %include <MltMultitrack.h>
83 %include <MltField.h>
84 %include <MltTractor.h>
85 %include <MltParser.h>
86 %include <MltFilteredConsumer.h>
87 %include <MltMiracle.h>
88 %include <MltResponse.h>
89
90 #if defined(SWIGRUBY)
91
92 %{
93
94 static void ruby_listener( mlt_properties owner, void *object );
95
96 class RubyListener
97 {
98         private:
99                 VALUE callback;
100                 Mlt::Event *event;
101
102         public:
103                 RubyListener( Mlt::Properties &properties, char *id, VALUE callback ) : 
104                         callback( callback ) 
105                 {
106                         event = properties.listen( id, this, ( mlt_listener )ruby_listener );
107                 }
108
109                 ~RubyListener( )
110                 {
111                         delete event;
112                 }
113
114         void mark( ) 
115                 { 
116                         ((void (*)(VALUE))(rb_gc_mark))( callback ); 
117                 }
118
119         void doit( ) 
120                 {
121                 ID method = rb_intern( "call" );
122                 rb_funcall( callback, method, 0 );
123         }
124 };
125
126 static void ruby_listener( mlt_properties owner, void *object )
127 {
128         RubyListener *o = static_cast< RubyListener * >( object );
129         o->doit( );
130 }
131
132 void markRubyListener( void* p ) 
133 {
134     RubyListener *o = static_cast<RubyListener*>( p );
135     o->mark( );
136 }
137
138 %}
139
140 // Ruby wrapper
141 %rename( Listener )  RubyListener;
142 %markfunc RubyListener "markRubyListener";
143
144 class RubyListener 
145 {
146         public:
147                 RubyListener( Mlt::Properties &properties, char *id, VALUE callback );
148 };
149
150 #endif
151