1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
|
/* BSE - Better Sound Engine
* Copyright (C) 1998-2002 Tim Janik
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* A copy of the GNU Lesser General Public License should ship along
* with this library; if not, see http://www.gnu.org/copyleft/.
*/
#include "topconfig.h"
#include "bseutils.h"
#include "gsldatautils.h"
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <dirent.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
/* --- record utils --- */
BseNoteDescription*
bse_note_description (BseMusicalTuningType musical_tuning,
int note,
int fine_tune)
{
BseNoteDescription *info = bse_note_description_new ();
info->musical_tuning = musical_tuning;
if (note >= BSE_MIN_NOTE && note <= BSE_MAX_NOTE)
{
gchar letter;
info->note = note;
gboolean black_semitone = false;
bse_note_examine (info->note,
&info->octave,
&info->semitone,
&black_semitone,
&letter);
info->upshift = black_semitone;
info->letter = letter;
info->fine_tune = CLAMP (fine_tune, BSE_MIN_FINE_TUNE, BSE_MAX_FINE_TUNE);
info->freq = bse_note_to_tuned_freq (musical_tuning, info->note, info->fine_tune);
info->name = bse_note_to_string (info->note);
info->max_fine_tune = BSE_MAX_FINE_TUNE;
info->kammer_note = BSE_KAMMER_NOTE;
}
else
{
info->note = BSE_NOTE_VOID;
info->name = NULL;
info->max_fine_tune = BSE_MAX_FINE_TUNE;
info->kammer_note = BSE_KAMMER_NOTE;
}
return info;
}
BsePartNote*
bse_part_note (guint id,
guint channel,
guint tick,
guint duration,
gint note,
gint fine_tune,
gfloat velocity,
gboolean selected)
{
BsePartNote *pnote = bse_part_note_new ();
pnote->id = id;
pnote->channel = channel;
pnote->tick = tick;
pnote->duration = duration;
pnote->note = note;
pnote->fine_tune = fine_tune;
pnote->velocity = velocity;
pnote->selected = selected != FALSE;
return pnote;
}
void
bse_part_note_seq_take_append (BsePartNoteSeq *seq,
BsePartNote *element)
{
g_return_if_fail (seq != NULL);
g_return_if_fail (element != NULL);
bse_part_note_seq_append (seq, element);
bse_part_note_free (element);
}
BsePartControl*
bse_part_control (guint id,
guint tick,
BseMidiSignalType ctype,
gfloat value,
gboolean selected)
{
BsePartControl *pctrl = bse_part_control_new ();
pctrl->id = id;
pctrl->tick = tick;
pctrl->control_type = ctype;
pctrl->value = value;
pctrl->selected = selected != FALSE;
return pctrl;
}
void
bse_part_control_seq_take_append (BsePartControlSeq *seq,
BsePartControl *element)
{
g_return_if_fail (seq != NULL);
g_return_if_fail (element != NULL);
bse_part_control_seq_append (seq, element);
bse_part_control_free (element);
}
void
bse_note_sequence_resize (BseNoteSequence *rec,
guint length)
{
guint fill = rec->notes->n_notes;
bse_note_seq_resize (rec->notes, length);
while (fill < length)
rec->notes->notes[fill++] = SFI_KAMMER_NOTE;
}
guint
bse_note_sequence_length (BseNoteSequence *rec)
{
return rec->notes->n_notes;
}
void
bse_property_candidate_relabel (BsePropertyCandidates *pc,
const gchar *label,
const gchar *tooltip)
{
g_free (pc->label);
pc->label = g_strdup (label);
g_free (pc->tooltip);
pc->tooltip = g_strdup (tooltip);
}
void
bse_item_seq_remove (BseItemSeq *iseq,
BseItem *item)
{
guint i;
restart:
for (i = 0; i < iseq->n_items; i++)
if (iseq->items[i] == item)
{
iseq->n_items--;
g_memmove (iseq->items + i, iseq->items + i + 1, (iseq->n_items - i) * sizeof (iseq->items[0]));
goto restart;
}
}
SfiRing*
bse_item_seq_to_ring (BseItemSeq *iseq)
{
SfiRing *ring = NULL;
guint i;
if (iseq)
for (i = 0; i < iseq->n_items; i++)
ring = sfi_ring_append (ring, iseq->items[i]);
return ring;
}
BseItemSeq*
bse_item_seq_from_ring (SfiRing *ring)
{
BseItemSeq *iseq = bse_item_seq_new();
SfiRing *node;
for (node = ring; node; node = sfi_ring_walk (node, ring))
bse_item_seq_append (iseq, node->data);
return iseq;
}
/* --- debugging --- */
static int debug_fds[] = { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 };
#define MAX_DEBUG_STREAMS (G_N_ELEMENTS (debug_fds))
void
bse_debug_dump_floats (guint debug_stream,
guint n_channels,
guint mix_freq,
guint n_values,
gfloat *values)
{
debug_stream %= MAX_DEBUG_STREAMS;
if (debug_fds[debug_stream] < 0)
{
gchar *file = g_strdup_printf ("/tmp/beast-debug-dump%u.%u", debug_stream, getpid());
debug_fds[debug_stream] = open (file, O_WRONLY | O_CREAT | O_TRUNC, 0666);
g_free (file);
if (debug_fds[debug_stream] >= 0)
bse_wave_file_dump_header (debug_fds[debug_stream], 0x7fff0000, 16, n_channels, mix_freq);
}
if (debug_fds[debug_stream] >= 0)
{
guint8 *dest = g_new (guint8, n_values * 2); /* 16bit */
guint j, n_bytes = gsl_conv_from_float_clip (GSL_WAVE_FORMAT_SIGNED_16, G_BYTE_ORDER, values, dest, n_values);
do
j = write (debug_fds[debug_stream], dest, n_bytes);
while (j < 0 && errno == EINTR);
g_free (dest);
}
}
/* --- balance calculation --- */
double
bse_balance_get (double level1,
double level2)
{
return level2 - level1;
}
void
bse_balance_set (double balance,
double *level1,
double *level2)
{
double l1 = *level1, l2 = *level2;
double d = (l1 + l2) * 0.5;
l1 = d - balance * 0.5;
l2 = d + balance * 0.5;
if (l1 < 0)
{
l2 += -l1;
l1 = 0;
}
if (l1 > 100)
{
l2 -= l1 - 100;
l1 = 100;
}
if (l2 < 0)
{
l1 += -l2;
l2 = 0;
}
if (l2 > 100)
{
l1 -= l2 - 100;
l2 = 100;
}
*level1 = l1;
*level2 = l2;
}
/* --- icons --- */
typedef enum /*< skip >*/
{
BSE_PIXDATA_RGB = 3,
BSE_PIXDATA_RGBA = 4,
BSE_PIXDATA_RGB_MASK = 0x07,
BSE_PIXDATA_1BYTE_RLE = (1 << 3),
BSE_PIXDATA_ENCODING_MASK = 0x08
} BsePixdataType;
typedef struct
{
BsePixdataType type : 8;
guint width : 12;
guint height : 12;
const guint8 *encoded_pix_data;
} BsePixdata;
static BseIcon*
bse_icon_from_pixdata (const BsePixdata *pixdata)
{
BseIcon *icon;
guint bpp, encoding;
g_return_val_if_fail (pixdata != NULL, NULL);
if (pixdata->width < 1 || pixdata->width > 128 ||
pixdata->height < 1 || pixdata->height > 128)
{
g_warning ("%s(): `pixdata' exceeds dimension limits (%ux%u)",
BIRNET_PRETTY_FUNCTION, pixdata->width, pixdata->height);
return NULL;
}
bpp = pixdata->type & BSE_PIXDATA_RGB_MASK;
encoding = pixdata->type & BSE_PIXDATA_ENCODING_MASK;
if ((bpp != BSE_PIXDATA_RGB && bpp != BSE_PIXDATA_RGBA) ||
(encoding && encoding != BSE_PIXDATA_1BYTE_RLE))
{
g_warning ("%s(): `pixdata' format/encoding unrecognized",
BIRNET_PRETTY_FUNCTION);
return NULL;
}
if (!pixdata->encoded_pix_data)
return NULL;
icon = bse_icon_new ();
icon->bytes_per_pixel = bpp;
icon->width = pixdata->width;
icon->height = pixdata->height;
sfi_bblock_resize (icon->pixels, icon->width * icon->height * icon->bytes_per_pixel);
if (encoding == BSE_PIXDATA_1BYTE_RLE)
{
const guint8 *rle_buffer = pixdata->encoded_pix_data;
guint8 *image_buffer = icon->pixels->bytes;
guint8 *image_limit = image_buffer + icon->width * icon->height * bpp;
while (image_buffer < image_limit)
{
guint length = *(rle_buffer++);
gboolean check_overrun = FALSE;
if (length & 128)
{
length = length - 128;
check_overrun = image_buffer + length * bpp > image_limit;
if (check_overrun)
length = (image_limit - image_buffer) / bpp;
if (bpp < 4)
do
{
memcpy (image_buffer, rle_buffer, 3);
image_buffer += 3;
}
while (--length);
else
do
{
memcpy (image_buffer, rle_buffer, 4);
image_buffer += 4;
}
while (--length);
rle_buffer += bpp;
}
else
{
length *= bpp;
check_overrun = image_buffer + length > image_limit;
if (check_overrun)
length = image_limit - image_buffer;
memcpy (image_buffer, rle_buffer, length);
image_buffer += length;
rle_buffer += length;
}
if (check_overrun)
g_warning ("%s(): `pixdata' encoding screwed", BIRNET_PRETTY_FUNCTION);
}
}
else
memcpy (icon->pixels->bytes, pixdata->encoded_pix_data, icon->width * icon->height * bpp);
return icon;
}
static inline const guint8 *
get_uint32 (const guint8 *stream, guint *result)
{
*result = (stream[0] << 24) + (stream[1] << 16) + (stream[2] << 8) + stream[3];
return stream + 4;
}
BseIcon*
bse_icon_from_pixstream (const guint8 *pixstream)
{
BsePixdata pixd;
const guint8 *s = pixstream;
guint len, type, rowstride, width, height;
g_return_val_if_fail (pixstream != NULL, NULL);
if (strncmp (s, "GdkP", 4) != 0)
return NULL;
s += 4;
s = get_uint32 (s, &len);
if (len < 24)
return NULL;
s = get_uint32 (s, &type);
if (type != 0x02010002 && /* RLE/8bit/RGBA */
type != 0x01010002) /* RAW/8bit/RGBA */
return NULL;
s = get_uint32 (s, &rowstride);
s = get_uint32 (s, &width);
s = get_uint32 (s, &height);
if (width < 1 || height < 1)
return NULL;
pixd.type = BSE_PIXDATA_RGBA | (type >> 24 == 2 ? BSE_PIXDATA_1BYTE_RLE : 0);
pixd.width = width;
pixd.height = height;
pixd.encoded_pix_data = s;
return bse_icon_from_pixdata (&pixd);
}
/* --- ID allocator --- */
#define ID_WITHHOLD_BUFFER_SIZE 59
static gulong id_counter = 1;
static gulong n_buffer_ids = 0;
static gulong id_buffer[ID_WITHHOLD_BUFFER_SIZE];
static gulong id_buffer_pos = 0;
static gulong n_free_ids = 0;
static gulong *free_id_buffer = NULL;
void
bse_id_free (gulong id)
{
g_return_if_fail (id > 0);
/* release oldest withheld id */
if (n_buffer_ids >= ID_WITHHOLD_BUFFER_SIZE)
{
gulong n = n_free_ids++;
gulong size = sfi_alloc_upper_power2 (n_free_ids);
if (size != sfi_alloc_upper_power2 (n))
free_id_buffer = g_renew (gulong, free_id_buffer, size);
free_id_buffer[n] = id_buffer[id_buffer_pos];
}
/* release id */
id_buffer[id_buffer_pos++] = id;
n_buffer_ids = MAX (n_buffer_ids, id_buffer_pos);
if (id_buffer_pos >= ID_WITHHOLD_BUFFER_SIZE)
id_buffer_pos = 0;
}
gulong
bse_id_alloc (void)
{
if (n_free_ids)
{
gulong random_pos = (id_counter + id_buffer[id_buffer_pos]) % n_free_ids--;
gulong id = free_id_buffer[random_pos];
free_id_buffer[random_pos] = free_id_buffer[n_free_ids];
return id;
}
return id_counter++;
}
/* --- string array manipulation --- */
static gchar*
canonify_xinfo_key (const gchar *key)
{
gchar *ckey = g_strdup (key);
g_strcanon (ckey, G_CSET_A_2_Z G_CSET_a_2_z G_CSET_DIGITS, '-');
/* preserve leading dot */
if (key[0] == '.')
ckey[0] = '.';
return ckey;
}
gchar**
bse_xinfos_add_value (gchar **xinfos,
const gchar *key,
const gchar *value)
{
g_return_val_if_fail (key != NULL && strchr (key, '=') == NULL, xinfos);
if (!value || !value[0])
return bse_xinfos_del_value (xinfos, key);
else
{
gchar *ckey = canonify_xinfo_key (key);
guint i, l = strlen (ckey);
if (xinfos)
{
for (i = 0; xinfos[i]; i++)
if (strncmp (xinfos[i], ckey, l) == 0 &&
xinfos[i][l] == '=')
break;
if (xinfos[i]) /* found value to replace */
{
g_free (xinfos[i]);
xinfos[i] = g_strconcat (ckey, "=", value, NULL);
g_free (ckey);
return xinfos;
}
}
i = xinfos ? g_strlenv (xinfos) : 0;
i++;
xinfos = g_renew (gchar*, xinfos, i + 1);
xinfos[i--] = NULL;
xinfos[i] = g_strconcat (ckey, "=", value, NULL);
g_free (ckey);
return xinfos;
}
}
gchar**
bse_xinfos_parse_assignment (gchar **xinfos,
const gchar *assignment)
{
g_return_val_if_fail (assignment != NULL, xinfos);
const gchar *e = strchr (assignment, '=');
if (e && e > assignment)
{
gchar *key = g_strndup (assignment, e - assignment);
if (e[1]) /* key=text */
xinfos = bse_xinfos_add_value (xinfos, key, &e[1]);
else /* key= */
xinfos = bse_xinfos_del_value (xinfos, key);
}
else if (!e) /* key */
xinfos = bse_xinfos_del_value (xinfos, assignment);
return xinfos;
}
gchar**
bse_xinfos_del_value (gchar **xinfos,
const gchar *key)
{
g_return_val_if_fail (key != NULL && strchr (key, '=') == NULL, xinfos);
if (xinfos)
{
gchar *ckey = canonify_xinfo_key (key);
guint i, l = strlen (ckey);
for (i = 0; xinfos[i]; i++)
if (strncmp (xinfos[i], ckey, l) == 0 &&
xinfos[i][l] == '=')
break;
g_free (ckey);
if (xinfos[i]) /* found value to delete */
{
g_free (xinfos[i]);
while (xinfos[i + 1])
{
xinfos[i] = xinfos[i + 1];
i++;
}
xinfos[i] = NULL;
}
}
return xinfos;
}
gchar**
bse_xinfos_add_float (gchar **xinfos,
const gchar *key,
gfloat fvalue)
{
gchar buffer[G_ASCII_DTOSTR_BUF_SIZE * 2 + 1024];
return bse_xinfos_add_value (xinfos, key, g_ascii_dtostr (buffer, sizeof (buffer), fvalue));
}
gchar**
bse_xinfos_add_num (gchar **xinfos,
const gchar *key,
SfiNum num)
{
gchar buffer[128];
g_snprintf (buffer, sizeof (buffer), "%lld", num);
return bse_xinfos_add_value (xinfos, key, buffer);
}
const gchar*
bse_xinfos_get_value (gchar **xinfos,
const gchar *key)
{
g_return_val_if_fail (key != NULL && strchr (key, '=') == NULL, NULL);
if (xinfos)
{
guint i, l = strlen (key);
for (i = 0; xinfos[i]; i++)
if (strncmp (xinfos[i], key, l) == 0 &&
xinfos[i][l] == '=')
break;
if (xinfos[i]) /* found value */
return xinfos[i] + l + 1;
}
return NULL;
}
gfloat
bse_xinfos_get_float (gchar **xinfos,
const gchar *key)
{
const gchar *v = bse_xinfos_get_value (xinfos, key);
if (v)
return g_ascii_strtod (v, NULL);
else
return 0.0;
}
SfiNum
bse_xinfos_get_num (gchar **xinfos,
const gchar *key)
{
const gchar *v = bse_xinfos_get_value (xinfos, key);
if (v)
return g_ascii_strtoull (v, NULL, 10);
else
return 0.0;
}
gchar**
bse_xinfos_dup_consolidated (gchar **xinfos,
gboolean copy_interns)
{
if (xinfos)
{
/* construct list of normalized xinfos */
SfiRing *xinfo_list = NULL;
guint i = 0;
while (xinfos[i])
{
const gchar *xinfo = xinfos[i];
const gchar *e = strchr (xinfo, '=');
if (!e && xinfo[0]) /* empty xinfo without '=' */
xinfo_list = sfi_ring_append (xinfo_list, g_strconcat (xinfo, "=", NULL));
else if (e && !e[1]) /* empty xinfo with "=" */
xinfo_list = sfi_ring_append (xinfo_list, g_strdup (xinfo));
else if (e) /* non-empty xinfo */
xinfo_list = sfi_ring_append (xinfo_list, g_strdup (xinfo));
i++;
}
SfiRing *rcopy = sfi_ring_copy (xinfo_list);
/* sort (stable, keeping order) */
xinfo_list = sfi_ring_sort (xinfo_list, (SfiCompareFunc) bse_xinfo_stub_compare, NULL);
/* remove dups (preserves first element from dup list) */
xinfo_list = sfi_ring_uniq_free_deep (xinfo_list, (SfiCompareFunc) bse_xinfo_stub_compare, NULL, g_free);
/* restore original order */
xinfo_list = sfi_ring_reorder (xinfo_list, rcopy);
sfi_ring_free (rcopy);
/* filter non-empty xinfos */
if (xinfo_list)
{
gchar **dest_xinfos = g_new (gchar*, sfi_ring_length (xinfo_list) + 1);
i = 0;
while (xinfo_list)
{
const gchar *xinfo = sfi_ring_pop_head (&xinfo_list);
const gchar *e = strchr (xinfo, '=');
if (e[1] && /* non-empty xinfo */
(e[0] != '.' || copy_interns))
dest_xinfos[i++] = g_strdup (xinfo);
}
dest_xinfos[i] = NULL;
return dest_xinfos;
}
}
return NULL;
}
gint
bse_xinfo_stub_compare (const gchar *xinfo1, /* must contain '=' */
const gchar *xinfo2) /* must contain '=' */
{
const gchar *e1 = strchr (xinfo1, '=');
gint l1 = e1 - (const gchar*) xinfo1;
const gchar *e2 = strchr (xinfo2, '=');
gint l2 = e2 - (const gchar*) xinfo2;
if (l1 != l2)
return l1 - l2;
return strncmp (xinfo1, xinfo2, l1);
}
/* --- miscellaeous --- */
guint
bse_string_hash (gconstpointer string)
{
const gchar *p = string;
guint h = 0;
if (!p)
return 1;
for (; *p; p++)
h = (h << 5) - h + *p;
return h;
}
gint
bse_string_equals (gconstpointer string1,
gconstpointer string2)
{
if (string1 && string2)
return strcmp (string1, string2) == 0;
else
return string1 == string2;
}
const gchar*
bse_intern_path_user_data (const gchar *dir)
{
return g_intern_strconcat (BSE_PATH_USER_DATA ("/"), dir, NULL);
}
const gchar*
bse_intern_default_author (void)
{
const char *user = g_get_user_name();
const char *name = g_get_real_name();
if (name && user && name[0] && strcmp (user, name) != 0)
return g_intern_string (name);
return g_intern_static_string ("");
}
const gchar*
bse_intern_default_license (void)
{
return g_intern_static_string ("Creative Commons Attribution 2.5 (http://creativecommons.org/licenses/by/2.5/)");
}
void
bse_bbuffer_puts (gchar bbuffer[BSE_BBUFFER_SIZE],
const gchar *string)
{
g_return_if_fail (bbuffer != NULL);
strncpy (bbuffer, string, BSE_BBUFFER_SIZE - 1);
bbuffer[BSE_BBUFFER_SIZE - 1] = 0;
}
guint
bse_bbuffer_printf (gchar bbuffer[BSE_BBUFFER_SIZE],
const gchar *format,
...)
{
va_list args;
guint l;
g_return_val_if_fail (bbuffer != NULL, 0);
g_return_val_if_fail (format != NULL, 0);
va_start (args, format);
l = g_vsnprintf (bbuffer, BSE_BBUFFER_SIZE, format, args);
va_end (args);
return l;
}
|