Changeset 6db0571780959d6dbf1071db895e5fa76f9b55e8
- 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
| rc8b4bd8 |
r6db0571 |
|
| 1 | 1 | dnl Autoconf settings for vlc |
|---|
| 2 | | dnl $Id: configure.ac,v 1.62 2003/08/17 20:58:44 alexis Exp $ |
|---|
| | 2 | dnl $Id: configure.ac,v 1.63 2003/08/19 21:20:00 zorglub Exp $ |
|---|
| 3 | 3 | |
|---|
| 4 | 4 | AC_INIT(vlc,0.6.3-cvs) |
|---|
| … | … | |
| 2819 | 2819 | AX_ADD_LDFLAGS([xosd],[-lxosd]) |
|---|
| 2820 | 2820 | fi |
|---|
| | 2821 | fi |
|---|
| | 2822 | |
|---|
| | 2823 | dnl |
|---|
| | 2824 | dnl Visualisation plugin |
|---|
| | 2825 | dnl |
|---|
| | 2826 | AC_ARG_ENABLE(visual, |
|---|
| | 2827 | [ --enable-visual visualisation plugin (default enabled)]) |
|---|
| | 2828 | if test "${enable_visual}" != "no" |
|---|
| | 2829 | then |
|---|
| | 2830 | AX_ADD_PLUGINS([visual]) |
|---|
| 2821 | 2831 | fi |
|---|
| 2822 | 2832 | |
|---|
| … | … | |
| 3273 | 3283 | modules/visualization/scope/Makefile |
|---|
| 3274 | 3284 | modules/visualization/xosd/Makefile |
|---|
| | 3285 | modules/visualization/visual/Makefile |
|---|
| 3275 | 3286 | ],[ |
|---|
| 3276 | 3287 | chmod 0755 vlc-config |
|---|
| r0596bf5 |
r6db0571 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * 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 $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Christophe Massiot <massiot@via.ecp.fr> |
|---|
| … | … | |
| 273 | 273 | } |
|---|
| 274 | 274 | |
|---|
| | 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 | |
|---|
| 275 | 285 | #if 0 |
|---|
| 276 | 286 | /* Headphone filter add-ons. */ |
|---|