]> git.sesse.net Git - mlt/blob - src/modules/avformat/filter_avcolour_space.c
Get initial skipping of luma scaling to work.
[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
25 // ffmpeg Header files
26 #include <avformat.h>
27 #ifdef SWSCALE
28 #include <swscale.h>
29 #endif
30
31 #if LIBAVUTIL_VERSION_INT < (50<<16)
32 #define PIX_FMT_YUYV422 PIX_FMT_YUV422
33 #endif
34
35 #include <stdio.h>
36 #include <stdlib.h>
37
38 #if 0 // This test might come in handy elsewhere someday.
39 static int is_big_endian( )
40 {
41         union { int i; char c[ 4 ]; } big_endian_test;
42         big_endian_test.i = 1;
43
44         return big_endian_test.c[ 0 ] != 1;
45 }
46 #endif
47
48 static int convert_mlt_to_av_cs( mlt_image_format format )
49 {
50         int value = 0;
51
52         switch( format )
53         {
54                 case mlt_image_rgb24:
55                 case mlt_image_rgb24_full:
56                         value = PIX_FMT_RGB24;
57                         break;
58                 case mlt_image_rgb24a:
59                 case mlt_image_opengl:
60                 case mlt_image_rgb24a_full:
61                         value = PIX_FMT_RGBA;
62                         break;
63                 case mlt_image_yuv422:
64                 case mlt_image_yuv422_709:
65                         value = PIX_FMT_YUYV422;
66                         break;
67                 case mlt_image_yuv420p:
68                         value = PIX_FMT_YUV420P;
69                         break;
70                 case mlt_image_none:
71                         mlt_log_error( NULL, "[filter avcolor_space] Invalid format\n" );
72                         break;
73         }
74
75         return value;
76 }
77
78 static void set_luma_transfer( struct SwsContext *context, int is_709, int no_scale )
79 {
80         int *coefficients;
81         int range;
82         int brightness, contrast, saturation;
83
84         if ( sws_getColorspaceDetails( context, &coefficients, &range, &coefficients, &range,
85                         &brightness, &contrast, &saturation ) != -1 )
86         {
87                 // Don't change these from defaults unless explicitly told to.
88                 if ( no_scale )
89                         range = 1;
90                 if ( is_709 )
91                         coefficients = sws_getCoefficients( SWS_CS_ITU709 );
92                 sws_setColorspaceDetails( context, coefficients, range, coefficients, range,
93                         brightness, contrast, saturation );
94         }
95 }
96
97 static void av_convert_image( uint8_t *out, uint8_t *in, int out_fmt, int in_fmt,
98         int width, int height, int is_709, int no_scale )
99 {
100         AVPicture input;
101         AVPicture output;
102         int flags = SWS_BILINEAR | SWS_ACCURATE_RND;
103
104         if ( out_fmt == PIX_FMT_YUYV422 )
105                 flags |= SWS_FULL_CHR_H_INP;
106         else
107                 flags |= SWS_FULL_CHR_H_INT;
108 #ifdef USE_MMX
109         flags |= SWS_CPU_CAPS_MMX;
110 #endif
111 #ifdef USE_SSE
112         flags |= SWS_CPU_CAPS_MMX2;
113 #endif
114
115         avpicture_fill( &input, in, in_fmt, width, height );
116         avpicture_fill( &output, out, out_fmt, width, height );
117 #ifdef SWSCALE
118         struct SwsContext *context = sws_getContext( width, height, in_fmt,
119                 width, height, out_fmt, flags, NULL, NULL, NULL);
120         set_luma_transfer( context, is_709, no_scale );
121         sws_scale( context, input.data, input.linesize, 0, height,
122                 output.data, output.linesize);
123         sws_freeContext( context );
124 #else
125         img_convert( &output, out_fmt, &input, in_fmt, width, height );
126 #endif
127 }
128
129 /** Do it :-).
130 */
131
132 static int convert_image( mlt_frame frame, uint8_t **image, mlt_image_format *format, mlt_image_format output_format )
133 {
134         mlt_properties properties = MLT_FRAME_PROPERTIES( frame );
135         int width = mlt_properties_get_int( properties, "width" );
136         int height = mlt_properties_get_int( properties, "height" );
137         int error = 0;
138
139         if ( *format != output_format )
140         {
141                 mlt_log_debug( NULL, "[filter avcolor_space] %s -> %s @ %dx%d\n",
142                         mlt_image_format_name( *format ), mlt_image_format_name( output_format ),
143                         width, height );
144
145                 int in_fmt = convert_mlt_to_av_cs( *format );
146                 int out_fmt = convert_mlt_to_av_cs( output_format );
147                 int size = avpicture_get_size( out_fmt, width, height );
148                 uint8_t *output = mlt_pool_alloc( size );
149
150                 if ( *format == mlt_image_rgb24a || *format == mlt_image_opengl )
151                 {
152                         register int len = width * height;
153                         uint8_t *alpha = mlt_pool_alloc( len );
154
155                         if ( alpha )
156                         {
157                                 // Extract the alpha mask from the RGBA image using Duff's Device
158                                 register uint8_t *s = *image + 3; // start on the alpha component
159                                 register uint8_t *d = alpha;
160                                 register int n = ( len + 7 ) / 8;
161
162                                 switch ( len % 8 )
163                                 {
164                                         case 0: do { *d++ = *s; s += 4;
165                                         case 7:          *d++ = *s; s += 4;
166                                         case 6:          *d++ = *s; s += 4;
167                                         case 5:          *d++ = *s; s += 4;
168                                         case 4:          *d++ = *s; s += 4;
169                                         case 3:          *d++ = *s; s += 4;
170                                         case 2:          *d++ = *s; s += 4;
171                                         case 1:          *d++ = *s; s += 4;
172                                                         }
173                                                         while ( --n > 0 );
174                                 }
175                                 mlt_properties_set_data( properties, "alpha", alpha, len, mlt_pool_release, NULL );
176                                 frame->get_alpha_mask = NULL;
177                         }
178                 }
179
180                 // Update the output
181                 int is_709 = output_format == mlt_image_yuv422 && width * height > 750000;
182                 int no_scale_luma = 0;
183                 if ( *format == mlt_image_yuv422 && mlt_properties_get_int( properties, "skip_luma_scale" )
184                          && ( output_format == mlt_image_rgb24 || output_format == mlt_image_rgb24a ) )
185                 {
186                         no_scale_luma = 1;
187                         mlt_properties_set( properties, "skip_luma_scale", NULL );
188                 }
189                 av_convert_image( output, *image, out_fmt, in_fmt, width, height, is_709, no_scale_luma );
190                 *image = output;
191                 *format = output_format;
192                 mlt_properties_set_data( properties, "image", output, size, mlt_pool_release, NULL );
193                 mlt_properties_set_int( properties, "format", output_format );
194
195                 if ( output_format == mlt_image_rgb24a || output_format == mlt_image_opengl )
196                 {
197                         register int len = width * height;
198                         int alpha_size = 0;
199                         uint8_t *alpha = mlt_frame_get_alpha_mask( frame );
200                         mlt_properties_get_data( properties, "alpha", &alpha_size );
201
202                         if ( alpha && alpha_size >= len )
203                         {
204                                 // Merge the alpha mask from into the RGBA image using Duff's Device
205                                 register uint8_t *s = alpha;
206                                 register uint8_t *d = *image + 3; // start on the alpha component
207                                 register int n = ( len + 7 ) / 8;
208
209                                 switch ( len % 8 )
210                                 {
211                                         case 0: do { *d = *s++; d += 4;
212                                         case 7:          *d = *s++; d += 4;
213                                         case 6:          *d = *s++; d += 4;
214                                         case 5:          *d = *s++; d += 4;
215                                         case 4:          *d = *s++; d += 4;
216                                         case 3:          *d = *s++; d += 4;
217                                         case 2:          *d = *s++; d += 4;
218                                         case 1:          *d = *s++; d += 4;
219                                                         }
220                                                         while ( --n > 0 );
221                                 }
222                         }
223                 }
224         }
225         return error;
226 }
227
228 /** Filter processing.
229 */
230
231 static mlt_frame filter_process( mlt_filter this, mlt_frame frame )
232 {
233         frame->convert_image = convert_image;
234         return frame;
235 }
236
237 /** Constructor for the filter.
238 */
239
240 mlt_filter filter_avcolour_space_init( void *arg )
241 {
242 #ifdef SWSCALE
243 #if (LIBSWSCALE_VERSION_INT >= ((0<<16)+(7<<8)+2))
244         // Test to see if swscale accepts the arg as resolution
245         if ( arg )
246         {
247                 int width = (int) arg;
248                 struct SwsContext *context = sws_getContext( width, width, PIX_FMT_RGB32, 64, 64, PIX_FMT_RGB32, SWS_BILINEAR, NULL, NULL, NULL);
249                 if ( context )
250                         sws_freeContext( context );
251                 else
252                         return NULL;
253         }               
254 #else
255         return NULL;
256 #endif
257 #endif
258         mlt_filter this = mlt_filter_new( );
259         if ( this != NULL )
260                 this->process = filter_process;
261         return this;
262 }
263