2 * mlt_producer.c -- abstraction for all producer services
3 * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4 * Author: Charles Yates <charles.yates@pandora.be>
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.
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.
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.
22 #include "mlt_producer.h"
23 #include "mlt_frame.h"
29 /** Forward references.
32 static int producer_get_frame( mlt_service
this, mlt_frame_ptr frame
, int index
);
37 int mlt_producer_init( mlt_producer
this, void *child
)
39 // Check that we haven't received NULL
40 int error
= this == NULL
;
42 // Continue if no error
45 // Initialise the producer
46 memset( this, 0, sizeof( struct mlt_producer_s
) );
48 // Associate with the child
51 // Initialise the service
52 if ( mlt_service_init( &this->parent
, this ) == 0 )
54 // Get the normalisation preference
55 char *normalisation
= getenv( "MLT_NORMALISATION" );
57 // The parent is the service
58 mlt_service parent
= &this->parent
;
60 // Get the properties of the parent
61 mlt_properties properties
= mlt_service_properties( parent
);
63 // Set the default properties
64 mlt_properties_set( properties
, "mlt_type", "mlt_producer" );
65 mlt_properties_set_position( properties
, "_position", 0.0 );
66 mlt_properties_set_double( properties
, "_frame", 0 );
67 if ( normalisation
== NULL
|| strcmp( normalisation
, "NTSC" ) )
68 mlt_properties_set_double( properties
, "fps", 25.0 );
70 mlt_properties_set_double( properties
, "fps", 30000.0 / 1001.0 );
71 mlt_properties_set_double( properties
, "_speed", 1.0 );
72 mlt_properties_set_position( properties
, "in", 0 );
73 mlt_properties_set_position( properties
, "out", 14999 );
74 mlt_properties_set_position( properties
, "length", 15000 );
75 mlt_properties_set_double( properties
, "aspect_ratio", 4.0 / 3.0 );
76 mlt_properties_set( properties
, "eof", "pause" );
77 mlt_properties_set( properties
, "resource", "<producer>" );
79 // Override service get_frame
80 parent
->get_frame
= producer_get_frame
;
87 /** Get the parent service object.
90 mlt_service
mlt_producer_service( mlt_producer
this )
95 /** Get the producer properties.
98 mlt_properties
mlt_producer_properties( mlt_producer
this )
100 return mlt_service_properties( &this->parent
);
103 /** Seek to a specified position.
106 int mlt_producer_seek( mlt_producer
this, mlt_position position
)
108 // Determine eof handling
109 char *eof
= mlt_properties_get( mlt_producer_properties( this ), "eof" );
116 else if ( !strcmp( eof
, "pause" ) && position
>= mlt_producer_get_playtime( this ) )
118 mlt_producer_set_speed( this, 0 );
119 position
= mlt_producer_get_playtime( this ) - 1;
121 else if ( !strcmp( eof
, "loop" ) && position
>= mlt_producer_get_playtime( this ) )
123 position
= position
% mlt_producer_get_playtime( this );
127 mlt_properties_set_position( mlt_producer_properties( this ), "_position", position
);
129 // Calculate the absolute frame
130 mlt_properties_set_position( mlt_producer_properties( this ), "_frame", mlt_producer_get_in( this ) + position
);
135 /** Get the current position (relative to in point).
138 mlt_position
mlt_producer_position( mlt_producer
this )
140 return mlt_properties_get_position( mlt_producer_properties( this ), "_position" );
143 /** Get the current position (relative to start of producer).
146 mlt_position
mlt_producer_frame( mlt_producer
this )
148 return mlt_properties_get_position( mlt_producer_properties( this ), "_frame" );
151 /** Set the playing speed.
154 int mlt_producer_set_speed( mlt_producer
this, double speed
)
156 return mlt_properties_set_double( mlt_producer_properties( this ), "_speed", speed
);
159 /** Get the playing speed.
162 double mlt_producer_get_speed( mlt_producer
this )
164 return mlt_properties_get_double( mlt_producer_properties( this ), "_speed" );
167 /** Get the frames per second.
170 double mlt_producer_get_fps( mlt_producer
this )
172 return mlt_properties_get_double( mlt_producer_properties( this ), "fps" );
175 /** Set the in and out points.
178 int mlt_producer_set_in_and_out( mlt_producer
this, mlt_position in
, mlt_position out
)
180 // Correct ins and outs if necessary
183 else if ( in
> mlt_producer_get_length( this ) )
184 in
= mlt_producer_get_length( this );
188 else if ( out
> mlt_producer_get_length( this ) )
189 out
= mlt_producer_get_length( this );
191 // Swap ins and outs if wrong
200 mlt_properties_set_position( mlt_producer_properties( this ), "in", in
);
201 mlt_properties_set_position( mlt_producer_properties( this ), "out", out
);
206 /** Get the in point.
209 mlt_position
mlt_producer_get_in( mlt_producer
this )
211 return mlt_properties_get_position( mlt_producer_properties( this ), "in" );
214 /** Get the out point.
217 mlt_position
mlt_producer_get_out( mlt_producer
this )
219 return mlt_properties_get_position( mlt_producer_properties( this ), "out" );
222 /** Get the total play time.
225 mlt_position
mlt_producer_get_playtime( mlt_producer
this )
227 return mlt_producer_get_out( this ) - mlt_producer_get_in( this ) + 1;
230 /** Get the total length of the producer.
233 mlt_position
mlt_producer_get_length( mlt_producer
this )
235 return mlt_properties_get_position( mlt_producer_properties( this ), "length" );
238 /** Prepare for next frame.
241 void mlt_producer_prepare_next( mlt_producer
this )
243 mlt_producer_seek( this, mlt_producer_position( this ) + mlt_producer_get_speed( this ) );
249 static int producer_get_frame( mlt_service service
, mlt_frame_ptr frame
, int index
)
252 mlt_producer
this = service
->child
;
254 // Determine eof handling
255 char *eof
= mlt_properties_get( mlt_producer_properties( this ), "eof" );
257 // A properly instatiated producer will have a get_frame method...
258 if ( this->get_frame
== NULL
|| ( !strcmp( eof
, "continue" ) && mlt_producer_position( this ) > mlt_producer_get_out( this ) ) )
260 // Generate a test frame
261 *frame
= mlt_frame_init( );
264 result
= mlt_frame_set_position( *frame
, mlt_producer_position( this ) );
266 // Mark as a test card
267 mlt_properties_set_int( mlt_frame_properties( *frame
), "test_image", 1 );
268 mlt_properties_set_int( mlt_frame_properties( *frame
), "test_audio", 1 );
270 // Calculate the next position
271 mlt_producer_prepare_next( this );
275 // Get the frame from the implementation
276 result
= this->get_frame( this, frame
, index
);
279 // Copy the fps and speed of the producer onto the frame
280 mlt_properties properties
= mlt_frame_properties( *frame
);
281 mlt_properties_set_double( properties
, "fps", mlt_producer_get_fps( this ) );
282 double speed
= mlt_producer_get_speed( this );
283 mlt_properties_set_double( properties
, "_speed", speed
);
288 /** Close the producer.
291 void mlt_producer_close( mlt_producer
this )
293 if ( this->close
!= NULL
)
296 mlt_service_close( &this->parent
);