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