]> git.sesse.net Git - mlt/blob - src/modules/avformat/filter_avcolour_space.c
calc image size as largest of two image size calculation methods
[mlt] / src / modules / avformat / filter_avcolour_space.c
1 /*
2  * filter_avcolour_space.c -- Colour space filter
3  * Copyright (C) 2004-2005 Ushodaya Enterprises Limited
4  * Author: Charles Yates <charles.yates@pandora.be>
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 #include <framework/mlt_profile.h>
25
26 // ffmpeg Header files
27 #include <libavformat/avformat.h>
28 #ifdef SWSCALE
29 #include <libswscale/swscale.h>
30 #endif
31
32 #if LIBAVUTIL_VERSION_INT < (50<<16)
33 #define PIX_FMT_YUYV422 PIX_FMT_YUV422
34 #endif
35
36 #include <stdio.h>
37 #include <stdlib.h>
38
39 #if 0 // This test might come in handy elsewhere someday.
40 static int is_big_endian( )
41 {
42         union { int i; char c[ 4 ]; } big_endian_test;
43         big_endian_test.i = 1;
44
45         return big_endian_test.c[ 0 ] != 1;
46 }
47 #endif
48
49 static int convert_mlt_to_av_cs( mlt_image_format format )
50 {
51         int value = 0;
52
53         switch( format )
54         {
55                 case mlt_image_rgb24:
56                         value = PIX_FMT_RGB24;
57                         break;
58                 case mlt_image_rgb24a:
59                 case mlt_image_opengl:
60                         value = PIX_FMT_RGBA;
61                         break;
62                 case mlt_image_yuv422:
63                         value = PIX_FMT_YUYV422;
64                         break;
65                 case mlt_image_yuv420p:
66                         value = PIX_FMT_YUV420P;
67                         break;
68                 case mlt_image_none:
69                         mlt_log_error( NULL, "[filter avcolor_space] Invalid format\n" );
70                         break;
71         }
72
73         return value;
74 }
75
76 static void set_luma_transfer( struct SwsContext *context, int colorspace, int use_full_range )
77 {
78 #if defined(SWSCALE) && (LIBSWSCALE_VERSION_INT >= ((0<<16)+(7<<8)+2))
79         int *coefficients;
80         const int *new_coefficients;
81         int full_range;
82         int brightness, contrast, saturation;
83
84         if ( sws_getColorspaceDetails( context, &coefficients, &full_range, &coefficients, &full_range,
85                         &brightness, &contrast, &saturation ) != -1 )
86         {
87                 // Don't change these from defaults unless explicitly told to.
88                 if ( use_full_range >= 0 )
89                         full_range = use_full_range;
90                 switch ( colorspace )
91                 {
92                 case 170:
93                 case 470:
94                 case 601:
95                 case 624:
96                         new_coefficients = sws_getCoefficients( SWS_CS_ITU601 );
97                         break;
98                 case 240:
99                         new_coefficients = sws_getCoefficients( SWS_CS_SMPTE240M );
100                         break;
101                 case 709:
102                         new_coefficients = sws_getCoefficients( SWS_CS_ITU709 );
103                         break;
104                 default:
105                         new_coefficients = coefficients;
106                         break;
107                 }
108                 sws_setColorspaceDetails( context, new_coefficients, full_range, new_coefficients, full_range,
109                         brightness, contrast, saturation );
110         }
111 #endif
112 }
113
114 static void av_convert_image( uint8_t *out, uint8_t *in, int out_fmt, int in_fmt,
115         int width, int height, int colorspace, int use_full_range )
116 {
117         AVPicture input;
118         AVPicture output;
119 #ifdef SWSCALE
120         int flags = SWS_BICUBIC | SWS_ACCURATE_RND;
121
122         if ( out_fmt == PIX_FMT_YUYV422 )
123                 flags |= SWS_FULL_CHR_H_INP;
124         else
125                 flags |= SWS_FULL_CHR_H_INT;
126 #ifdef USE_MMX
127         flags |= SWS_CPU_CAPS_MMX;
128 #endif
129 #ifdef USE_SSE
130         flags |= SWS_CPU_CAPS_MMX2;
131 #endif
132 #endif /* SWSCALE */
133
134         avpicture_fill( &input, in, in_fmt, width, height );
135         avpicture_fill( &output, out, out_fmt, width, height );
136 #ifdef SWSCALE
137         struct SwsContext *context = sws_getContext( width, height, in_fmt,
138                 width, height, out_fmt, flags, NULL, NULL, NULL);
139         if ( context )
140         {
141                 set_luma_transfer( context, colorspace, use_full_range );
142                 sws_scale( context, (const uint8_t* const*) input.data, input.linesize, 0, height,
143                         output.data, output.linesize);
144                 sws_freeContext( context );
145         }
146 #else
147         img_convert( &output, out_fmt, &input, in_fmt, width, height );
148 #endif
149 }
150
151 /** Do it :-).
152 */
153
154 static int convert_image( mlt_frame frame, uint8_t **image, mlt_image_format *format, mlt_image_format output_format )
155 {
156         mlt_properties properties = MLT_FRAME_PROPERTIES( frame );
157         int width = mlt_properties_get_int( properties, "width" );
158         int height = mlt_properties_get_int( properties, "height" );
159         int error = 0;
160
161         if ( *format != output_format )
162         {
163                 int colorspace = mlt_properties_get_int( properties, "colorspace" );
164                 int force_full_luma = -1;
165                 
166                 mlt_log_debug( NULL, "[filter avcolor_space] %s -> %s @ %dx%d space %d\n",
167                         mlt_image_format_name( *format ), mlt_image_format_name( output_format ),
168                         width, height, colorspace );
169
170                 int in_fmt = convert_mlt_to_av_cs( *format );
171                 int out_fmt = convert_mlt_to_av_cs( output_format );
172                 int size = FFMAX( avpicture_get_size( out_fmt, width, height ),
173                         mlt_image_format_size( output_format, width, height, NULL ) );
174                 uint8_t *output = mlt_pool_alloc( size );
175
176                 if ( *format == mlt_image_rgb24a || *format == mlt_image_opengl )
177                 {
178                         register int len = width * height;
179                         uint8_t *alpha = mlt_pool_alloc( len );
180
181                         if ( alpha )
182                         {
183                                 // Extract the alpha mask from the RGBA image using Duff's Device
184                                 register uint8_t *s = *image + 3; // start on the alpha component
185                                 register uint8_t *d = alpha;
186                                 register int n = ( len + 7 ) / 8;
187
188                                 switch ( len % 8 )
189                                 {
190                                         case 0: do { *d++ = *s; s += 4;
191                                         case 7:          *d++ = *s; s += 4;
192                                         case 6:          *d++ = *s; s += 4;
193                                         case 5:          *d++ = *s; s += 4;
194                                         case 4:          *d++ = *s; s += 4;
195                                         case 3:          *d++ = *s; s += 4;
196                                         case 2:          *d++ = *s; s += 4;
197                                         case 1:          *d++ = *s; s += 4;
198                                                         }
199                                                         while ( --n > 0 );
200                                 }
201                                 mlt_frame_set_alpha( frame, alpha, len, mlt_pool_release );
202                         }
203                 }
204
205                 // Update the output
206                 if ( *format == mlt_image_yuv422 && mlt_properties_get( properties, "force_full_luma" )
207                      && ( output_format == mlt_image_rgb24 || output_format == mlt_image_rgb24a ) )
208                 {
209                         // By removing the frame property we only permit the luma to skip scaling once.
210                         // Thereafter, we let swscale scale the luma range as it pleases since it seems
211                         // we do not have control over the RGB to YUV conversion.
212                         force_full_luma = mlt_properties_get_int( properties, "force_full_luma" );                      
213                         mlt_properties_set( properties, "force_full_luma", NULL );
214                 }
215                 av_convert_image( output, *image, out_fmt, in_fmt, width, height, colorspace, force_full_luma );
216                 *image = output;
217                 *format = output_format;
218                 mlt_frame_set_image( frame, output, size, mlt_pool_release );
219                 mlt_properties_set_int( properties, "format", output_format );
220
221                 if ( output_format == mlt_image_rgb24a || output_format == mlt_image_opengl )
222                 {
223                         register int len = width * height;
224                         int alpha_size = 0;
225                         uint8_t *alpha = mlt_frame_get_alpha_mask( frame );
226                         mlt_properties_get_data( properties, "alpha", &alpha_size );
227
228                         if ( alpha && alpha_size >= len )
229                         {
230                                 // Merge the alpha mask from into the RGBA image using Duff's Device
231                                 register uint8_t *s = alpha;
232                                 register uint8_t *d = *image + 3; // start on the alpha component
233                                 register int n = ( len + 7 ) / 8;
234
235                                 switch ( len % 8 )
236                                 {
237                                         case 0: do { *d = *s++; d += 4;
238                                         case 7:          *d = *s++; d += 4;
239                                         case 6:          *d = *s++; d += 4;
240                                         case 5:          *d = *s++; d += 4;
241                                         case 4:          *d = *s++; d += 4;
242                                         case 3:          *d = *s++; d += 4;
243                                         case 2:          *d = *s++; d += 4;
244                                         case 1:          *d = *s++; d += 4;
245                                                         }
246                                                         while ( --n > 0 );
247                                 }
248                         }
249                 }
250         }
251         return error;
252 }
253
254 /* TODO: The below is not working because swscale does not have
255  * adjustable coefficients yet for RGB->YUV */
256 #if 0
257 static int get_image( mlt_frame frame, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
258 {
259         int error = 0;
260         mlt_profile profile = (mlt_profile) mlt_frame_pop_get_image( frame );
261         mlt_properties properties = MLT_FRAME_PROPERTIES(frame);
262         mlt_image_format format_from = *format;
263         mlt_image_format format_to = mlt_image_rgb24;
264         
265         error = mlt_frame_get_image( frame, image, format, width, height, writable );
266         
267         int frame_colorspace = mlt_properties_get_int( properties, "colorspace" );
268         
269         if ( !error && *format == mlt_image_yuv422 && profile->colorspace > 0 &&
270              frame_colorspace > 0 && frame_colorspace != profile->colorspace )
271         {
272                 mlt_log_debug( NULL, "[filter avcolor_space] colorspace %d -> %d\n",
273                         frame_colorspace, profile->colorspace );
274                 
275                 // Convert to RGB using frame's colorspace
276                 error = convert_image( frame, image, &format_from, format_to );
277
278                 // Convert to YUV using profile's colorspace
279                 if ( !error )
280                 {
281                         *image = mlt_properties_get_data( properties, "image", NULL );
282                         format_from = mlt_image_rgb24;
283                         format_to = *format;
284                         mlt_properties_set_int( properties, "colorspace", profile->colorspace );
285                         error = convert_image( frame, image, &format_from, format_to );
286                         *image = mlt_properties_get_data( properties, "image", NULL );
287                 }
288         }
289         
290         return error;
291 }
292 #endif
293
294 /** Filter processing.
295 */
296
297 static mlt_frame filter_process( mlt_filter filter, mlt_frame frame )
298 {
299         // Set a default colorspace on the frame if not yet set by the producer.
300         // The producer may still change it during get_image.
301         // This way we do not have to modify each producer to set a valid colorspace.
302         mlt_properties properties = MLT_FRAME_PROPERTIES(frame);
303         if ( mlt_properties_get_int( properties, "colorspace" ) <= 0 )
304                 mlt_properties_set_int( properties, "colorspace", mlt_service_profile( MLT_FILTER_SERVICE(filter) )->colorspace );
305
306         frame->convert_image = convert_image;
307     
308 //      Not working yet - see comment for get_image() above.
309 //      mlt_frame_push_service( frame, mlt_service_profile( MLT_FILTER_SERVICE( filter ) ) );
310 //      mlt_frame_push_get_image( frame, get_image );
311
312         return frame;
313 }
314
315 /** Constructor for the filter.
316 */
317
318 mlt_filter filter_avcolour_space_init( void *arg )
319 {
320 #ifdef SWSCALE
321 #if (LIBSWSCALE_VERSION_INT >= ((0<<16)+(7<<8)+2))
322         // Test to see if swscale accepts the arg as resolution
323         if ( arg )
324         {
325                 int width = (int) arg;
326                 struct SwsContext *context = sws_getContext( width, width, PIX_FMT_RGB32, 64, 64, PIX_FMT_RGB32, SWS_BILINEAR, NULL, NULL, NULL);
327                 if ( context )
328                         sws_freeContext( context );
329                 else
330                         return NULL;
331         }               
332 #else
333         return NULL;
334 #endif
335 #endif
336         mlt_filter filter = mlt_filter_new( );
337         if ( filter != NULL )
338                 filter->process = filter_process;
339         return filter;
340 }
341