461b33d7ab6f15326b195cce0b6ca165c175f145
[melted] / mlt++ / src / MltTractor.cpp
1 /**
2 * MltTractor.cpp - Tractor wrapper
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 #include "MltTractor.h"
22 #include "MltMultitrack.h"
23 #include "MltField.h"
24 #include "MltTransition.h"
25 #include "MltFilter.h"
26 #include "MltPlaylist.h"
27 using namespace Mlt;
28
29 Tractor::Tractor( ) :
30 instance( mlt_tractor_new( ) )
31 {
32 }
33
34 Tractor::Tractor( Service &tractor ) :
35 instance( NULL )
36 {
37 if ( tractor.type( ) == tractor_type )
38 {
39 instance = ( mlt_tractor )tractor.get_service( );
40 inc_ref( );
41 }
42 }
43
44 Tractor::Tractor( mlt_tractor tractor ) :
45 instance( tractor )
46 {
47 inc_ref( );
48 }
49
50 Tractor::Tractor( Tractor &tractor ) :
51 instance( tractor.get_tractor( ) )
52 {
53 inc_ref( );
54 }
55
56 Tractor::~Tractor( )
57 {
58 mlt_tractor_close( instance );
59 }
60
61 mlt_tractor Tractor::get_tractor( )
62 {
63 return instance;
64 }
65
66 mlt_producer Tractor::get_producer( )
67 {
68 return mlt_tractor_producer( get_tractor( ) );
69 }
70
71 Multitrack *Tractor::multitrack( )
72 {
73 return new Multitrack( mlt_tractor_multitrack( get_tractor( ) ) );
74 }
75
76 Field *Tractor::field( )
77 {
78 return new Field( mlt_tractor_field( get_tractor( ) ) );
79 }
80
81 void Tractor::refresh( )
82 {
83 return mlt_tractor_refresh( get_tractor( ) );
84 }
85
86 int Tractor::set_track( Producer &producer, int index )
87 {
88 return mlt_tractor_set_track( get_tractor( ), producer.get_producer( ), index );
89 }
90
91 Producer *Tractor::track( int index )
92 {
93 mlt_producer producer = mlt_tractor_get_track( get_tractor( ), index );
94 return producer != NULL ? new Producer( producer ) : NULL;
95 }
96
97 int Tractor::count( )
98 {
99 return mlt_multitrack_count( mlt_tractor_multitrack( get_tractor( ) ) );
100 }
101
102 void Tractor::plant_transition( Transition &transition, int a_track, int b_track )
103 {
104 mlt_field_plant_transition( mlt_tractor_field( get_tractor( ) ), transition.get_transition( ), a_track, b_track );
105 }
106
107 void Tractor::plant_transition( Transition *transition, int a_track, int b_track )
108 {
109 if ( transition != NULL )
110 mlt_field_plant_transition( mlt_tractor_field( get_tractor( ) ), transition->get_transition( ), a_track, b_track );
111 }
112
113 void Tractor::plant_filter( Filter &filter, int track )
114 {
115 mlt_field_plant_filter( mlt_tractor_field( get_tractor( ) ), filter.get_filter( ), track );
116 }
117
118 void Tractor::plant_filter( Filter *filter, int track )
119 {
120 mlt_field_plant_filter( mlt_tractor_field( get_tractor( ) ), filter->get_filter( ), track );
121 }
122
123 bool Tractor::locate_cut( Producer *producer, int &track, int &cut )
124 {
125 bool found = false;
126
127 for ( track = 0; producer != NULL && !found && track < count( ); track ++ )
128 {
129 Playlist playlist( ( mlt_playlist )mlt_tractor_get_track( get_tractor( ), track ) );
130 for ( cut = 0; !found && cut < playlist.count( ); cut ++ )
131 {
132 Producer *clip = playlist.get_clip( cut );
133 found = producer->get_producer( ) == clip->get_producer( );
134 delete clip;
135 }
136 }
137
138 track --;
139 cut --;
140
141 return found;
142 }