a571dfe8707b2f354dc061443ddcf9cb5ec39141
[melted] / src / framework / mlt_transition.c
1 /*
2 * mlt_transition.c -- abstraction for all transition services
3 * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
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 General Public License as published by
8 * 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 "config.h"
22
23 #include "mlt_transition.h"
24 #include "mlt_frame.h"
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29
30 /** Forward references.
31 */
32
33 static int transition_get_frame( mlt_service this, mlt_frame_ptr frame, int index );
34
35 /** Constructor.
36 */
37
38 int mlt_transition_init( mlt_transition this, void *child )
39 {
40 mlt_service service = &this->parent;
41 memset( this, 0, sizeof( struct mlt_transition_s ) );
42 this->child = child;
43 if ( mlt_service_init( service, this ) == 0 )
44 {
45 service->get_frame = transition_get_frame;
46 return 0;
47 }
48 return 1;
49 }
50
51 /** Get the service associated to the transition.
52 */
53
54 mlt_service mlt_transition_service( mlt_transition this )
55 {
56 return &this->parent;
57 }
58
59 /** Get the properties interface.
60 */
61
62 mlt_properties mlt_transition_properties( mlt_transition this )
63 {
64 return mlt_service_properties( mlt_transition_service( this ) );
65 }
66
67 /** Connect this transition with a producers a and b tracks.
68 */
69
70 int mlt_transition_connect( mlt_transition this, mlt_service producer, int a_track, int b_track )
71 {
72 int ret = mlt_service_connect_producer( &this->parent, producer, a_track );
73 if ( ret == 0 )
74 {
75 this->producer = producer;
76 this->a_track = a_track;
77 this->b_track = b_track;
78 this->in = 0;
79 this->out = 0;
80 }
81 return ret;
82 }
83
84 /** Set the in and out points.
85 */
86
87 void mlt_transition_set_in_and_out( mlt_transition this, mlt_timecode in, mlt_timecode out )
88 {
89 this->in = in;
90 this->out = out;
91 }
92
93 /** Get the index of the a track.
94 */
95
96 int mlt_transition_get_a_track( mlt_transition this )
97 {
98 return this->a_track;
99 }
100
101 /** Get the index of the b track.
102 */
103
104 int mlt_transition_get_b_track( mlt_transition this )
105 {
106 return this->b_track;
107 }
108
109 /** Get the in point.
110 */
111
112 mlt_timecode mlt_transition_get_in( mlt_transition this )
113 {
114 return this->in;
115 }
116
117 /** Get the out point.
118 */
119
120 mlt_timecode mlt_transition_get_out( mlt_transition this )
121 {
122 return this->out;
123 }
124
125 /** Process the frame.
126 */
127
128 static mlt_frame transition_process( mlt_transition this, mlt_frame a_frame, mlt_frame b_frame )
129 {
130 if ( this->process == NULL )
131 {
132 if ( !mlt_frame_is_test_card( a_frame ) )
133 {
134 mlt_frame_close( b_frame );
135 return a_frame;
136 }
137 else
138 {
139 mlt_frame_close( a_frame );
140 return b_frame;
141 }
142 }
143 else
144 {
145 return this->process( this, a_frame, b_frame );
146 }
147 }
148
149 /** Get a frame from this filter.
150
151 The logic is complex here. A transition is applied to frames on the a and b tracks
152 specified in the connect method above. Since all frames are obtained via this
153 method for all tracks, we have to take special care that we only obtain the a and
154 b frames once - we do this on the first call to get a frame from either a or b.
155
156 After that, we have 3 cases to resolve:
157
158 1) if the track is the a_track and we're in the time zone, then we need to call the
159 process method to do the effect on the frame (we assign NULL to the a_frame and
160 b_frames here) otherwise, we pass on the a_frame unmolested;
161 2) if the track is the b_track and we're the in the time zone OR the b_frame is NULL,
162 then we generate a test card frame, otherwise we pass on the b frame unmolested;
163 3) For all other tracks, we get the frames on demand.
164 */
165
166 static int transition_get_frame( mlt_service service, mlt_frame_ptr frame, int index )
167 {
168 mlt_transition this = service->child;
169
170 // Fetch a and b frames together...
171 if ( ( index == this->a_track || index == this->b_track ) &&
172 ( this->a_frame == NULL && this->b_frame == NULL ) )
173 {
174 mlt_service_get_frame( this->producer, &this->a_frame, this->a_track );
175 mlt_service_get_frame( this->producer, &this->b_frame, this->b_track );
176 }
177
178 // Special case track processing
179 if ( index == this->a_track )
180 {
181 // Determine if we're in the right time zone
182 mlt_timecode timecode = mlt_frame_get_timecode( this->a_frame );
183 if ( timecode >= this->in && timecode < this->out )
184 {
185 // Process the transition
186 *frame = transition_process( this, this->a_frame, this->b_frame );
187
188 // Important - NULL both frames now so that we know they're done...
189 this->a_frame = NULL;
190 this->b_frame = NULL;
191 }
192 else
193 {
194 // Pass on the 'a frame' and remember that we've done it
195 *frame = this->a_frame;
196 this->a_frame = NULL;
197 }
198 return 0;
199 }
200 if ( index == this->b_track )
201 {
202 if ( this->b_frame == NULL )
203 {
204 // We're *probably* in the zone and the a frame has been requested
205 *frame = mlt_frame_init( );
206 }
207 else
208 {
209 mlt_timecode timecode = mlt_frame_get_timecode( this->b_frame );
210 if ( timecode >= this->in && timecode < this->out )
211 {
212 // We're in the zone, but the 'a frame' has not been requested yet
213 *frame = mlt_frame_init( );
214 }
215 else
216 {
217 // We're out of the zone, pass on b and remember that we've done it
218 *frame = this->b_frame;
219 this->b_frame = NULL;
220 }
221 }
222 return 0;
223 }
224 else
225 {
226 // Pass through
227 return mlt_service_get_frame( this->producer, frame, index );
228 }
229 }
230
231 /** Close the transition.
232 */
233
234 void mlt_transition_close( mlt_transition this )
235 {
236 if ( this->close != NULL )
237 this->close( this );
238 else
239 mlt_service_close( &this->parent );
240 }