X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fvideo_filter%2Fwave.c;h=c2c93bd54f763bea23f41d907a96a07f7508eb56;hb=f73ef73e576a14deb50c879597a28c5bc00a4179;hp=4a5227f509a0ad1c24facef19e7fa864f99934fd;hpb=66bd92014e5d721d8fe74bfd69f601bfd228012a;p=vlc diff --git a/modules/video_filter/wave.c b/modules/video_filter/wave.c index 4a5227f509..c2c93bd54f 100644 --- a/modules/video_filter/wave.c +++ b/modules/video_filter/wave.c @@ -1,25 +1,25 @@ /***************************************************************************** * wave.c : Wave video effect plugin for vlc ***************************************************************************** - * Copyright (C) 2000-2008 the VideoLAN team + * Copyright (C) 2000-2008 VLC authors and VideoLAN * $Id$ * * Authors: Samuel Hocevar * Antoine Cellerier * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /***************************************************************************** @@ -35,7 +35,7 @@ #include #include -#include "vlc_filter.h" +#include #include "filter_picture.h" /***************************************************************************** @@ -145,6 +145,13 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic ) i_num_lines = p_pic->p[i_index].i_visible_lines; i_visible_pitch = p_pic->p[i_index].i_visible_pitch; i_pixel_pitch = p_pic->p[i_index].i_pixel_pitch; + switch( p_filter->fmt_in.video.i_chroma ) + { + CASE_PACKED_YUV_422 + // Quick hack to fix u/v inversion occuring with 2 byte pixel pitch + i_pixel_pitch *= 2; + break; + } i_visible_pixels = i_visible_pitch/i_pixel_pitch; black_pixel = ( p_pic->i_planes > 1 && i_index == Y_PLANE ) ? 0x00 @@ -163,24 +170,24 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic ) { if( i_offset < 0 ) { - vlc_memcpy( p_out, p_in - i_offset, + memcpy( p_out, p_in - i_offset, i_visible_pitch + i_offset ); p_in += p_pic->p[i_index].i_pitch; p_out += p_outpic->p[i_index].i_pitch; - vlc_memset( p_out + i_offset, black_pixel, -i_offset ); + memset( p_out + i_offset, black_pixel, -i_offset ); } else { - vlc_memcpy( p_out + i_offset, p_in, + memcpy( p_out + i_offset, p_in, i_visible_pitch - i_offset ); - vlc_memset( p_out, black_pixel, i_offset ); + memset( p_out, black_pixel, i_offset ); p_in += p_pic->p[i_index].i_pitch; p_out += p_outpic->p[i_index].i_pitch; } } else { - vlc_memcpy( p_out, p_in, i_visible_pitch ); + memcpy( p_out, p_in, i_visible_pitch ); p_in += p_pic->p[i_index].i_pitch; p_out += p_outpic->p[i_index].i_pitch; }