Changeset cb1976ed0b1495fec3109274d56c0d6b306cffa4
- Timestamp:
- 09/09/03 00:00:47
(5 years ago)
- Author:
- Clément Stenac <zorglub@videolan.org>
- git-committer:
- Clément Stenac <zorglub@videolan.org> 1063058447 +0000
- git-parent:
[49dc6f8ebdb9a42ad356fc137d96fe283d446222]
- git-author:
- Clément Stenac <zorglub@videolan.org> 1063058447 +0000
- Message:
* modules/visualisation/visual/effects.c
modules/visualisation/visual/visual.h:
- Change default effect-height
- Less scaling in spectrum analyser
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rc9f89d8 |
rcb1976e |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2002 VideoLAN |
|---|
| 5 | | * $Id: effects.c,v 1.5 2003/09/03 10:00:23 zorglub Exp $ |
|---|
| | 5 | * $Id: effects.c,v 1.6 2003/09/08 22:00:47 zorglub Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Cl�nt Stenac <zorglub@via.ecp.fr> |
|---|
| … | … | |
| 176 | 176 | } |
|---|
| 177 | 177 | /* Calculate the height of the bar */ |
|---|
| 178 | | y >>=5; /* remove some noise */ |
|---|
| | 178 | y >>=7;/* remove some noise */ |
|---|
| 179 | 179 | if( y != 0) |
|---|
| 180 | 180 | { |
|---|
| reba02c6 |
rcb1976e |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2002 VideoLAN |
|---|
| 5 | | * $Id: visual.h,v 1.2 2003/08/29 16:56:43 zorglub Exp $ |
|---|
| | 5 | * $Id: visual.h,v 1.3 2003/09/08 22:00:47 zorglub Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Cl�nt Stenac <zorglub@via.ecp.fr> |
|---|
| … | … | |
| 80 | 80 | /* Default vout size */ |
|---|
| 81 | 81 | #define VOUT_WIDTH 320 |
|---|
| 82 | | #define VOUT_HEIGHT 240 |
|---|
| | 82 | #define VOUT_HEIGHT 120 |
|---|