Mercurial > audlegacy
annotate src/audacious/visualization.c @ 3123:f1c756f39e6c trunk audacious-1.4.0-DR1
Invoke "Plugins are not derived work" clause provided by GPL3.
| author | William Pitcock <nenolod@atheme-project.org> |
|---|---|
| date | Fri, 20 Jul 2007 09:09:58 -0500 |
| parents | 3b6d316f8b09 |
| children | f02623377013 |
| rev | line source |
|---|---|
| 2313 | 1 /* Audacious - Cross-platform multimedia player |
| 2 * Copyright (C) 2005-2007 Audacious development team | |
| 3 * | |
| 4 * Based on BMP: | |
| 5 * Copyright (C) 2003-2004 BMP development team | |
| 6 * | |
| 7 * Based on XMMS: | |
| 8 * Copyright (C) 1998-2003 XMMS development team | |
| 9 * | |
| 10 * This program is free software; you can redistribute it and/or modify | |
| 11 * it under the terms of the GNU General Public License as published by | |
|
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3054
diff
changeset
|
12 * the Free Software Foundation; under version 3 of the License. |
| 2313 | 13 * |
| 14 * This program is distributed in the hope that it will be useful, | |
| 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 17 * GNU General Public License for more details. | |
| 18 * | |
| 19 * You should have received a copy of the GNU General Public License | |
|
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3054
diff
changeset
|
20 * along with this program. If not, see <http://www.gnu.org/licenses>. |
|
3123
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
21 * |
|
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
22 * The Audacious team does not consider modular code linking to |
|
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
23 * Audacious or using our public API to be a derived work. |
| 2313 | 24 */ |
| 25 | |
| 26 #include "visualization.h" | |
| 27 | |
| 28 #include <glib.h> | |
| 29 #include <stdlib.h> | |
| 30 #include <math.h> | |
| 31 #include <string.h> | |
| 32 | |
| 33 #include "fft.h" | |
| 34 #include "input.h" | |
| 35 #include "main.h" | |
| 36 #include "playback.h" | |
| 37 #include "plugin.h" | |
| 38 #include "ui_preferences.h" | |
| 39 #include "widgets/widgetcore.h" | |
| 40 | |
| 41 VisPluginData vp_data = { | |
| 42 NULL, | |
| 43 NULL, | |
| 44 FALSE | |
| 45 }; | |
| 46 | |
| 47 GList * | |
| 48 get_vis_list(void) | |
| 49 { | |
| 50 return vp_data.vis_list; | |
| 51 } | |
| 52 | |
| 53 GList * | |
| 54 get_vis_enabled_list(void) | |
| 55 { | |
| 56 return vp_data.enabled_list; | |
| 57 } | |
| 58 | |
| 59 void | |
| 60 vis_disable_plugin(VisPlugin * vp) | |
| 61 { | |
| 62 gint i = g_list_index(vp_data.vis_list, vp); | |
| 63 enable_vis_plugin(i, FALSE); | |
| 64 } | |
| 65 | |
| 66 void | |
| 67 vis_about(gint i) | |
| 68 { | |
| 69 GList *node = g_list_nth(vp_data.vis_list, i); | |
| 70 | |
| 71 if (node && node->data && VIS_PLUGIN(node->data)->about) | |
| 72 VIS_PLUGIN(node->data)->about(); | |
| 73 } | |
| 74 | |
| 75 void | |
| 76 vis_configure(gint i) | |
| 77 { | |
| 78 GList *node = g_list_nth(vp_data.vis_list, i); | |
| 79 | |
| 80 if (node && node->data && VIS_PLUGIN(node->data)->configure) | |
| 81 VIS_PLUGIN(node->data)->configure(); | |
| 82 } | |
| 83 | |
| 84 void | |
| 85 vis_playback_start(void) | |
| 86 { | |
| 87 GList *node; | |
| 88 VisPlugin *vp; | |
| 89 | |
| 90 if (vp_data.playback_started) | |
| 91 return; | |
| 92 | |
| 93 for (node = vp_data.enabled_list; node; node = g_list_next(node)) { | |
| 94 vp = node->data; | |
| 95 if (vp->playback_start) | |
| 96 vp->playback_start(); | |
| 97 } | |
| 98 vp_data.playback_started = TRUE; | |
| 99 } | |
| 100 | |
| 101 void | |
| 102 vis_playback_stop(void) | |
| 103 { | |
| 104 GList *node = vp_data.enabled_list; | |
| 105 VisPlugin *vp; | |
| 106 | |
| 107 if (!vp_data.playback_started) | |
| 108 return; | |
| 109 | |
| 110 for (node = vp_data.enabled_list; node; node = g_list_next(node)) { | |
| 111 vp = node->data; | |
| 112 if (vp->playback_stop) | |
| 113 vp->playback_stop(); | |
| 114 } | |
| 115 vp_data.playback_started = FALSE; | |
| 116 } | |
| 117 | |
| 118 void | |
| 119 enable_vis_plugin(gint i, gboolean enable) | |
| 120 { | |
| 121 GList *node = g_list_nth(vp_data.vis_list, i); | |
| 122 VisPlugin *vp; | |
| 123 | |
| 124 if (!node || !(node->data)) | |
| 125 return; | |
| 126 vp = node->data; | |
| 127 | |
| 128 if (enable && !g_list_find(vp_data.enabled_list, vp)) { | |
| 129 vp_data.enabled_list = g_list_append(vp_data.enabled_list, vp); | |
| 130 if (vp->init) | |
| 131 vp->init(); | |
| 132 if (playback_get_playing() && vp->playback_start) | |
| 133 vp->playback_start(); | |
| 134 } | |
| 135 else if (!enable && g_list_find(vp_data.enabled_list, vp)) { | |
| 136 vp_data.enabled_list = g_list_remove(vp_data.enabled_list, vp); | |
| 137 if (playback_get_playing() && vp->playback_stop) | |
| 138 vp->playback_stop(); | |
| 139 if (vp->cleanup) | |
| 140 vp->cleanup(); | |
| 141 } | |
| 142 } | |
| 143 | |
| 144 gboolean | |
| 145 vis_enabled(gint i) | |
| 146 { | |
| 147 return (g_list_find | |
| 148 (vp_data.enabled_list, | |
| 149 g_list_nth(vp_data.vis_list, i)->data) != NULL); | |
| 150 } | |
| 151 | |
| 152 gchar * | |
| 153 vis_stringify_enabled_list(void) | |
| 154 { | |
| 155 gchar *enalist = NULL, *tmp, *tmp2; | |
| 156 GList *node = vp_data.enabled_list; | |
| 157 | |
| 158 if (g_list_length(node)) { | |
| 159 enalist = g_path_get_basename(VIS_PLUGIN(node->data)->filename); | |
| 160 for (node = g_list_next(node); node != NULL; node = g_list_next(node)) { | |
| 161 tmp = enalist; | |
| 162 tmp2 = g_path_get_basename(VIS_PLUGIN(node->data)->filename); | |
| 163 enalist = g_strconcat(tmp, ",", tmp2, NULL); | |
| 164 g_free(tmp); | |
| 165 g_free(tmp2); | |
| 166 } | |
| 167 } | |
| 168 return enalist; | |
| 169 } | |
| 170 | |
| 171 void | |
| 172 vis_enable_from_stringified_list(gchar * list) | |
| 173 { | |
| 174 gchar **plugins, *base; | |
| 175 GList *node; | |
| 176 gint i; | |
| 177 VisPlugin *vp; | |
| 178 | |
| 179 if (!list || !strcmp(list, "")) | |
| 180 return; | |
| 181 plugins = g_strsplit(list, ",", 0); | |
| 182 for (i = 0; plugins[i]; i++) { | |
| 183 for (node = vp_data.vis_list; node != NULL; node = g_list_next(node)) { | |
| 184 base = g_path_get_basename(VIS_PLUGIN(node->data)->filename); | |
| 185 if (!strcmp(plugins[i], base)) { | |
| 186 vp = node->data; | |
| 187 vp_data.enabled_list = | |
| 188 g_list_append(vp_data.enabled_list, vp); | |
| 189 if (vp->init) | |
| 190 vp->init(); | |
| 191 if (playback_get_playing() && vp->playback_start) | |
| 192 vp->playback_start(); | |
| 193 } | |
| 194 g_free(base); | |
| 195 } | |
| 196 } | |
| 197 g_strfreev(plugins); | |
| 198 } | |
| 199 | |
| 200 static void | |
| 201 calc_stereo_pcm(gint16 dest[2][512], gint16 src[2][512], gint nch) | |
| 202 { | |
| 203 memcpy(dest[0], src[0], 512 * sizeof(gint16)); | |
| 204 if (nch == 1) | |
| 205 memcpy(dest[1], src[0], 512 * sizeof(gint16)); | |
| 206 else | |
| 207 memcpy(dest[1], src[1], 512 * sizeof(gint16)); | |
| 208 } | |
| 209 | |
| 210 static void | |
| 211 calc_mono_pcm(gint16 dest[2][512], gint16 src[2][512], gint nch) | |
| 212 { | |
| 213 gint i; | |
| 214 gint16 *d, *sl, *sr; | |
| 215 | |
| 216 if (nch == 1) | |
| 217 memcpy(dest[0], src[0], 512 * sizeof(gint16)); | |
| 218 else { | |
| 219 d = dest[0]; | |
| 220 sl = src[0]; | |
| 221 sr = src[1]; | |
| 222 for (i = 0; i < 512; i++) { | |
| 223 *(d++) = (*(sl++) + *(sr++)) >> 1; | |
| 224 } | |
| 225 } | |
| 226 } | |
| 227 | |
| 228 static void | |
| 229 calc_freq(gint16 * dest, gint16 * src) | |
| 230 { | |
| 231 static fft_state *state = NULL; | |
| 232 gfloat tmp_out[257]; | |
| 233 gint i; | |
| 234 | |
| 235 if (!state) | |
| 236 state = fft_init(); | |
| 237 | |
| 238 fft_perform(src, tmp_out, state); | |
| 239 | |
| 240 for (i = 0; i < 256; i++) | |
| 241 dest[i] = ((gint) sqrt(tmp_out[i + 1])) >> 8; | |
| 242 } | |
| 243 | |
| 244 static void | |
| 245 calc_mono_freq(gint16 dest[2][256], gint16 src[2][512], gint nch) | |
| 246 { | |
| 247 gint i; | |
| 248 gint16 *d, *sl, *sr, tmp[512]; | |
| 249 | |
| 250 if (nch == 1) | |
| 251 calc_freq(dest[0], src[0]); | |
| 252 else { | |
| 253 d = tmp; | |
| 254 sl = src[0]; | |
| 255 sr = src[1]; | |
| 256 for (i = 0; i < 512; i++) { | |
| 257 *(d++) = (*(sl++) + *(sr++)) >> 1; | |
| 258 } | |
| 259 calc_freq(dest[0], tmp); | |
| 260 } | |
| 261 } | |
| 262 | |
| 263 static void | |
| 264 calc_stereo_freq(gint16 dest[2][256], gint16 src[2][512], gint nch) | |
| 265 { | |
| 266 calc_freq(dest[0], src[0]); | |
| 267 | |
| 268 if (nch == 2) | |
| 269 calc_freq(dest[1], src[1]); | |
| 270 else | |
| 271 memcpy(dest[1], dest[0], 256 * sizeof(gint16)); | |
| 272 } | |
| 273 | |
| 274 void | |
| 275 vis_send_data(gint16 pcm_data[2][512], gint nch, gint length) | |
| 276 { | |
| 277 GList *node = vp_data.enabled_list; | |
| 278 VisPlugin *vp; | |
| 279 gint16 mono_freq[2][256], stereo_freq[2][256]; | |
| 280 gboolean mono_freq_calced = FALSE, stereo_freq_calced = FALSE; | |
| 281 gint16 mono_pcm[2][512], stereo_pcm[2][512]; | |
| 282 gboolean mono_pcm_calced = FALSE, stereo_pcm_calced = FALSE; | |
| 283 guint8 intern_vis_data[512]; | |
| 284 gint i; | |
| 285 | |
| 286 if (!pcm_data || nch < 1) { | |
| 287 if (cfg.vis_type != VIS_OFF) { | |
| 288 if (cfg.player_shaded && cfg.player_visible) | |
| 3054 | 289 ui_svis_timeout_func(mainwin_svis, NULL); |
| 2313 | 290 else |
| 3020 | 291 ui_vis_timeout_func(mainwin_vis, NULL); |
| 2313 | 292 } |
| 293 return; | |
| 294 } | |
| 295 | |
| 296 while (node) { | |
| 297 vp = node->data; | |
| 298 if (vp->num_pcm_chs_wanted > 0 && vp->render_pcm) { | |
| 299 if (vp->num_pcm_chs_wanted == 1) { | |
| 300 if (!mono_pcm_calced) { | |
| 301 calc_mono_pcm(mono_pcm, pcm_data, nch); | |
| 302 mono_pcm_calced = TRUE; | |
| 303 } | |
| 304 vp->render_pcm(mono_pcm); | |
| 305 } | |
| 306 else { | |
| 307 if (!stereo_pcm_calced) { | |
| 308 calc_stereo_pcm(stereo_pcm, pcm_data, nch); | |
| 309 stereo_pcm_calced = TRUE; | |
| 310 } | |
| 311 vp->render_pcm(stereo_pcm); | |
| 312 } | |
| 313 } | |
| 314 if (vp->num_freq_chs_wanted > 0 && vp->render_freq) { | |
| 315 if (vp->num_freq_chs_wanted == 1) { | |
| 316 if (!mono_freq_calced) { | |
| 317 calc_mono_freq(mono_freq, pcm_data, nch); | |
| 318 mono_freq_calced = TRUE; | |
| 319 } | |
| 320 vp->render_freq(mono_freq); | |
| 321 } | |
| 322 else { | |
| 323 if (!stereo_freq_calced) { | |
| 324 calc_stereo_freq(stereo_freq, pcm_data, nch); | |
| 325 stereo_freq_calced = TRUE; | |
| 326 } | |
| 327 vp->render_freq(stereo_freq); | |
| 328 } | |
| 329 } | |
| 330 node = g_list_next(node); | |
| 331 } | |
| 332 | |
| 333 if (cfg.vis_type == VIS_OFF) | |
| 334 return; | |
| 335 | |
| 336 if (cfg.vis_type == VIS_ANALYZER) { | |
| 337 /* Spectrum analyzer */ | |
| 338 /* 76 values */ | |
| 339 const gint long_xscale[] = | |
| 340 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, | |
| 341 17, 18, | |
| 342 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, | |
| 343 34, | |
| 344 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, | |
| 345 50, 51, | |
| 346 52, 53, 54, 55, 56, 57, 58, 61, 66, 71, 76, 81, 87, 93, | |
| 347 100, 107, | |
| 348 114, 122, 131, 140, 150, 161, 172, 184, 255 | |
| 349 }; | |
| 350 /* 20 values */ | |
| 351 const int short_xscale[] = | |
| 352 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 15, 20, 27, | |
| 353 36, 47, 62, 82, 107, 141, 184, 255 | |
| 354 }; | |
| 355 const double y_scale = 3.60673760222; /* 20.0 / log(256) */ | |
| 356 const int *xscale; | |
| 357 gint j, y, max; | |
| 358 | |
| 359 if (!mono_freq_calced) | |
| 360 calc_mono_freq(mono_freq, pcm_data, nch); | |
| 361 | |
| 362 memset(intern_vis_data, 0, 75); | |
| 363 | |
| 364 if (cfg.analyzer_type == ANALYZER_BARS) { | |
| 365 if (cfg.player_shaded) { | |
| 366 max = 13; | |
| 367 } | |
| 368 else { | |
| 369 max = 19; | |
| 370 } | |
| 371 xscale = short_xscale; | |
| 372 } | |
| 373 else { | |
| 374 if (cfg.player_shaded) { | |
| 375 max = 37; | |
| 376 } | |
| 377 else { | |
| 378 max = 75; | |
| 379 } | |
| 380 xscale = long_xscale; | |
| 381 } | |
| 382 | |
| 383 for (i = 0; i < max; i++) { | |
| 384 for (j = xscale[i], y = 0; j < xscale[i + 1]; j++) { | |
| 385 if (mono_freq[0][j] > y) | |
| 386 y = mono_freq[0][j]; | |
| 387 } | |
| 388 y >>= 7; | |
| 389 if (y != 0) { | |
| 390 intern_vis_data[i] = log(y) * y_scale; | |
| 391 if (intern_vis_data[i] > 15) | |
| 392 intern_vis_data[i] = 15; | |
| 393 } | |
| 394 else | |
| 395 intern_vis_data[i] = 0; | |
| 396 } | |
| 397 | |
| 398 } | |
| 399 else if(cfg.vis_type == VIS_VOICEPRINT){ | |
| 400 if (cfg.player_shaded && cfg.player_visible) { | |
| 401 /* VU */ | |
| 402 gint vu, val; | |
| 403 | |
| 404 if (!stereo_pcm_calced) | |
| 405 calc_stereo_pcm(stereo_pcm, pcm_data, nch); | |
| 406 vu = 0; | |
| 407 for (i = 0; i < 512; i++) { | |
| 408 val = abs(stereo_pcm[0][i]); | |
| 409 if (val > vu) | |
| 410 vu = val; | |
| 411 } | |
| 412 intern_vis_data[0] = (vu * 37) >> 15; | |
| 413 if (intern_vis_data[0] > 37) | |
| 414 intern_vis_data[0] = 37; | |
| 415 if (nch == 2) { | |
| 416 vu = 0; | |
| 417 for (i = 0; i < 512; i++) { | |
| 418 val = abs(stereo_pcm[1][i]); | |
| 419 if (val > vu) | |
| 420 vu = val; | |
| 421 } | |
| 422 intern_vis_data[1] = (vu * 37) >> 15; | |
| 423 if (intern_vis_data[1] > 37) | |
| 424 intern_vis_data[1] = 37; | |
| 425 } | |
| 426 else | |
| 427 intern_vis_data[1] = intern_vis_data[0]; | |
| 428 } | |
| 429 else{ /*Voiceprint*/ | |
| 430 if (!mono_freq_calced) | |
| 431 calc_mono_freq(mono_freq, pcm_data, nch); | |
| 432 memset(intern_vis_data, 0, 256); | |
| 433 /* For the values [0-16] we use the frequency that's 3/2 as much. | |
| 434 If we assume the 512 values calculated by calc_mono_freq to cover 0-22kHz linearly | |
| 435 we get a range of [0-16] * 3/2 * 22000/512 = [0-1,031] Hz. | |
| 436 Most stuff above that is harmonics and we want to utilize the 16 samples we have | |
| 437 to the max[tm] | |
| 438 */ | |
| 439 for(i = 0; i < 50 ; i+=3){ | |
| 440 intern_vis_data[i/3] += (mono_freq[0][i/2] >> 5); | |
| 441 | |
| 442 /*Boost frequencies above 257Hz a little*/ | |
| 443 //if(i > 4 * 3) | |
| 444 // intern_vis_data[i/3] += 8; | |
| 445 } | |
| 446 } | |
| 447 } | |
| 448 else { /* (cfg.vis_type == VIS_SCOPE) */ | |
| 449 | |
| 450 /* Oscilloscope */ | |
| 451 gint pos, step; | |
| 452 | |
| 453 if (!mono_pcm_calced) | |
| 454 calc_mono_pcm(mono_pcm, pcm_data, nch); | |
| 455 | |
| 456 step = (length << 8) / 74; | |
| 457 for (i = 0, pos = 0; i < 75; i++, pos += step) { | |
| 458 intern_vis_data[i] = ((mono_pcm[0][pos >> 8]) >> 12) + 7; | |
| 459 if (intern_vis_data[i] == 255) | |
| 460 intern_vis_data[i] = 0; | |
| 461 else if (intern_vis_data[i] > 12) | |
| 462 intern_vis_data[i] = 12; | |
| 463 /* Do not see the point of that? (comparison always false) -larne. | |
| 464 if (intern_vis_data[i] < 0) | |
| 465 intern_vis_data[i] = 0; */ | |
| 466 } | |
| 467 } | |
| 468 if (cfg.player_shaded && cfg.player_visible) | |
| 3054 | 469 ui_svis_timeout_func(mainwin_svis, intern_vis_data); |
| 2313 | 470 else |
| 3020 | 471 ui_vis_timeout_func(mainwin_vis, intern_vis_data); |
| 2313 | 472 } |
