]> git.sesse.net Git - mlt/blob - src/modules/fezzik/producer_hold.c
Big modification - switch to macros for parent class access
[mlt] / src / modules / fezzik / producer_hold.c
1 /*
2  * producer_hold.c -- frame holding producer
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 "producer_hold.h"
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26
27 #include <framework/mlt.h>
28
29 // Forward references
30 static int producer_get_frame( mlt_producer this, mlt_frame_ptr frame, int index );
31 static void producer_close( mlt_producer this );
32
33 /** Constructor for the frame holding producer. Basically, all this producer does is
34         provide a producer wrapper for the requested producer, allows the specifcation of
35         the frame required and will then repeatedly obtain that frame for each get_frame
36         and get_image requested.
37 */
38
39 mlt_producer producer_hold_init( char *arg )
40 {
41         // Construct a new holding producer
42         mlt_producer this = mlt_producer_new( );
43
44         // Construct the requested producer via fezzik
45         mlt_producer producer = mlt_factory_producer( "fezzik", arg );
46
47         // Initialise the frame holding capabilities
48         if ( this != NULL && producer != NULL )
49         {
50                 // Get the properties of this producer
51                 mlt_properties properties = MLT_PRODUCER_PROPERTIES( this );
52
53                 // Store the producer
54                 mlt_properties_set_data( properties, "producer", producer, 0, ( mlt_destructor )mlt_producer_close, NULL );
55
56                 // Set frame, in, out and length for this producer
57                 mlt_properties_set_position( properties, "frame", 0 );
58                 mlt_properties_set_position( properties, "in", 0 );
59                 mlt_properties_set_position( properties, "out", 25 );
60                 mlt_properties_set_position( properties, "length", 15000 );
61                 mlt_properties_set( properties, "resource", arg );
62
63                 // Override the get_frame method
64                 this->get_frame = producer_get_frame;
65                 this->close = ( mlt_destructor )producer_close;
66         }
67         else
68         {
69                 // Clean up (not sure which one failed, can't be bothered to find out, so close both)
70                 if ( this )
71                         mlt_producer_close( this );
72                 if ( producer )
73                         mlt_producer_close( producer );
74
75                 // Make sure we return NULL
76                 this = NULL;
77         }
78
79         // Return this producer
80         return this;
81 }
82
83 static int producer_get_image( mlt_frame frame, uint8_t **buffer, mlt_image_format *format, int *width, int *height, int writable )
84 {
85         // Get the properties of the frame
86         mlt_properties properties = MLT_FRAME_PROPERTIES( frame );
87
88         // Obtain the real frame
89         mlt_frame real_frame = mlt_frame_pop_service( frame );
90
91         // Get the image from the real frame
92         int size = 0;
93         *buffer = mlt_properties_get_data( MLT_FRAME_PROPERTIES( real_frame ), "image", &size );
94         *width = mlt_properties_get_int( MLT_FRAME_PROPERTIES( real_frame ), "width" );
95         *height = mlt_properties_get_int( MLT_FRAME_PROPERTIES( real_frame ), "height" );
96
97         // If this is the first time, get it from the producer
98         if ( *buffer == NULL )
99         {
100                 mlt_properties_pass( MLT_FRAME_PROPERTIES( real_frame ), properties, "" );
101
102                 // We'll deinterlace on the downstream deinterlacer
103                 mlt_properties_set_int( MLT_FRAME_PROPERTIES( real_frame ), "consumer_deinterlace", 1 );
104
105                 // We want distorted to ensure we don't hit the resize filter twice
106                 mlt_properties_set_int( MLT_FRAME_PROPERTIES( real_frame ), "distort", 1 );
107
108                 // Get the image
109                 mlt_frame_get_image( real_frame, buffer, format, width, height, writable );
110         
111                 // Make sure we get the size
112                 *buffer = mlt_properties_get_data( MLT_FRAME_PROPERTIES( real_frame ), "image", &size );
113         }
114
115         mlt_properties_pass( properties, MLT_FRAME_PROPERTIES( real_frame ), "" );
116
117         // Set the values obtained on the frame
118         if ( *buffer != NULL )
119         {
120                 uint8_t *image = mlt_pool_alloc( size );
121                 memcpy( image, *buffer, size );
122                 *buffer = image;
123                 mlt_properties_set_data( properties, "image", *buffer, size, mlt_pool_release, NULL );
124         }
125         else
126         {
127                 // Pass the current image as is
128                 mlt_properties_set_data( properties, "image", *buffer, size, NULL, NULL );
129         }
130
131         // Make sure that no further scaling is done
132         mlt_properties_set( properties, "rescale.interps", "none" );
133         mlt_properties_set( properties, "scale", "off" );
134
135         // All done
136         return 0;
137 }
138
139 static int producer_get_frame( mlt_producer this, mlt_frame_ptr frame, int index )
140 {
141         // Get the properties of this producer
142         mlt_properties properties = MLT_PRODUCER_PROPERTIES( this );
143
144         // Construct a new frame
145         *frame = mlt_frame_init( );
146
147         // If we have a frame, then stack the producer itself and the get_image method
148         if ( *frame != NULL )
149         {
150                 // Define the real frame
151                 mlt_frame real_frame = mlt_properties_get_data( properties, "real_frame", NULL );
152
153                 // Obtain real frame if we don't have it
154                 if ( real_frame == NULL )
155                 {
156                         // Get the producer
157                         mlt_producer producer = mlt_properties_get_data( properties, "producer", NULL );
158
159                         // Get the frame position requested
160                         mlt_position position = mlt_properties_get_position( properties, "frame" );
161
162                         // Seek the producer to the correct place
163                         mlt_producer_seek( producer, position );
164
165                         // Get the real frame
166                         mlt_service_get_frame( MLT_PRODUCER_SERVICE( producer ), &real_frame, index );
167
168                         // Ensure that the real frame gets wiped eventually
169                         mlt_properties_set_data( properties, "real_frame", real_frame, 0, ( mlt_destructor )mlt_frame_close, NULL );
170                 }
171                 else
172                 {
173                         // Temporary fix - ensure that we aren't seen as a test frame
174                         int8_t *image = mlt_properties_get_data( MLT_FRAME_PROPERTIES( real_frame ), "image", NULL );
175                         mlt_properties_set_data( MLT_FRAME_PROPERTIES( *frame ), "image", image, 0, NULL, NULL );
176                         mlt_properties_set_int( MLT_FRAME_PROPERTIES( *frame ), "test_image", 0 );
177                 }
178
179                 // Stack the real frame and method
180                 mlt_frame_push_service( *frame, real_frame );
181                 mlt_frame_push_service( *frame, producer_get_image );
182
183                 // Ensure that the consumer sees what the real frame has
184                 mlt_properties_pass( MLT_FRAME_PROPERTIES( *frame ), MLT_FRAME_PROPERTIES( real_frame ), "" );
185         }
186
187         // Move to the next position
188         mlt_producer_prepare_next( this );
189
190         return 0;
191 }
192
193 static void producer_close( mlt_producer this )
194 {
195         this->close = NULL;
196         mlt_producer_close( this );
197         free( this );
198 }
199