]> git.sesse.net Git - vlc/blob - modules/codec/ffmpeg/scale.c
c9eafa06ebf0a845882ff62e34aa0e31fd364d68
[vlc] / modules / codec / ffmpeg / scale.c
1 /*****************************************************************************
2  * filter.c: video scaling module using the swscale library
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
5  * $Id$
6  *
7  * Author: Gildas Bazin <gbazin@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <vlc/vlc.h>
28 #include <vlc_codec.h>
29 #include <vlc_vout.h>
30 #include <vlc_filter.h>
31
32 /* ffmpeg headers */
33 #ifdef HAVE_FFMPEG_AVCODEC_H
34 #   include <ffmpeg/avcodec.h>
35 #else
36 #   include <avcodec.h>
37 #endif
38
39 #ifdef HAVE_FFMPEG_SWSCALE_H
40 #   include <ffmpeg/swscale.h>
41 #elif defined(HAVE_LIBSWSCALE_TREE)
42 #   include <swscale.h>
43 #endif
44
45 #include "ffmpeg.h"
46
47 /* Version checking */
48 #if ( (defined(HAVE_FFMPEG_SWSCALE_H) || defined(HAVE_LIBSWSCALE_TREE)) && (LIBSWSCALE_VERSION_INT >= ((0<<16)+(5<<8)+0)) )
49
50 /*****************************************************************************
51  * filter_sys_t : filter descriptor
52  *****************************************************************************/
53 struct filter_sys_t
54 {
55     struct SwsContext *ctx;
56     SwsFilter *p_src_filter;
57     SwsFilter *p_dst_filter;
58     int i_cpu_mask, i_sws_flags;
59
60     es_format_t fmt_in;
61     es_format_t fmt_out;
62 };
63
64 /****************************************************************************
65  * Local prototypes
66  ****************************************************************************/
67 void *( *swscale_fast_memcpy )( void *, const void *, size_t );
68 static picture_t *Filter( filter_t *, picture_t * );
69 static int CheckInit( filter_t * );
70
71 static const char *ppsz_mode_descriptions[] =
72 { N_("Fast bilinear"), N_("Bilinear"), N_("Bicubic (good quality)"),
73   N_("Experimental"), N_("Nearest neighbour (bad quality)"),
74   N_("Area"), N_("Luma bicubic / chroma bilinear"), N_("Gauss"),
75   N_("SincR"), N_("Lanczos"), N_("Bicubic spline") };
76
77 /*****************************************************************************
78  * OpenScaler: probe the filter and return score
79  *****************************************************************************/
80 int E_(OpenScaler)( vlc_object_t *p_this )
81 {
82     filter_t *p_filter = (filter_t*)p_this;
83     filter_sys_t *p_sys;
84     vlc_value_t val;
85
86     unsigned int i_fmt_in, i_fmt_out;
87     unsigned int i_cpu;
88     int i_sws_mode;
89
90     float sws_lum_gblur = 0.0, sws_chr_gblur = 0.0;
91     int sws_chr_vshift = 0, sws_chr_hshift = 0;
92     float sws_chr_sharpen = 0.0, sws_lum_sharpen = 0.0;
93
94     /* Supported Input formats: YV12, I420/IYUV, YUY2, UYVY, BGR32, BGR24,
95      * BGR16, BGR15, RGB32, RGB24, Y8/Y800, YVU9/IF09 */
96     if( !(i_fmt_in = E_(GetFfmpegChroma)(p_filter->fmt_in.video.i_chroma)) )
97     {
98         return VLC_EGENERIC;
99     }
100
101     /* Supported output formats: YV12, I420/IYUV, YUY2, UYVY,
102      * {BGR,RGB}{1,4,8,15,16,24,32}, Y8/Y800, YVU9/IF09 */
103     if( !(i_fmt_out = E_(GetFfmpegChroma)(p_filter->fmt_out.video.i_chroma)) )
104     {
105         return VLC_EGENERIC;
106     }
107
108     /* Allocate the memory needed to store the decoder's structure */
109     if( ( p_filter->p_sys = p_sys =
110           (filter_sys_t *)malloc(sizeof(filter_sys_t)) ) == NULL )
111     {
112         msg_Err( p_filter, "out of memory" );
113         return VLC_EGENERIC;
114     }
115
116     swscale_fast_memcpy = p_filter->p_libvlc->pf_memcpy;
117
118     /* Set CPU capabilities */
119     i_cpu = vlc_CPU();
120     p_sys->i_cpu_mask = 0;
121     if( i_cpu & CPU_CAPABILITY_MMX )
122     {
123         p_sys->i_cpu_mask |= SWS_CPU_CAPS_MMX;
124     }
125     if( i_cpu & CPU_CAPABILITY_MMXEXT )
126     {
127         p_sys->i_cpu_mask |= SWS_CPU_CAPS_MMX2;
128     }
129     if( i_cpu & CPU_CAPABILITY_3DNOW )
130     {
131         p_sys->i_cpu_mask |= SWS_CPU_CAPS_3DNOW;
132     }
133     if( i_cpu & CPU_CAPABILITY_ALTIVEC )
134     {
135         p_sys->i_cpu_mask |= SWS_CPU_CAPS_ALTIVEC;
136     }
137
138     var_Create( p_filter, "swscale-mode", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
139     var_Get( p_filter, "swscale-mode", &val );
140     i_sws_mode = val.i_int;
141
142     switch( i_sws_mode )
143     {
144     case 0:  p_sys->i_sws_flags = SWS_FAST_BILINEAR; break;
145     case 1:  p_sys->i_sws_flags = SWS_BILINEAR; break;
146     case 2:  p_sys->i_sws_flags = SWS_BICUBIC; break;
147     case 3:  p_sys->i_sws_flags = SWS_X; break;
148     case 4:  p_sys->i_sws_flags = SWS_POINT; break;
149     case 5:  p_sys->i_sws_flags = SWS_AREA; break;
150     case 6:  p_sys->i_sws_flags = SWS_BICUBLIN; break;
151     case 7:  p_sys->i_sws_flags = SWS_GAUSS; break;
152     case 8:  p_sys->i_sws_flags = SWS_SINC; break;
153     case 9:  p_sys->i_sws_flags = SWS_LANCZOS; break;
154     case 10: p_sys->i_sws_flags = SWS_SPLINE; break;
155     default: p_sys->i_sws_flags = SWS_FAST_BILINEAR; i_sws_mode = 0; break;
156     }
157
158     p_sys->p_src_filter = NULL;
159     p_sys->p_dst_filter = NULL;
160     p_sys->p_src_filter =
161         sws_getDefaultFilter( sws_lum_gblur, sws_chr_gblur,
162                               sws_lum_sharpen, sws_chr_sharpen,
163                               sws_chr_hshift, sws_chr_vshift, 0 );
164
165     /* Misc init */
166     p_sys->ctx = NULL;
167     p_filter->pf_video_filter = Filter;
168     es_format_Init( &p_sys->fmt_in, 0, 0 );
169     es_format_Init( &p_sys->fmt_out, 0, 0 );
170
171     if( CheckInit( p_filter ) != VLC_SUCCESS )
172     {
173         if( p_sys->p_src_filter ) sws_freeFilter( p_sys->p_src_filter );
174         free( p_sys );
175         return VLC_EGENERIC;
176     }
177
178     msg_Dbg( p_filter, "%ix%i chroma: %4.4s -> %ix%i chroma: %4.4s",
179              p_filter->fmt_in.video.i_width, p_filter->fmt_in.video.i_height,
180              (char *)&p_filter->fmt_in.video.i_chroma,
181              p_filter->fmt_out.video.i_width, p_filter->fmt_out.video.i_height,
182              (char *)&p_filter->fmt_out.video.i_chroma );
183
184     if( p_filter->fmt_in.video.i_width != p_filter->fmt_out.video.i_width ||
185         p_filter->fmt_in.video.i_height != p_filter->fmt_out.video.i_height )
186     {
187         msg_Dbg( p_filter, "scaling mode: %s",
188                  ppsz_mode_descriptions[i_sws_mode] );
189     }
190
191     return VLC_SUCCESS;
192 }
193
194 /*****************************************************************************
195  * CloseFilter: clean up the filter
196  *****************************************************************************/
197 void E_(CloseScaler)( vlc_object_t *p_this )
198 {
199     filter_t *p_filter = (filter_t*)p_this;
200     filter_sys_t *p_sys = p_filter->p_sys;
201
202     if( p_sys->ctx ) sws_freeContext( p_sys->ctx );
203     if( p_sys->p_src_filter ) sws_freeFilter( p_sys->p_src_filter );
204     free( p_sys );
205 }
206
207 /*****************************************************************************
208  * CheckInit: Initialise filter when necessary
209  *****************************************************************************/
210 static int CheckInit( filter_t *p_filter )
211 {
212     filter_sys_t *p_sys = p_filter->p_sys;
213
214     if( p_filter->fmt_in.video.i_width != p_sys->fmt_in.video.i_width ||
215         p_filter->fmt_in.video.i_height != p_sys->fmt_in.video.i_height ||
216         p_filter->fmt_out.video.i_width != p_sys->fmt_out.video.i_width ||
217         p_filter->fmt_out.video.i_height != p_sys->fmt_out.video.i_height )
218     {
219         unsigned int i_fmt_in, i_fmt_out;
220
221         if( !(i_fmt_in = E_(GetFfmpegChroma)(p_filter->fmt_in.video.i_chroma)) ||
222             !(i_fmt_out = E_(GetFfmpegChroma)(p_filter->fmt_out.video.i_chroma)) )
223         {
224             msg_Err( p_filter, "format not supported" );
225             return VLC_EGENERIC;
226         }
227
228         if( p_sys->ctx ) sws_freeContext( p_sys->ctx );
229
230         p_sys->ctx =
231             sws_getContext( p_filter->fmt_in.video.i_width,
232                             p_filter->fmt_in.video.i_height, i_fmt_in,
233                             p_filter->fmt_out.video.i_width,
234                             p_filter->fmt_out.video.i_height, i_fmt_out,
235                             p_sys->i_sws_flags | p_sys->i_cpu_mask,
236                             p_sys->p_src_filter, p_sys->p_dst_filter, 0 );
237         if( !p_sys->ctx )
238         {
239             msg_Err( p_filter, "could not init SwScaler" );
240             return VLC_EGENERIC;
241         }
242
243         p_sys->fmt_in = p_filter->fmt_in;
244         p_sys->fmt_out = p_filter->fmt_out;
245     }
246
247     return VLC_SUCCESS;
248 }
249
250 /****************************************************************************
251  * Filter: the whole thing
252  ****************************************************************************
253  * This function is called just after the thread is launched.
254  ****************************************************************************/
255 static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
256 {
257     filter_sys_t *p_sys = p_filter->p_sys;
258     uint8_t *src[3]; int src_stride[3];
259     uint8_t *dst[3]; int dst_stride[3];
260     picture_t *p_pic_dst;
261     int i_plane;
262     int i_nb_planes = p_pic->i_planes;
263
264     /* Check if format properties changed */
265     if( CheckInit( p_filter ) != VLC_SUCCESS ) return NULL;
266
267     /* Request output picture */
268     p_pic_dst = p_filter->pf_vout_buffer_new( p_filter );
269     if( !p_pic_dst )
270     {
271         msg_Warn( p_filter, "can't get output picture" );
272         return NULL;
273     }
274
275     if( p_filter->fmt_out.video.i_chroma == VLC_FOURCC('Y','U','V','A') )
276     {
277         i_nb_planes = 3;
278         memset( p_pic_dst->p[3].p_pixels, 0xff, p_filter->fmt_out.video.i_height
279                                                  * p_pic_dst->p[3].i_pitch );
280     }
281
282     for( i_plane = 0; i_plane < __MIN(3, p_pic->i_planes); i_plane++ )
283     {
284         src[i_plane] = p_pic->p[i_plane].p_pixels;
285         src_stride[i_plane] = p_pic->p[i_plane].i_pitch;
286     }
287     for( i_plane = 0; i_plane < __MIN(3, i_nb_planes); i_plane++ )
288     {
289         dst[i_plane] = p_pic_dst->p[i_plane].p_pixels;
290         dst_stride[i_plane] = p_pic_dst->p[i_plane].i_pitch;
291     }
292
293 #if LIBSWSCALE_VERSION_INT  >= ((0<<16)+(5<<8)+0)
294     sws_scale( p_sys->ctx, src, src_stride,
295                0, p_filter->fmt_in.video.i_height,
296                dst, dst_stride );
297 #else
298     sws_scale_ordered( p_sys->ctx, src, src_stride,
299                0, p_filter->fmt_in.video.i_height,
300                dst, dst_stride );
301 #endif
302
303     p_pic_dst->date = p_pic->date;
304     p_pic_dst->b_force = p_pic->b_force;
305     p_pic_dst->i_nb_fields = p_pic->i_nb_fields;
306     p_pic_dst->b_progressive = p_pic->b_progressive;
307     p_pic_dst->b_top_field_first = p_pic->b_top_field_first;
308
309     p_pic->pf_release( p_pic );
310     return p_pic_dst;
311 }
312
313 #else /* LIBSWSCALE_VERSION_INT >= ((0<<16)+(5<<8)+0) */
314
315 int E_(OpenScaler)( vlc_object_t *p_this )
316 {
317     return VLC_EGENERIC;
318 }
319
320 void E_(CloseScaler)( vlc_object_t *p_this )
321 {
322 }
323
324 #endif /* LIBSWSCALE_VERSION_INT >= ((0<<16)+(5<<8)+0) */
325