]> git.sesse.net Git - mlt/blob - src/modules/core/filter_resize.c
field and playlist enhancements, producer pixbuf reorg
[mlt] / src / modules / core / filter_resize.c
1 /*
2  * filter_resize.c -- resizing filter
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 "filter_resize.h"
22
23 #include <framework/mlt_frame.h>
24
25 #include <string.h>
26 #include <stdlib.h>
27
28 /** Do it :-).
29 */
30
31 static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
32 {
33         int owidth = *width;
34         int oheight = *height;
35         mlt_frame_get_image( this, image, format, &owidth, &oheight, 0 );
36         if ( !strcmp( mlt_properties_get( mlt_frame_properties( this ), "resize.scale" ), "affine" ) )
37                 *image = mlt_frame_rescale_yuv422( this, *width, *height );
38         else
39                 *image = mlt_frame_resize_yuv422( this, *width, *height );
40         return 0;
41 }
42
43 /** Filter processing.
44 */
45
46 static mlt_frame filter_process( mlt_filter this, mlt_frame frame )
47 {
48         mlt_frame_push_get_image( frame, filter_get_image );
49         mlt_properties_set( mlt_frame_properties( frame ), "resize.scale", mlt_properties_get( mlt_filter_properties( this ), "scale" ) );
50         return frame;
51 }
52
53 /** Constructor for the filter.
54 */
55
56 mlt_filter filter_resize_init( void *arg )
57 {
58         mlt_filter this = calloc( sizeof( struct mlt_filter_s ), 1 );
59         if ( mlt_filter_init( this, this ) == 0 )
60         {
61                 this->process = filter_process;
62                 mlt_properties_set( mlt_filter_properties( this ), "scale", "off" );
63         }
64         return this;
65 }
66