Merge pull request #1126 from devnexen/late_fade_data

client sound fade_data is only really used later.
This commit is contained in:
Yamagi 2024-08-11 09:08:35 +02:00 committed by GitHub
commit 4b24e16a64
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 2 deletions

View File

@ -385,7 +385,7 @@ S_GetStatistics(const byte *data, int sound_length, int width, int channels,
// calculate attack/fade length
byte *sound_data = (byte *)data;
byte *delay_data = sound_data;
byte *fade_data = sound_data;
byte *fade_data;
byte *sound_end = sound_data + sound_length;
short sound_sample = 0;
short sound_treshold = sound_max / 2;
@ -401,7 +401,6 @@ S_GetStatistics(const byte *data, int sound_length, int width, int channels,
/* delay_data == (short *)(data + info.dataofs) */
*begin_length = (sound_data - delay_data) / channels;
delay_data = sound_data;
fade_data = sound_data;
/* attack calculate */
do