]> git.sesse.net Git - mlt/blob - src/modules/core/filter_crop.c
Massive refactoring of image conversion.
[mlt] / src / modules / core / filter_crop.c
1 /*
2  * filter_crop.c -- cropping filter
3  * Copyright (C) 2009 Ushodaya Enterprises Limited
4  * Author: Dan Dennedy <dan@dennedy.org>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library 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 GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <framework/mlt_filter.h>
22 #include <framework/mlt_frame.h>
23 #include <framework/mlt_log.h>
24
25 #include <stdio.h>
26 #include <string.h>
27 #include <stdlib.h>
28 #include <math.h>
29
30 static void crop( uint8_t *src, uint8_t *dest, int bpp, int width, int height, int left, int right, int top, int bottom )
31 {
32         int stride = ( width - left - right ) * bpp;
33         int y      = height - top - bottom + 1;
34         uint8_t *s = &src[ ( ( top * width ) + left ) * bpp ];
35
36         while ( --y )
37         {
38                 memcpy( dest, s, stride );
39                 dest += stride;
40                 s += stride + ( right + left ) * bpp;
41         }
42 }
43
44 /** Do it :-).
45 */
46
47 static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
48 {
49         int error = 0;
50
51         // Get the properties from the frame
52         mlt_properties properties = MLT_FRAME_PROPERTIES( this );
53
54         // Correct Width/height if necessary
55         if ( *width == 0 || *height == 0 )
56         {
57                 *width  = mlt_properties_get_int( properties, "normalised_width" );
58                 *height = mlt_properties_get_int( properties, "normalised_height" );
59         }
60
61         int left    = mlt_properties_get_int( properties, "crop.left" );
62         int right   = mlt_properties_get_int( properties, "crop.right" );
63         int top     = mlt_properties_get_int( properties, "crop.top" );
64         int bottom  = mlt_properties_get_int( properties, "crop.bottom" );
65
66         // We only know how to process yuv422 at the moment
67         if ( left || right || top || bottom )
68                 *format = mlt_image_yuv422;
69
70         // Now get the image
71         error = mlt_frame_get_image( this, image, format, width, height, writable );
72
73         int owidth  = *width - left - right;
74         int oheight = *height - top - bottom;
75
76         if ( ( owidth != *width || oheight != *height ) &&
77                 error == 0 && *image != NULL && owidth > 0 && oheight > 0 )
78         {
79                 // Provides a manual override for misreported field order
80                 if ( mlt_properties_get( properties, "meta.top_field_first" ) )
81                 {
82                         mlt_properties_set_int( properties, "top_field_first", mlt_properties_get_int( properties, "meta.top_field_first" ) );
83                         mlt_properties_set_int( properties, "meta.top_field_first", 0 );
84                 }
85
86                 if ( top % 2 )
87                         mlt_properties_set_int( properties, "top_field_first", !mlt_properties_get_int( properties, "top_field_first" ) );
88
89                 left  -= left % 2;
90                 owidth = *width - left - right;
91
92                 // Create the output image
93                 uint8_t *output = mlt_pool_alloc( owidth * ( oheight + 1 ) * 2 );
94                 if ( output )
95                 {
96                         // Call the generic resize
97                         crop( *image, output, 2, *width, *height, left, right, top, bottom );
98
99                         // Now update the frame
100                         *image = output;
101                         mlt_properties_set_data( properties, "image", output, owidth * ( oheight + 1 ) * 2, ( mlt_destructor )mlt_pool_release, NULL );
102                         mlt_properties_set_int( properties, "width", owidth );
103                         mlt_properties_set_int( properties, "height", oheight );
104                 }
105
106                 // We should resize the alpha too
107                 uint8_t *alpha = mlt_frame_get_alpha_mask( this );
108                 if ( alpha != NULL )
109                 {
110                         uint8_t *newalpha = mlt_pool_alloc( owidth * oheight );
111                         if ( newalpha )
112                         {
113                                 crop( alpha, newalpha, 1, *width, *height, left, right, top, bottom );
114                                 mlt_properties_set_data( properties, "alpha", newalpha, owidth * oheight, ( mlt_destructor )mlt_pool_release, NULL );
115                                 this->get_alpha_mask = NULL;
116                         }
117                 }
118                 *width = owidth;
119                 *height = oheight;
120         }
121
122         return error;
123 }
124
125 /** Filter processing.
126 */
127
128 static mlt_frame filter_process( mlt_filter this, mlt_frame frame )
129 {
130         if ( mlt_properties_get_int( MLT_FILTER_PROPERTIES( this ), "active" ) )
131         {
132                 // Push the get_image method on to the stack
133                 mlt_frame_push_get_image( frame, filter_get_image );
134         }
135         else
136         {
137                 mlt_properties filter_props = MLT_FILTER_PROPERTIES( this );
138                 mlt_properties frame_props = MLT_FRAME_PROPERTIES( frame );
139                 int left   = mlt_properties_get_int( filter_props, "left" );
140                 int right  = mlt_properties_get_int( filter_props, "right" );
141                 int top    = mlt_properties_get_int( filter_props, "top" );
142                 int bottom = mlt_properties_get_int( filter_props, "bottom" );
143                 int width  = mlt_properties_get_int( frame_props, "real_width" );
144                 int height = mlt_properties_get_int( frame_props, "real_height" );
145
146                 mlt_properties_set_int( frame_props, "crop.left", left );
147                 mlt_properties_set_int( frame_props, "crop.right", right );
148                 mlt_properties_set_int( frame_props, "crop.top", top );
149                 mlt_properties_set_int( frame_props, "crop.bottom", bottom );
150                 mlt_properties_set_int( frame_props, "real_width", width - left - right );
151                 mlt_properties_set_int( frame_props, "real_height", height - top - bottom );
152         }
153         return frame;
154 }
155
156 /** Constructor for the filter.
157 */
158
159 mlt_filter filter_crop_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
160 {
161         mlt_filter this = calloc( sizeof( struct mlt_filter_s ), 1 );
162         if ( mlt_filter_init( this, this ) == 0 )
163         {
164                 this->process = filter_process;
165                 if ( arg )
166                         mlt_properties_set_int( MLT_FILTER_PROPERTIES( this ), "active", atoi( arg ) );
167         }
168         return this;
169 }