~siretart/vlc/ubuntu

« back to all changes in this revision

Viewing changes to modules/video_filter/swscale.c

  • Committer: Reinhard Tartler
  • Date: 2008-09-26 06:45:40 UTC
  • mto: (21.2.1 vlc-0.9.3)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: siretart@tauware.de-20080926064540-0sd8zwmig33ksmy4
Tags: upstream-ubuntu-0.9.3
ImportĀ upstreamĀ versionĀ 0.9.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * swscale.c: scaling and chroma conversion using libswscale
3
3
 *****************************************************************************
4
4
 * Copyright (C) 1999-2008 the VideoLAN team
5
 
 * $Id: 81a963259dad1893873d3414feecca226d47e8d1 $
 
5
 * $Id: cf45e2dac26740934465b82761cf01d6f5fb8bf6 $
6
6
 *
7
7
 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8
8
 *          Gildas Bazin <gbazin@videolan.org>
177
177
    default: p_sys->i_sws_flags = SWS_BICUBIC; i_sws_mode = 2; break;
178
178
    }
179
179
 
180
 
    p_sys->p_src_filter =
181
 
        sws_getDefaultFilter( sws_lum_gblur, sws_chr_gblur,
182
 
                              sws_lum_sharpen, sws_chr_sharpen,
183
 
                              sws_chr_hshift, sws_chr_vshift, 0 );
 
180
    p_sys->p_src_filter = NULL;
184
181
    p_sys->p_dst_filter = NULL;
185
182
 
186
183
    /* Misc init */