]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/antiflicker.c
access_dvb/dtv: support for libdvbpsi >= 1.0.0
[vlc] / modules / video_filter / antiflicker.c
index 1b12b26e598edfb8d9df322d2c1a07ea3bbbefa4..44b9661cefc8b1deada2bd5a79c41aaeb64fde11 100644 (file)
@@ -1,24 +1,24 @@
 /*****************************************************************************
  * antiflicker.c : antiflicker video effect plugin for vlc
  *****************************************************************************
- * Copyright (C) 2000-2011 the VideoLAN team
+ * Copyright (C) 2000-2011 VLC authors and VideoLAN
  * $Id:
  *
  * Authors: Dharani Prabhu <dharani.prabhu.s@gmail.com>
  *
- * 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.
  *****************************************************************************/
 
 /*****************************************************************************
@@ -132,7 +132,10 @@ static int Create( vlc_object_t *p_this )
      (p_filter->fmt_in.video.i_height+1),sizeof(*p_filter->p_sys->p_old_data) );
 
     if( p_filter->p_sys->p_old_data == NULL )
+    {
+        free( p_filter->p_sys );
         return VLC_ENOMEM;
+    }
 
     memset( p_filter->p_sys->ia_luminance_data, 0,
                     sizeof(p_filter->p_sys->ia_luminance_data) );