]> git.sesse.net Git - vlc/blob - modules/video_filter/swscale.c
Fixed a allocation failure test in swscale.
[vlc] / modules / video_filter / swscale.c
1 /*****************************************************************************
2  * swscale.c: scaling and chroma conversion using libswscale
3  *****************************************************************************
4  * Copyright (C) 1999-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Gildas Bazin <gbazin@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31 #include <assert.h>
32
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35 #include <vlc_filter.h>
36 #include <vlc_cpu.h>
37
38 #ifdef HAVE_LIBSWSCALE_SWSCALE_H
39 #   include <libswscale/swscale.h>
40 #elif defined(HAVE_FFMPEG_SWSCALE_H)
41 #   include <ffmpeg/swscale.h>
42 #endif
43
44 #include "../codec/avcodec/chroma.h" // Chroma Avutil <-> VLC conversion
45
46 /* Gruikkkkkkkkkk!!!!! */
47 #undef AVPALETTE_SIZE
48 #define AVPALETTE_SIZE (256 * sizeof(uint32_t))
49
50 /*****************************************************************************
51  * Module descriptor
52  *****************************************************************************/
53 static int  OpenScaler( vlc_object_t * );
54 static void CloseScaler( vlc_object_t * );
55
56 #define SCALEMODE_TEXT N_("Scaling mode")
57 #define SCALEMODE_LONGTEXT N_("Scaling mode to use.")
58
59 static const int pi_mode_values[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
60 const char *const ppsz_mode_descriptions[] =
61 { N_("Fast bilinear"), N_("Bilinear"), N_("Bicubic (good quality)"),
62   N_("Experimental"), N_("Nearest neighbour (bad quality)"),
63   N_("Area"), N_("Luma bicubic / chroma bilinear"), N_("Gauss"),
64   N_("SincR"), N_("Lanczos"), N_("Bicubic spline") };
65
66 vlc_module_begin ()
67     set_description( N_("Video scaling filter") )
68     set_shortname( N_("Swscale" ) )
69     set_capability( "video filter2", 150 )
70     set_category( CAT_VIDEO )
71     set_subcategory( SUBCAT_VIDEO_VFILTER )
72     set_callbacks( OpenScaler, CloseScaler )
73     add_integer( "swscale-mode", 2, SCALEMODE_TEXT, SCALEMODE_LONGTEXT, true )
74         change_integer_list( pi_mode_values, ppsz_mode_descriptions )
75 vlc_module_end ()
76
77 /* Version checking */
78 #if LIBSWSCALE_VERSION_INT >= ((0<<16)+(5<<8)+0)
79 /****************************************************************************
80  * Local prototypes
81  ****************************************************************************/
82
83 void *( *swscale_fast_memcpy )( void *, const void *, size_t );
84
85 /**
86  * Internal swscale filter structure.
87  */
88 struct filter_sys_t
89 {
90     SwsFilter *p_src_filter;
91     SwsFilter *p_dst_filter;
92     int i_cpu_mask, i_sws_flags;
93
94     video_format_t fmt_in;
95     video_format_t fmt_out;
96
97     struct SwsContext *ctx;
98     struct SwsContext *ctxA;
99     picture_t *p_src_a;
100     picture_t *p_dst_a;
101     int i_extend_factor;
102     picture_t *p_src_e;
103     picture_t *p_dst_e;
104     bool b_add_a;
105     bool b_copy;
106     bool b_swap_uvi;
107     bool b_swap_uvo;
108 };
109
110 static picture_t *Filter( filter_t *, picture_t * );
111 static int  Init( filter_t * );
112 static void Clean( filter_t * );
113
114 typedef struct
115 {
116     int  i_fmti;
117     int  i_fmto;
118     bool b_has_a;
119     bool b_add_a;
120     int  i_sws_flags;
121     bool b_copy;
122     bool b_swap_uvi;
123     bool b_swap_uvo;
124 } ScalerConfiguration;
125
126 static int GetParameters( ScalerConfiguration *,
127                           const video_format_t *p_fmti,
128                           const video_format_t *p_fmto,
129                           int i_sws_flags_default );
130
131 static int GetSwsCpuMask(void);
132
133 /* SwScaler point resize quality seems really bad, let our scale module do it
134  * (change it to true to try) */
135 #define ALLOW_YUVP (false)
136 /* SwScaler does not like too small picture */
137 #define MINIMUM_WIDTH (32)
138
139 /* XXX is it always 3 even for BIG_ENDIAN (blend.c seems to think so) ? */
140 #define OFFSET_A (3)
141
142 /*****************************************************************************
143  * OpenScaler: probe the filter and return score
144  *****************************************************************************/
145 static int OpenScaler( vlc_object_t *p_this )
146 {
147     filter_t *p_filter = (filter_t*)p_this;
148     filter_sys_t *p_sys;
149
150     int i_sws_mode;
151
152     if( GetParameters( NULL,
153                        &p_filter->fmt_in.video,
154                        &p_filter->fmt_out.video, 0 ) )
155         return VLC_EGENERIC;
156
157     /* */
158     p_filter->pf_video_filter = Filter;
159     /* Allocate the memory needed to store the decoder's structure */
160     if( ( p_filter->p_sys = p_sys = malloc(sizeof(filter_sys_t)) ) == NULL )
161         return VLC_ENOMEM;
162
163     /* FIXME pointer assignment may not be atomic */
164     swscale_fast_memcpy = vlc_memcpy;
165
166     /* Set CPU capabilities */
167     p_sys->i_cpu_mask = GetSwsCpuMask();
168
169     /* */
170     i_sws_mode = var_CreateGetInteger( p_filter, "swscale-mode" );
171     switch( i_sws_mode )
172     {
173     case 0:  p_sys->i_sws_flags = SWS_FAST_BILINEAR; break;
174     case 1:  p_sys->i_sws_flags = SWS_BILINEAR; break;
175     case 2:  p_sys->i_sws_flags = SWS_BICUBIC; break;
176     case 3:  p_sys->i_sws_flags = SWS_X; break;
177     case 4:  p_sys->i_sws_flags = SWS_POINT; break;
178     case 5:  p_sys->i_sws_flags = SWS_AREA; break;
179     case 6:  p_sys->i_sws_flags = SWS_BICUBLIN; break;
180     case 7:  p_sys->i_sws_flags = SWS_GAUSS; break;
181     case 8:  p_sys->i_sws_flags = SWS_SINC; break;
182     case 9:  p_sys->i_sws_flags = SWS_LANCZOS; break;
183     case 10: p_sys->i_sws_flags = SWS_SPLINE; break;
184     default: p_sys->i_sws_flags = SWS_BICUBIC; i_sws_mode = 2; break;
185     }
186
187     p_sys->p_src_filter = NULL;
188     p_sys->p_dst_filter = NULL;
189
190     /* Misc init */
191     p_sys->ctx = NULL;
192     p_sys->ctxA = NULL;
193     p_sys->p_src_a = NULL;
194     p_sys->p_dst_a = NULL;
195     p_sys->p_src_e = NULL;
196     p_sys->p_dst_e = NULL;
197     memset( &p_sys->fmt_in,  0, sizeof(p_sys->fmt_in) );
198     memset( &p_sys->fmt_out, 0, sizeof(p_sys->fmt_out) );
199
200     if( Init( p_filter ) )
201     {
202         if( p_sys->p_src_filter )
203             sws_freeFilter( p_sys->p_src_filter );
204         free( p_sys );
205         return VLC_EGENERIC;
206     }
207
208     msg_Dbg( p_filter, "%ix%i chroma: %4.4s -> %ix%i chroma: %4.4s with scaling using %s",
209              p_filter->fmt_in.video.i_width, p_filter->fmt_in.video.i_height,
210              (char *)&p_filter->fmt_in.video.i_chroma,
211              p_filter->fmt_out.video.i_width, p_filter->fmt_out.video.i_height,
212              (char *)&p_filter->fmt_out.video.i_chroma,
213              ppsz_mode_descriptions[i_sws_mode] );
214
215     return VLC_SUCCESS;
216 }
217
218 /*****************************************************************************
219  * CloseFilter: clean up the filter
220  *****************************************************************************/
221 static void CloseScaler( vlc_object_t *p_this )
222 {
223     filter_t *p_filter = (filter_t*)p_this;
224     filter_sys_t *p_sys = p_filter->p_sys;
225
226     Clean( p_filter );
227     if( p_sys->p_src_filter )
228         sws_freeFilter( p_sys->p_src_filter );
229     free( p_sys );
230 }
231
232 /*****************************************************************************
233  * Helpers
234  *****************************************************************************/
235 static int GetSwsCpuMask(void)
236 {
237     const unsigned int i_cpu = vlc_CPU();
238     int i_sws_cpu = 0;
239
240     if( i_cpu & CPU_CAPABILITY_MMX )
241         i_sws_cpu |= SWS_CPU_CAPS_MMX;
242 #if (LIBSWSCALE_VERSION_INT >= ((0<<16)+(5<<8)+0))
243     if( i_cpu & CPU_CAPABILITY_MMXEXT )
244         i_sws_cpu |= SWS_CPU_CAPS_MMX2;
245 #endif
246     if( i_cpu & CPU_CAPABILITY_3DNOW )
247         i_sws_cpu |= SWS_CPU_CAPS_3DNOW;
248
249     if( i_cpu & CPU_CAPABILITY_ALTIVEC )
250         i_sws_cpu |= SWS_CPU_CAPS_ALTIVEC;
251
252     return i_sws_cpu;
253 }
254 static bool IsFmtSimilar( const video_format_t *p_fmt1, const video_format_t *p_fmt2 )
255 {
256     return p_fmt1->i_chroma == p_fmt2->i_chroma &&
257            p_fmt1->i_width  == p_fmt2->i_width &&
258            p_fmt1->i_height == p_fmt2->i_height;
259 }
260
261 static void FixParameters( int *pi_fmt, bool *pb_has_a, bool *pb_swap_uv, vlc_fourcc_t fmt )
262 {
263     switch( fmt )
264     {
265     case VLC_CODEC_YUVA:
266         *pi_fmt = PIX_FMT_YUV444P;
267         *pb_has_a = true;
268         break;
269     case VLC_CODEC_RGBA:
270         *pi_fmt = PIX_FMT_BGR32;
271         *pb_has_a = true;
272         break;
273     case VLC_CODEC_YV12:
274         *pi_fmt = PIX_FMT_YUV420P;
275         *pb_swap_uv = true;
276         break;
277     case VLC_CODEC_YV9:
278         *pi_fmt = PIX_FMT_YUV410P;
279         *pb_swap_uv = true;
280         break;
281     case VLC_CODEC_RGB16:
282         *pi_fmt = PIX_FMT_RGB565;
283         break;
284     default:
285         break;
286     }
287 }
288
289 static int GetParameters( ScalerConfiguration *p_cfg,
290                           const video_format_t *p_fmti,
291                           const video_format_t *p_fmto,
292                           int i_sws_flags_default )
293 {
294     int i_fmti = -1;
295     int i_fmto = -1;
296
297     bool b_has_ai = false;
298     bool b_has_ao = false;
299     int i_sws_flags = i_sws_flags_default;
300     bool b_swap_uvi = false;
301     bool b_swap_uvo = false;
302
303     GetFfmpegChroma( &i_fmti, *p_fmti );
304     GetFfmpegChroma( &i_fmto, *p_fmto );
305
306     if( p_fmti->i_chroma == p_fmto->i_chroma )
307     {
308         if( p_fmti->i_chroma == VLC_CODEC_YUVP && ALLOW_YUVP )
309         {
310             i_fmti = i_fmto = PIX_FMT_GRAY8;
311             i_sws_flags = SWS_POINT;
312         }
313     }
314
315     FixParameters( &i_fmti, &b_has_ai, &b_swap_uvi, p_fmti->i_chroma );
316     FixParameters( &i_fmto, &b_has_ao, &b_swap_uvo, p_fmto->i_chroma );
317
318     /* FIXME TODO removed when ffmpeg is fixed
319      * Without SWS_ACCURATE_RND the quality is really bad for some conversions */
320     switch( i_fmto )
321     {
322     case PIX_FMT_ARGB:
323     case PIX_FMT_RGBA:
324     case PIX_FMT_ABGR:
325         i_sws_flags |= SWS_ACCURATE_RND;
326         break;
327     }
328
329     if( p_cfg )
330     {
331         p_cfg->i_fmti = i_fmti;
332         p_cfg->i_fmto = i_fmto;
333         p_cfg->b_has_a = b_has_ai && b_has_ao;
334         p_cfg->b_add_a = (!b_has_ai) && b_has_ao;
335         p_cfg->b_copy = i_fmti == i_fmto &&
336                         p_fmti->i_width == p_fmto->i_width &&
337                         p_fmti->i_height == p_fmto->i_height;
338         p_cfg->b_swap_uvi = b_swap_uvi;
339         p_cfg->b_swap_uvo = b_swap_uvo;
340         p_cfg->i_sws_flags = i_sws_flags;
341     }
342
343     if( i_fmti < 0 || i_fmto < 0 )
344         return VLC_EGENERIC;
345
346     return VLC_SUCCESS;
347 }
348
349 static int Init( filter_t *p_filter )
350 {
351     filter_sys_t *p_sys = p_filter->p_sys;
352     const video_format_t *p_fmti = &p_filter->fmt_in.video;
353     const video_format_t *p_fmto = &p_filter->fmt_out.video;
354
355     if( IsFmtSimilar( p_fmti, &p_sys->fmt_in ) &&
356         IsFmtSimilar( p_fmto, &p_sys->fmt_out ) &&
357         p_sys->ctx )
358     {
359         return VLC_SUCCESS;
360     }
361     Clean( p_filter );
362
363     /* Init with new parameters */
364     ScalerConfiguration cfg;
365     if( GetParameters( &cfg, p_fmti, p_fmto, p_sys->i_sws_flags ) )
366     {
367         msg_Err( p_filter, "format not supported" );
368         return VLC_EGENERIC;
369     }
370     if( p_fmti->i_width <= 0 || p_fmto->i_width <= 0 )
371     {
372         msg_Err( p_filter, "0 width not supported" );
373         return VLC_EGENERIC;
374     }
375
376     /* swscale does not like too small width */
377     p_sys->i_extend_factor = 1;
378     while( __MIN( p_fmti->i_width, p_fmto->i_width ) * p_sys->i_extend_factor < MINIMUM_WIDTH)
379         p_sys->i_extend_factor++;
380
381     const unsigned i_fmti_width = p_fmti->i_width * p_sys->i_extend_factor;
382     const unsigned i_fmto_width = p_fmto->i_width * p_sys->i_extend_factor;
383     for( int n = 0; n < (cfg.b_has_a ? 2 : 1); n++ )
384     {
385         const int i_fmti = n == 0 ? cfg.i_fmti : PIX_FMT_GRAY8;
386         const int i_fmto = n == 0 ? cfg.i_fmto : PIX_FMT_GRAY8;
387         struct SwsContext *ctx;
388
389         ctx = sws_getContext( i_fmti_width, p_fmti->i_height, i_fmti,
390                               i_fmto_width, p_fmto->i_height, i_fmto,
391                               cfg.i_sws_flags | p_sys->i_cpu_mask,
392                               p_sys->p_src_filter, p_sys->p_dst_filter, 0 );
393         if( n == 0 )
394             p_sys->ctx = ctx;
395         else
396             p_sys->ctxA = ctx;
397     }
398     if( p_sys->ctxA )
399     {
400         p_sys->p_src_a = picture_New( VLC_CODEC_GREY, i_fmti_width, p_fmti->i_height, 0, 1 );
401         p_sys->p_dst_a = picture_New( VLC_CODEC_GREY, i_fmto_width, p_fmto->i_height, 0, 1 );
402     }
403     if( p_sys->i_extend_factor != 1 )
404     {
405         p_sys->p_src_e = picture_New( p_fmti->i_chroma, i_fmti_width, p_fmti->i_height, 0, 1 );
406         p_sys->p_dst_e = picture_New( p_fmto->i_chroma, i_fmto_width, p_fmto->i_height, 0, 1 );
407
408         if( p_sys->p_src_e )
409             memset( p_sys->p_src_e->p[0].p_pixels, 0, p_sys->p_src_e->p[0].i_pitch * p_sys->p_src_e->p[0].i_lines );
410         if( p_sys->p_dst_e )
411             memset( p_sys->p_dst_e->p[0].p_pixels, 0, p_sys->p_dst_e->p[0].i_pitch * p_sys->p_dst_e->p[0].i_lines );
412     }
413
414     if( !p_sys->ctx ||
415         ( cfg.b_has_a && ( !p_sys->ctxA || !p_sys->p_src_a || !p_sys->p_dst_a ) ) ||
416         ( p_sys->i_extend_factor != 1 && ( !p_sys->p_src_e || !p_sys->p_dst_e ) ) )
417     {
418         msg_Err( p_filter, "could not init SwScaler and/or allocate memory" );
419         Clean( p_filter );
420         return VLC_EGENERIC;
421     }
422
423     p_sys->b_add_a = cfg.b_add_a;
424     p_sys->b_copy = cfg.b_copy;
425     p_sys->fmt_in  = *p_fmti;
426     p_sys->fmt_out = *p_fmto;
427     p_sys->b_swap_uvi = cfg.b_swap_uvi;
428     p_sys->b_swap_uvo = cfg.b_swap_uvo;
429
430 #if 0
431     msg_Dbg( p_filter, "%ix%i chroma: %4.4s -> %ix%i chroma: %4.4s extend by %d",
432              p_fmti->i_width, p_fmti->i_height, (char *)&p_fmti->i_chroma,
433              p_fmto->i_width, p_fmto->i_height, (char *)&p_fmto->i_chroma,
434              p_sys->i_extend_factor );
435 #endif
436     return VLC_SUCCESS;
437 }
438 static void Clean( filter_t *p_filter )
439 {
440     filter_sys_t *p_sys = p_filter->p_sys;
441
442     if( p_sys->p_src_e )
443         picture_Release( p_sys->p_src_e );
444     if( p_sys->p_dst_e )
445         picture_Release( p_sys->p_dst_e );
446
447     if( p_sys->p_src_a )
448         picture_Release( p_sys->p_src_a );
449     if( p_sys->p_dst_a )
450         picture_Release( p_sys->p_dst_a );
451
452     if( p_sys->ctxA )
453         sws_freeContext( p_sys->ctxA );
454
455     if( p_sys->ctx )
456         sws_freeContext( p_sys->ctx );
457
458     /* We have to set it to null has we call be called again :( */
459     p_sys->ctx = NULL;
460     p_sys->ctxA = NULL;
461     p_sys->p_src_a = NULL;
462     p_sys->p_dst_a = NULL;
463     p_sys->p_src_e = NULL;
464     p_sys->p_dst_e = NULL;
465 }
466
467 static void GetPixels( uint8_t *pp_pixel[4], int pi_pitch[4],
468                        const picture_t *p_picture,
469                        int i_plane_start, int i_plane_count,
470                        bool b_swap_uv )
471 {
472     assert( !b_swap_uv || i_plane_count >= 3 );
473     int n;
474     for( n = 0; n < __MIN(i_plane_count, p_picture->i_planes-i_plane_start ); n++ )
475     {
476         const int nd = ( b_swap_uv && n >= 1 && n <= 2 ) ? (3 - n) : n;
477         pp_pixel[nd] = p_picture->p[i_plane_start+n].p_pixels;
478         pi_pitch[nd] = p_picture->p[i_plane_start+n].i_pitch;
479     }
480     for( ; n < 4; n++ )
481     {
482         pp_pixel[n] = NULL;
483         pi_pitch[n] = 0;
484     }
485 }
486
487 static void ExtractA( picture_t *p_dst, const picture_t *p_src, unsigned i_width, unsigned i_height )
488 {
489     plane_t *d = &p_dst->p[0];
490     const plane_t *s = &p_src->p[0];
491
492     for( unsigned y = 0; y < i_height; y++ )
493         for( unsigned x = 0; x < i_width; x++ )
494             d->p_pixels[y*d->i_pitch+x] = s->p_pixels[y*s->i_pitch+4*x+OFFSET_A];
495 }
496 static void InjectA( picture_t *p_dst, const picture_t *p_src, unsigned i_width, unsigned i_height )
497 {
498     plane_t *d = &p_dst->p[0];
499     const plane_t *s = &p_src->p[0];
500
501     for( unsigned y = 0; y < i_height; y++ )
502         for( unsigned x = 0; x < i_width; x++ )
503             d->p_pixels[y*d->i_pitch+4*x+OFFSET_A] = s->p_pixels[y*s->i_pitch+x];
504 }
505 static void FillA( plane_t *d, int i_offset )
506 {
507     for( int y = 0; y < d->i_visible_lines; y++ )
508         for( int x = 0; x < d->i_visible_pitch; x += d->i_pixel_pitch )
509             d->p_pixels[y*d->i_pitch+x+i_offset] = 0xff;
510 }
511
512 static void CopyPad( picture_t *p_dst, const picture_t *p_src )
513 {
514     picture_Copy( p_dst, p_src );
515     for( int n = 0; n < p_dst->i_planes; n++ )
516     {
517         const plane_t *s = &p_src->p[n];
518         plane_t *d = &p_dst->p[n];
519
520         for( int y = 0; y < s->i_lines; y++ )
521         {
522             for( int x = s->i_visible_pitch; x < d->i_visible_pitch; x += s->i_pixel_pitch )
523                 memcpy( &d->p_pixels[y*d->i_pitch + x], &d->p_pixels[y*d->i_pitch + s->i_visible_pitch - s->i_pixel_pitch], s->i_pixel_pitch );
524         }
525     }
526 }
527
528 static void SwapUV( picture_t *p_dst, const picture_t *p_src )
529 {
530     picture_t tmp = *p_src;
531     tmp.p[1] = p_src->p[2];
532     tmp.p[2] = p_src->p[1];
533
534     picture_CopyPixels( p_dst, &tmp );
535 }
536 static void Convert( filter_t *p_filter, struct SwsContext *ctx,
537                      picture_t *p_dst, picture_t *p_src, int i_height, int i_plane_start, int i_plane_count,
538                      bool b_swap_uvi, bool b_swap_uvo )
539 {
540     uint8_t palette[AVPALETTE_SIZE];
541
542     uint8_t *src[4]; int src_stride[4];
543     uint8_t *dst[4]; int dst_stride[4];
544
545     GetPixels( src, src_stride, p_src, i_plane_start, i_plane_count, b_swap_uvi );
546     if( p_filter->fmt_in.video.i_chroma == VLC_CODEC_RGBP )
547     {
548         memset( palette, 0, sizeof(palette) );
549         if( p_filter->fmt_in.video.p_palette )
550             memcpy( palette, p_filter->fmt_in.video.p_palette->palette,
551                     __MIN( sizeof(video_palette_t), AVPALETTE_SIZE ) );
552         src[1] = palette;
553         src_stride[1] = 4;
554     }
555
556     GetPixels( dst, dst_stride, p_dst, i_plane_start, i_plane_count, b_swap_uvo );
557
558 #if LIBSWSCALE_VERSION_INT  >= ((0<<16)+(5<<8)+0)
559     sws_scale( ctx, src, src_stride, 0, i_height,
560                dst, dst_stride );
561 #else
562     sws_scale_ordered( ctx, src, src_stride, 0, i_height,
563                        dst, dst_stride );
564 #endif
565 }
566
567 /****************************************************************************
568  * Filter: the whole thing
569  ****************************************************************************
570  * This function is called just after the thread is launched.
571  ****************************************************************************/
572 static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
573 {
574     filter_sys_t *p_sys = p_filter->p_sys;
575     const video_format_t *p_fmti = &p_filter->fmt_in.video;
576     const video_format_t *p_fmto = &p_filter->fmt_out.video;
577     picture_t *p_pic_dst;
578
579     /* Check if format properties changed */
580     if( Init( p_filter ) )
581     {
582         picture_Release( p_pic );
583         return NULL;
584     }
585
586     /* Request output picture */
587     p_pic_dst = filter_NewPicture( p_filter );
588     if( !p_pic_dst )
589     {
590         picture_Release( p_pic );
591         return NULL;
592     }
593
594     /* */
595     picture_t *p_src = p_pic;
596     picture_t *p_dst = p_pic_dst;
597     if( p_sys->i_extend_factor != 1 )
598     {
599         p_src = p_sys->p_src_e;
600         p_dst = p_sys->p_dst_e;
601
602         CopyPad( p_src, p_pic );
603     }
604
605     if( p_sys->b_copy && p_sys->b_swap_uvi == p_sys->b_swap_uvo )
606         picture_CopyPixels( p_dst, p_src );
607     else if( p_sys->b_copy )
608         SwapUV( p_dst, p_src );
609     else
610         Convert( p_filter, p_sys->ctx, p_dst, p_src, p_fmti->i_height, 0, 3,
611                  p_sys->b_swap_uvi, p_sys->b_swap_uvo );
612     if( p_sys->ctxA )
613     {
614         /* We extract the A plane to rescale it, and then we reinject it. */
615         if( p_fmti->i_chroma == VLC_CODEC_RGBA )
616             ExtractA( p_sys->p_src_a, p_src, p_fmti->i_width * p_sys->i_extend_factor, p_fmti->i_height );
617         else
618             plane_CopyPixels( p_sys->p_src_a->p, p_src->p+A_PLANE );
619
620         Convert( p_filter, p_sys->ctxA, p_sys->p_dst_a, p_sys->p_src_a, p_fmti->i_height, 0, 1, false, false );
621         if( p_fmto->i_chroma == VLC_CODEC_RGBA )
622             InjectA( p_dst, p_sys->p_dst_a, p_fmto->i_width * p_sys->i_extend_factor, p_fmto->i_height );
623         else
624             plane_CopyPixels( p_dst->p+A_PLANE, p_sys->p_dst_a->p );
625     }
626     else if( p_sys->b_add_a )
627     {
628         /* We inject a complete opaque alpha plane */
629         if( p_fmto->i_chroma == VLC_CODEC_RGBA )
630             FillA( &p_dst->p[0], OFFSET_A );
631         else
632             FillA( &p_dst->p[A_PLANE], 0 );
633     }
634
635     if( p_sys->i_extend_factor != 1 )
636     {
637         picture_CopyPixels( p_pic_dst, p_dst );
638     }
639
640     picture_CopyProperties( p_pic_dst, p_pic );
641     picture_Release( p_pic );
642     return p_pic_dst;
643 }
644
645 #else /* LIBSWSCALE_VERSION_INT >= ((0<<16)+(5<<8)+0) */
646
647 int OpenScaler( vlc_object_t *p_this )
648 {
649     return VLC_EGENERIC;
650 }
651
652 void CloseScaler( vlc_object_t *p_this )
653 {
654 }
655
656 #endif /* LIBSWSCALE_VERSION_INT >= ((0<<16)+(5<<8)+0) */