Changeset 6db0571780959d6dbf1071db895e5fa76f9b55e8

Show
Ignore:
Timestamp:
19/08/03 23:20:00 (5 years ago)
Author:
Clément Stenac <zorglub@videolan.org>
git-committer:
Clément Stenac <zorglub@videolan.org> 1061328000 +0000
git-parent:

[84c6ecb2b20340071acfd3c4802aa2a399273666]

git-author:
Clément Stenac <zorglub@videolan.org> 1061328000 +0000
Message:

* src/audio_output/input.c: forgot to free something

* modules/visualisation/visual/* :

visualization system. It supports multi-effects.

At the moment:

-dummy (guess what ? it does nothing)
-scope (adapted and fixed from sam's one)
-random (displays random plots)

Todo:

  • spectrum analyser
  • movement effects (rotations, scrolls,...)
  • blur effect ?
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • configure.ac

    rc8b4bd8 r6db0571  
    11dnl Autoconf settings for vlc 
    2 dnl $Id: configure.ac,v 1.62 2003/08/17 20:58:44 alexis Exp $ 
     2dnl $Id: configure.ac,v 1.63 2003/08/19 21:20:00 zorglub Exp $ 
    33 
    44AC_INIT(vlc,0.6.3-cvs) 
     
    28192819    AX_ADD_LDFLAGS([xosd],[-lxosd]) 
    28202820  fi 
     2821fi 
     2822 
     2823dnl 
     2824dnl Visualisation plugin 
     2825dnl 
     2826AC_ARG_ENABLE(visual, 
     2827  [  --enable-visual        visualisation plugin (default enabled)]) 
     2828if test "${enable_visual}" != "no" 
     2829then 
     2830    AX_ADD_PLUGINS([visual]) 
    28212831fi 
    28222832 
     
    32733283  modules/visualization/scope/Makefile 
    32743284  modules/visualization/xosd/Makefile 
     3285  modules/visualization/visual/Makefile 
    32753286],[ 
    32763287  chmod 0755 vlc-config 
  • src/audio_output/input.c

    r0596bf5 r6db0571  
    33 ***************************************************************************** 
    44 * Copyright (C) 2002 VideoLAN 
    5  * $Id: input.c,v 1.35 2003/08/18 13:16:43 zorglub Exp $ 
     5 * $Id: input.c,v 1.36 2003/08/19 21:20:00 zorglub Exp $ 
    66 * 
    77 * Authors: Christophe Massiot <massiot@via.ecp.fr> 
     
    273273    } 
    274274 
     275   /* Free the list */ 
     276    p_current_filter = p_first_filter; 
     277    while (p_current_filter) 
     278    { 
     279        user_filter_t * p_old_filter = p_current_filter; 
     280        p_current_filter = p_current_filter->p_next; 
     281        free(p_old_filter); 
     282    } 
     283            
     284     
    275285#if 0 
    276286     /* Headphone filter add-ons. */