]> git.sesse.net Git - mlt/blob - src/modules/dv/producer_libdv.c
demo framework added
[mlt] / src / modules / dv / producer_libdv.c
1 /*
2  * producer_libdv.c -- simple libdv test case
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_libdv.h"
22 #include <framework/mlt_frame.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <stdio.h>
26 #include <libdv/dv.h>
27 #include <unistd.h>
28 #include <sys/types.h>
29 #include <sys/stat.h>
30 #include <fcntl.h>
31
32 typedef struct producer_libdv_s *producer_libdv;
33
34 struct producer_libdv_s
35 {
36         struct mlt_producer_s parent;
37         int fd;
38         dv_decoder_t *dv_decoder;
39         int is_pal;
40         uint64_t file_size;
41         int frame_size;
42         long frames_in_file;
43 };
44
45 static int producer_get_frame( mlt_producer parent, mlt_frame_ptr frame, int index );
46 static void producer_close( mlt_producer parent );
47
48 static int producer_collect_info( producer_libdv this );
49
50 mlt_producer producer_libdv_init( char *filename )
51 {
52         producer_libdv this = calloc( sizeof( struct producer_libdv_s ), 1 );
53
54         if ( filename != NULL && this != NULL && mlt_producer_init( &this->parent, this ) == 0 )
55         {
56                 mlt_producer producer = &this->parent;
57                 mlt_properties properties = mlt_producer_properties( producer );
58
59                 // Register transport implementation with the producer
60                 producer->close = producer_close;
61
62                 // Register our get_frame implementation with the producer
63                 producer->get_frame = producer_get_frame;
64
65                 // Create the dv_decoder
66                 this->dv_decoder = dv_decoder_new( FALSE, FALSE, FALSE );
67                 this->dv_decoder->quality = DV_QUALITY_COLOR | DV_QUALITY_AC_1;
68                 this->dv_decoder->audio->arg_audio_emphasis = 2;
69                 dv_set_audio_correction( this->dv_decoder, DV_AUDIO_CORRECT_AVERAGE );
70
71                 // Open the file if specified
72                 this->fd = open( filename, O_RDONLY );
73
74                 // Collect info
75                 if ( this->fd != -1 && producer_collect_info( this ) )
76                 {
77                         // Set the resource property (required for all producers)
78                         mlt_properties_set( properties, "resource", filename );
79                 }
80                 else
81                 {
82                         // Reject this file
83                         mlt_producer_close( producer );
84                         producer = NULL;
85                 }
86
87                 // Return the producer
88                 return producer;
89         }
90         free( this );
91         return NULL;
92 }
93
94 static int read_frame( int fd, uint8_t* frame_buf, int *isPAL )
95 {
96         int result = read( fd, frame_buf, frame_size_525_60 ) == frame_size_525_60;
97         if ( result )
98         {
99                 *isPAL = ( frame_buf[3] & 0x80 );
100
101                 if ( *isPAL )
102                 {
103                         int diff = frame_size_625_50 - frame_size_525_60;
104                         result = read( fd, frame_buf + frame_size_525_60, diff ) == diff;
105                 }
106         }
107         
108         return result;
109 }
110
111 static int producer_collect_info( producer_libdv this )
112 {
113         int valid = 0;
114
115         uint8_t *dv_data = mlt_pool_alloc( frame_size_625_50 );
116
117         if ( dv_data != NULL )
118         {
119                 // Read the first frame
120                 valid = read_frame( this->fd, dv_data, &this->is_pal );
121
122                 // If it looks like a valid frame, the get stats
123                 if ( valid )
124                 {
125                         // Get the properties
126                         mlt_properties properties = mlt_producer_properties( &this->parent );
127
128                         // Determine the file size
129                         struct stat buf;
130                         fstat( this->fd, &buf );
131
132                         // Store the file size
133                         this->file_size = buf.st_size;
134
135                         // Determine the frame size
136                         this->frame_size = this->is_pal ? frame_size_625_50 : frame_size_525_60;
137
138                         // Determine the number of frames in the file
139                         this->frames_in_file = this->file_size / this->frame_size;
140
141                         // Calculate default in/out points
142                         double fps = this->is_pal ? 25 : 30000.0 / 1001.0;
143                         if ( mlt_properties_get_double( properties, "fps" ) == fps )
144                         {
145                                 mlt_properties_set_position( properties, "length", this->frames_in_file );
146                                 mlt_properties_set_position( properties, "in", 0 );
147                                 mlt_properties_set_position( properties, "out", this->frames_in_file - 1 );
148                         }
149                         else
150                         {
151                                 valid = 0;
152                         }
153
154                         // Parse the header for meta info
155                         dv_parse_header( this->dv_decoder, dv_data );
156                         mlt_properties_set_double( properties, "aspect_ratio", 
157                                 dv_format_wide( this->dv_decoder ) ? ( this->is_pal ? 512/351 : 96/79 ) : ( this->is_pal ? 128/117 : 72/79 ) );
158                 }
159
160                 mlt_pool_release( dv_data );
161         }
162
163         return valid;
164 }
165
166 static int producer_get_image( mlt_frame this, uint8_t **buffer, mlt_image_format *format, int *width, int *height, int writable )
167 {
168         int pitches[3] = { 0, 0, 0 };
169         uint8_t *pixels[3] = { NULL, NULL, NULL };
170         
171         // Get the frames properties
172         mlt_properties properties = mlt_frame_properties( this );
173
174         // Get the dv decoder
175         dv_decoder_t *decoder = mlt_properties_get_data( properties, "dv_decoder", NULL );
176
177         // Get the dv data
178         uint8_t *dv_data = mlt_properties_get_data( properties, "dv_data", NULL );
179
180         // Parse the header for meta info
181         dv_parse_header( decoder, dv_data );
182         
183         // Assign width and height from properties
184         *width = mlt_properties_get_int( properties, "width" );
185         *height = mlt_properties_get_int( properties, "height" );
186
187         // Extract an image of the format requested
188         if ( *format == mlt_image_yuv422 )
189         {
190                 // Allocate an image
191                 uint8_t *image = mlt_pool_alloc( *width * ( *height + 1 ) * 2 );
192
193                 // Pass to properties for clean up
194                 mlt_properties_set_data( properties, "image", image, *width * ( *height + 1 ) * 2, ( mlt_destructor )mlt_pool_release, NULL );
195
196                 // Decode the image
197                 pitches[ 0 ] = *width * 2;
198                 pixels[ 0 ] = image;
199                 dv_decode_full_frame( decoder, dv_data, e_dv_color_yuv, pixels, pitches );
200
201                 // Assign result
202                 *buffer = image;
203         }
204         else if ( *format == mlt_image_rgb24 )
205         {
206                 // Allocate an image
207                 uint8_t *image = mlt_pool_alloc( *width * ( *height + 1 ) * 3 );
208
209                 // Pass to properties for clean up
210                 mlt_properties_set_data( properties, "image", image, *width * ( *height + 1 ) * 3, ( mlt_destructor )mlt_pool_release, NULL );
211
212                 // Decode the frame
213                 pitches[ 0 ] = 720 * 3;
214                 pixels[ 0 ] = image;
215                 dv_decode_full_frame( decoder, dv_data, e_dv_color_rgb, pixels, pitches );
216
217                 // Assign result
218                 *buffer = image;
219         }
220
221         return 0;
222 }
223
224 static int producer_get_audio( mlt_frame this, int16_t **buffer, mlt_audio_format *format, int *frequency, int *channels, int *samples )
225 {
226         int16_t *p;
227         int i, j;
228         int16_t *audio_channels[ 4 ];
229         
230         // Get the frames properties
231         mlt_properties properties = mlt_frame_properties( this );
232
233         // Get the dv decoder
234         dv_decoder_t *decoder = mlt_properties_get_data( properties, "dv_decoder", NULL );
235
236         // Get the dv data
237         uint8_t *dv_data = mlt_properties_get_data( properties, "dv_data", NULL );
238
239         // Parse the header for meta info
240         dv_parse_header( decoder, dv_data );
241
242         // Check that we have audio
243         if ( decoder->audio->num_channels > 0 )
244         {
245                 // Obtain required values
246                 *frequency = decoder->audio->frequency;
247                 *samples = decoder->audio->samples_this_frame;
248                 *channels = decoder->audio->num_channels;
249
250                 // Create a temporary workspace
251                 for ( i = 0; i < 4; i++ )
252                         audio_channels[ i ] = mlt_pool_alloc( DV_AUDIO_MAX_SAMPLES * sizeof( int16_t ) );
253         
254                 // Create a workspace for the result
255                 *buffer = mlt_pool_alloc( *channels * DV_AUDIO_MAX_SAMPLES * sizeof( int16_t ) );
256         
257                 // Pass the allocated audio buffer as a property
258                 mlt_properties_set_data( properties, "audio", *buffer, *channels * DV_AUDIO_MAX_SAMPLES * sizeof( int16_t ), ( mlt_destructor )mlt_pool_release, NULL );
259         
260                 // Decode the audio
261                 dv_decode_full_audio( decoder, dv_data, audio_channels );
262                 
263                 // Interleave the audio
264                 p = *buffer;
265                 for ( i = 0; i < *samples; i++ )
266                         for ( j = 0; j < *channels; j++ )
267                                 *p++ = audio_channels[ j ][ i ];
268         
269                 // Free the temporary work space
270                 for ( i = 0; i < 4; i++ )
271                         mlt_pool_release( audio_channels[ i ] );
272         }
273         else
274         {
275                 // No audio available on the frame, so get test audio (silence)
276                 this->get_audio = NULL;
277                 mlt_frame_get_audio( this, buffer, format, frequency, channels, samples );
278         }
279
280         return 0;
281 }
282
283 static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int index )
284 {
285         producer_libdv this = producer->child;
286         uint8_t *data = mlt_pool_alloc( frame_size_625_50 );
287         
288         // Obtain the current frame number
289         uint64_t position = mlt_producer_frame( producer );
290         
291         // Convert timecode to a file position (ensuring that we're on a frame boundary)
292         uint64_t offset = position * this->frame_size;
293
294         // Create an empty frame
295         *frame = mlt_frame_init( );
296
297         // Seek and fetch
298         if ( this->fd != 0 && 
299                  lseek( this->fd, offset, SEEK_SET ) == offset &&
300                  read_frame( this->fd, data, &this->is_pal ) )
301         {
302                 // Get the frames properties
303                 mlt_properties properties = mlt_frame_properties( *frame );
304
305                 // Pass the dv decoder
306                 mlt_properties_set_data( properties, "dv_decoder", this->dv_decoder, 0, NULL, NULL );
307
308                 // Pass the dv data
309                 mlt_properties_set_data( properties, "dv_data", data, frame_size_625_50, ( mlt_destructor )mlt_pool_release, NULL );
310
311                 // Update other info on the frame
312                 mlt_properties_set_int( properties, "width", 720 );
313                 mlt_properties_set_int( properties, "height", this->is_pal ? 576 : 480 );
314                 mlt_properties_set_int( properties, "top_field_first", 0 );
315
316                 char *quality = mlt_properties_get( mlt_producer_properties( producer ), "quality" );
317                 if ( quality != NULL )
318                 {
319                         if ( strncmp( quality, "fast", 4 ) == 0 )
320                                 this->dv_decoder->quality = ( DV_QUALITY_COLOR | DV_QUALITY_DC );
321                         else if ( strncmp( quality, "best", 4 ) == 0 )
322                                 this->dv_decoder->quality = ( DV_QUALITY_COLOR | DV_QUALITY_AC_2 );
323                         else
324                                 this->dv_decoder->quality = ( DV_QUALITY_COLOR | DV_QUALITY_AC_1 );
325                 }
326                 
327                 // Parse the header for meta info
328                 dv_parse_header( this->dv_decoder, data );
329                 mlt_properties_set_int( properties, "progressive", dv_is_progressive( this->dv_decoder ) );
330                 mlt_properties_set_double( properties, "aspect_ratio", 
331                         dv_format_wide( this->dv_decoder ) ? ( this->is_pal ? 512.0/351.0 : 96.0/79.0 ) : ( this->is_pal ? 128.0/117.0 : 72.0/79.0 ) );
332
333                 // Hmm - register audio callback
334                 ( *frame )->get_audio = producer_get_audio;
335                 
336                 // Push the get_image method on to the stack
337                 mlt_frame_push_get_image( *frame, producer_get_image );
338         }
339         else
340         {
341                 mlt_pool_release( data );
342         }
343
344         // Update timecode on the frame we're creating
345         mlt_frame_set_position( *frame, mlt_producer_position( producer ) );
346
347         // Calculate the next timecode
348         mlt_producer_prepare_next( producer );
349
350         return 0;
351 }
352
353 static void producer_close( mlt_producer parent )
354 {
355         // Obtain this
356         producer_libdv this = parent->child;
357
358         // Free the dv deconder
359         //dv_decoder_free( this->dv_decoder );
360
361         // Close the file
362         if ( this->fd > 0 )
363                 close( this->fd );
364
365         // Close the parent
366         parent->close = NULL;
367         mlt_producer_close( parent );
368
369         // Free the memory
370         free( this );
371 }