]> git.sesse.net Git - mlt/blob - src/modules/gtk2/filter_rescale.c
added brightness filter, added smooth ramping to audio processing, added start/end...
[mlt] / src / modules / gtk2 / filter_rescale.c
1 /*
2  * filter_rescale.c -- scale the producer video frame size to match the consumer
3  * Copyright (C) 2003-2004 Ushodaya Enterprises Limited
4  * Author: Dan Dennedy <dan@dennedy.org>
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_rescale.h"
22 #include "pixops.h"
23
24 #include <framework/mlt_frame.h>
25
26 #include <stdio.h>
27 #include <string.h>
28 #include <stdlib.h>
29 #include <gdk-pixbuf/gdk-pixbuf.h>
30
31 /** Do it :-).
32 */
33
34 static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
35 {
36         if ( *width == 0 )
37                 *width = 720;
38         if ( *height == 0 )
39                 *height = 576;
40
41         mlt_properties properties = mlt_frame_properties( this );
42         int iwidth = *width;
43         int iheight = *height;
44         int owidth = *width;
45         int oheight = *height;
46         uint8_t *input = NULL;
47         char *interps = mlt_properties_get( properties, "rescale.interp" );
48         int interp = PIXOPS_INTERP_BILINEAR;
49         double i_aspect_ratio = mlt_frame_get_aspect_ratio( this );
50         double o_aspect_ratio = mlt_properties_get_double( properties, "consumer_aspect_ratio" );
51         
52         if ( strcmp( interps, "nearest" ) == 0 )
53                 interp = PIXOPS_INTERP_NEAREST;
54         else if ( strcmp( interps, "tiles" ) == 0 )
55                 interp = PIXOPS_INTERP_TILES;
56         else if ( strcmp( interps, "hyper" ) == 0 )
57                 interp = PIXOPS_INTERP_HYPER;
58
59         mlt_frame_get_image( this, &input, format, &iwidth, &iheight, 0 );
60
61         if ( o_aspect_ratio != 0 && o_aspect_ratio != i_aspect_ratio && mlt_properties_get_int( properties, "distort" ) == 0 )
62         {
63                 // Determine maximum size within the aspect ratio:
64
65                 if ( ( owidth * i_aspect_ratio * o_aspect_ratio ) > owidth )
66                         oheight *= o_aspect_ratio / i_aspect_ratio;
67                 else
68                         owidth *= i_aspect_ratio * o_aspect_ratio;
69                 //fprintf( stderr, "rescale: from %dx%d (aspect %f) to %dx%d (aspect %f)\n", iwidth, iheight, i_aspect_ratio, owidth, oheight, o_aspect_ratio );
70         }
71         
72         // If width and height are correct, don't do anything
73         if ( strcmp( interps, "none" ) && input != NULL && ( iwidth != owidth || iheight != oheight ) )
74         {
75                 if ( *format == mlt_image_yuv422 )
76                 {
77                         // Create the output image
78                         uint8_t *output = malloc( owidth * oheight * 2 );
79
80                         // Calculate strides
81                         int istride = iwidth * 2;
82                         int ostride = owidth * 2;
83
84                         yuv422_scale_simple( output, owidth, oheight, ostride, input, iwidth, iheight, istride, interp );
85                 
86                         // Now update the frame
87                         mlt_properties_set_data( properties, "image", output, owidth * oheight * 2, free, NULL );
88                         mlt_properties_set_int( properties, "width", owidth );
89                         mlt_properties_set_int( properties, "height", oheight );
90
91                         // Return the output
92                         *image = output;
93                 }
94                 else if ( *format == mlt_image_rgb24 || *format == mlt_image_rgb24a )
95                 {
96                         int bpp = (*format == mlt_image_rgb24a ? 4 : 3 );
97                         GdkPixbuf *pixbuf = gdk_pixbuf_new_from_data( input, GDK_COLORSPACE_RGB,
98                                 (*format == mlt_image_rgb24a), 24, iwidth, iheight,
99                                 iwidth * bpp, NULL, NULL );
100                         GdkPixbuf *scaled = gdk_pixbuf_scale_simple( pixbuf, owidth, oheight, interp );
101
102                         // Create the output image
103                         uint8_t *output = malloc( owidth * oheight * bpp );
104
105                         int i;
106                         for ( i = 0; i < oheight; i++ )
107                                 memcpy( output + i * owidth * bpp,
108                                                 gdk_pixbuf_get_pixels( scaled ) + i * gdk_pixbuf_get_rowstride( scaled ),
109                                                 gdk_pixbuf_get_width( scaled ) * bpp );
110
111                         g_object_unref( pixbuf );
112                         g_object_unref( scaled );
113                         
114                         // Now update the frame
115                         mlt_properties_set_data( properties, "image", output, owidth * oheight * bpp, free, NULL );
116                         mlt_properties_set_int( properties, "width", owidth );
117                         mlt_properties_set_int( properties, "height", oheight );
118
119                         // Return the output
120                         *image = output;
121                 }
122         }
123         else
124                 *image = input;
125                 
126         return 0;
127 }
128
129 /** Filter processing.
130 */
131
132 static mlt_frame filter_process( mlt_filter this, mlt_frame frame )
133 {
134         mlt_frame_push_get_image( frame, filter_get_image );
135         mlt_properties_set( mlt_frame_properties( frame ), "rescale.interp",
136                 mlt_properties_get( mlt_filter_properties( this ), "interpolation" ) );
137         return frame;
138 }
139
140 /** Constructor for the filter.
141 */
142
143 mlt_filter filter_rescale_init( char *arg )
144 {
145         mlt_filter this = calloc( sizeof( struct mlt_filter_s ), 1 );
146         if ( mlt_filter_init( this, this ) == 0 )
147         {
148                 this->process = filter_process;
149                 if ( arg != NULL )
150                         mlt_properties_set( mlt_filter_properties( this ), "interpolation", arg );
151                 else
152                         mlt_properties_set( mlt_filter_properties( this ), "interpolation", "bilinear" );
153         }
154         return this;
155 }
156