1 /*****************************************************************************
2 * resize.c: video scaling module for YUVP/A pictures
3 * Uses the low quality "nearest neighbour" algorithm.
4 *****************************************************************************
5 * Copyright (C) 2003 the VideoLAN team
8 * Author: Gildas Bazin <gbazin@videolan.org>
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.
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.
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 *****************************************************************************/
25 /*****************************************************************************
27 *****************************************************************************/
30 #include "vlc_filter.h"
32 /*****************************************************************************
33 * filter_sys_t : filter descriptor
34 *****************************************************************************/
41 /****************************************************************************
43 ****************************************************************************/
44 static int OpenFilter ( vlc_object_t * );
45 static void CloseFilter( vlc_object_t * );
47 static picture_t *Filter( filter_t *, picture_t * );
49 /*****************************************************************************
51 *****************************************************************************/
53 set_description( _("Video scaling filter") );
54 set_capability( "video filter2", 10000 );
55 // set_category( CAT_VIDEO );
56 // set_subcategory( SUBCAT_VIDEO_VFILTER2 );
57 set_callbacks( OpenFilter, CloseFilter );
60 /*****************************************************************************
61 * OpenFilter: probe the filter and return score
62 *****************************************************************************/
63 static int OpenFilter( vlc_object_t *p_this )
65 filter_t *p_filter = (filter_t*)p_this;
68 if( ( p_filter->fmt_in.video.i_chroma != VLC_FOURCC('Y','U','V','P') &&
69 p_filter->fmt_in.video.i_chroma != VLC_FOURCC('Y','U','V','A') &&
70 p_filter->fmt_in.video.i_chroma != VLC_FOURCC('I','4','2','0') &&
71 p_filter->fmt_in.video.i_chroma != VLC_FOURCC('Y','V','1','2') &&
72 p_filter->fmt_in.video.i_chroma != VLC_FOURCC('R','G','B','A') ) ||
73 p_filter->fmt_in.video.i_chroma != p_filter->fmt_out.video.i_chroma )
78 /* Allocate the memory needed to store the decoder's structure */
79 if( ( p_filter->p_sys = p_sys =
80 (filter_sys_t *)malloc(sizeof(filter_sys_t)) ) == NULL )
82 msg_Err( p_filter, "out of memory" );
86 p_filter->pf_video_filter = Filter;
88 msg_Dbg( p_filter, "%ix%i -> %ix%i", p_filter->fmt_in.video.i_width,
89 p_filter->fmt_in.video.i_height, p_filter->fmt_out.video.i_width,
90 p_filter->fmt_out.video.i_height );
95 /*****************************************************************************
96 * CloseFilter: clean up the filter
97 *****************************************************************************/
98 static void CloseFilter( vlc_object_t *p_this )
100 filter_t *p_filter = (filter_t*)p_this;
101 filter_sys_t *p_sys = p_filter->p_sys;
106 /****************************************************************************
107 * Filter: the whole thing
108 ****************************************************************************/
109 static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
111 picture_t *p_pic_dst;
112 int i_plane, i, j, k, l;
114 if( !p_pic ) return NULL;
116 /* Request output picture */
117 p_pic_dst = p_filter->pf_vout_buffer_new( p_filter );
120 msg_Warn( p_filter, "can't get output picture" );
121 if( p_pic->pf_release )
122 p_pic->pf_release( p_pic );
126 if( p_filter->fmt_in.video.i_chroma != VLC_FOURCC('R','G','B','A') )
128 for( i_plane = 0; i_plane < p_pic_dst->i_planes; i_plane++ )
130 uint8_t *p_src = p_pic->p[i_plane].p_pixels;
131 uint8_t *p_dst = p_pic_dst->p[i_plane].p_pixels;
132 int i_src_pitch = p_pic->p[i_plane].i_pitch;
133 int i_dst_pitch = p_pic_dst->p[i_plane].i_pitch;
135 for( i = 0; i < p_pic_dst->p[i_plane].i_visible_lines; i++ )
137 l = ( p_filter->fmt_in.video.i_height * i +
138 p_filter->fmt_out.video.i_height / 2 ) /
139 p_filter->fmt_out.video.i_height;
141 l = __MIN( (int)p_filter->fmt_in.video.i_height - 1, l );
143 for( j = 0; j < p_pic_dst->p[i_plane].i_visible_pitch; j++ )
145 k = ( p_filter->fmt_in.video.i_width * j +
146 p_filter->fmt_out.video.i_width / 2 ) /
147 p_filter->fmt_out.video.i_width;
149 k = __MIN( (int)p_filter->fmt_in.video.i_width - 1, k );
151 p_dst[i * i_dst_pitch + j] = p_src[l * i_src_pitch + k];
158 uint8_t *p_src = p_pic->p->p_pixels;
159 uint8_t *p_dst = p_pic_dst->p->p_pixels;
160 int i_src_pitch = p_pic->p->i_pitch;
161 int i_dst_pitch = p_pic_dst->p->i_pitch;
162 for( i = 0; i < p_pic_dst->p->i_visible_lines; i++ )
164 l = ( p_filter->fmt_in.video.i_height * i +
165 p_filter->fmt_out.video.i_height / 2 ) /
166 p_filter->fmt_out.video.i_height;
168 l = __MIN( (int)p_filter->fmt_in.video.i_height - 1, l );
170 for( j = 0; j < p_pic_dst->p->i_visible_pitch/4; j++ )
172 k = ( p_filter->fmt_in.video.i_width * j +
173 p_filter->fmt_out.video.i_width / 2 ) /
174 p_filter->fmt_out.video.i_width;
176 k = __MIN( (int)p_filter->fmt_in.video.i_width - 1, k );
178 *(uint32_t*)(&p_dst[i * i_dst_pitch + 4*j]) =
179 *(uint32_t*)(&p_src[l * i_src_pitch + 4*k]);
184 p_pic_dst->date = p_pic->date;
185 p_pic_dst->b_force = p_pic->b_force;
186 p_pic_dst->i_nb_fields = p_pic->i_nb_fields;
187 p_pic_dst->b_progressive = p_pic->b_progressive;
188 p_pic_dst->b_top_field_first = p_pic->b_top_field_first;
190 p_pic->pf_release( p_pic );