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