]> git.sesse.net Git - mlt/blob - src/modules/core/filter_crop.c
9068144a37b13d830dadac4d6c8f8abc53b88e51
[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         // Now get the image
62         error = mlt_frame_get_image( this, image, format, width, height, writable );
63
64         int left    = mlt_properties_get_int( properties, "crop.left" );
65         int right   = mlt_properties_get_int( properties, "crop.right" );
66         int top     = mlt_properties_get_int( properties, "crop.top" );
67         int bottom  = mlt_properties_get_int( properties, "crop.bottom" );
68         int owidth  = *width - left - right;
69         int oheight = *height - top - bottom;
70
71         // We only know how to process yuv422 at the moment
72         if ( ( owidth != *width || oheight != *height ) &&
73                 error == 0 && *format == mlt_image_yuv422 && *image != NULL && owidth > 0 && oheight > 0 )
74         {
75                 // Provides a manual override for misreported field order
76                 if ( mlt_properties_get( properties, "meta.top_field_first" ) )
77                 {
78                         mlt_properties_set_int( properties, "top_field_first", mlt_properties_get_int( properties, "meta.top_field_first" ) );
79                         mlt_properties_set_int( properties, "meta.top_field_first", 0 );
80                 }
81
82                 if ( top % 2 )
83                         mlt_properties_set_int( properties, "top_field_first", !mlt_properties_get_int( properties, "top_field_first" ) );
84
85                 left  -= left % 2;
86                 owidth = *width - left - right;
87
88                 // Create the output image
89                 uint8_t *output = mlt_pool_alloc( owidth * ( oheight + 1 ) * 2 );
90                 if ( output )
91                 {
92                         // Call the generic resize
93                         crop( *image, output, 2, *width, *height, left, right, top, bottom );
94
95                         // Now update the frame
96                         *image = output;
97                         mlt_properties_set_data( properties, "image", output, owidth * ( oheight + 1 ) * 2, ( mlt_destructor )mlt_pool_release, NULL );
98                         mlt_properties_set_int( properties, "width", owidth );
99                         mlt_properties_set_int( properties, "height", oheight );
100                 }
101
102                 // We should resize the alpha too
103                 uint8_t *alpha = mlt_frame_get_alpha_mask( this );
104                 if ( alpha != NULL )
105                 {
106                         uint8_t *newalpha = mlt_pool_alloc( owidth * oheight );
107                         if ( newalpha )
108                         {
109                                 crop( alpha, newalpha, 1, *width, *height, left, right, top, bottom );
110                                 mlt_properties_set_data( properties, "alpha", newalpha, owidth * oheight, ( mlt_destructor )mlt_pool_release, NULL );
111                                 this->get_alpha_mask = NULL;
112                         }
113                 }
114                 *width = owidth;
115                 *height = oheight;
116         }
117
118         return error;
119 }
120
121 /** Filter processing.
122 */
123
124 static mlt_frame filter_process( mlt_filter this, mlt_frame frame )
125 {
126         if ( mlt_properties_get_int( MLT_FILTER_PROPERTIES( this ), "active" ) )
127         {
128                 // Push the get_image method on to the stack
129                 mlt_frame_push_get_image( frame, filter_get_image );
130         }
131         else
132         {
133                 mlt_properties filter_props = MLT_FILTER_PROPERTIES( this );
134                 mlt_properties frame_props = MLT_FRAME_PROPERTIES( frame );
135                 int left   = mlt_properties_get_int( filter_props, "left" );
136                 int right  = mlt_properties_get_int( filter_props, "right" );
137                 int top    = mlt_properties_get_int( filter_props, "top" );
138                 int bottom = mlt_properties_get_int( filter_props, "bottom" );
139                 int width  = mlt_properties_get_int( frame_props, "real_width" );
140                 int height = mlt_properties_get_int( frame_props, "real_height" );
141
142                 mlt_properties_set_int( frame_props, "crop.left", left );
143                 mlt_properties_set_int( frame_props, "crop.right", right );
144                 mlt_properties_set_int( frame_props, "crop.top", top );
145                 mlt_properties_set_int( frame_props, "crop.bottom", bottom );
146                 mlt_properties_set_int( frame_props, "real_width", width - left - right );
147                 mlt_properties_set_int( frame_props, "real_height", height - top - bottom );
148         }
149         return frame;
150 }
151
152 /** Constructor for the filter.
153 */
154
155 mlt_filter filter_crop_init( mlt_profile profile, mlt_service_type type, const char *id, char *arg )
156 {
157         mlt_filter this = calloc( sizeof( struct mlt_filter_s ), 1 );
158         if ( mlt_filter_init( this, this ) == 0 )
159         {
160                 this->process = filter_process;
161                 if ( arg )
162                         mlt_properties_set_int( MLT_FILTER_PROPERTIES( this ), "active", atoi( arg ) );
163         }
164         return this;
165 }