~ubuntu-branches/ubuntu/oneiric/muse/oneiric

« back to all changes in this revision

Viewing changes to muse/vst.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2010-11-17 21:43:38 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20101117214338-1hvfl7oo2dsqnvrb
Tags: 1.1-0ubuntu1
* New upstream release (LP: #668631)
* Switch to dpkg-source 3.0 (quilt) format
* Switch to dh7 short form
* debian/rules:
  - added --enable-dssi and --enable-osc to conf flags for dssi support
  - added -ljackserver to LDFLAGS to fix a FTBFS because of --as-needed
* debian/control:
  - added build build dependency on liblo-dev and dssi-dev for dssi support
  - bump Standards-version to 3.9.1. No changes required.
* debian/muse.desktop, debian/muse.xpm: dropped as desktop file and icon is
  now shipped upstream.
* fix-desktop-categories.patch: fix Categories tag in upstream desktop file
* 10_es_locale_fix.dpatch: refreshed and converted to quilt as
  fix_es_locale.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
473
473
      return plugin->numOutputs;
474
474
      }
475
475
 
 
476
int VstSynthIF::totalOutChannels() const
 
477
      {
 
478
      AEffect* plugin = _fst->plugin;
 
479
      return plugin->numOutputs;
 
480
      }
 
481
 
 
482
int VstSynthIF::totalInChannels() const
 
483
      {
 
484
      AEffect* plugin = _fst->plugin;
 
485
      return plugin->numInputs;
 
486
      }
 
487
 
476
488
//---------------------------------------------------------
477
489
//   createSIF
478
490
//---------------------------------------------------------
502
514
      }
503
515
 
504
516
//---------------------------------------------------------
 
517
//   getParameter
 
518
//---------------------------------------------------------
 
519
 
 
520
float VstSynthIF::getParameter(unsigned long idx) const
 
521
      {
 
522
      return _fst->plugin->getParameter(_fst->plugin, idx);
 
523
      }
 
524
 
 
525
//---------------------------------------------------------
505
526
//   setParameter
506
527
//---------------------------------------------------------
507
528
 
508
 
void VstSynthIF::setParameter(int idx, float value)
 
529
void VstSynthIF::setParameter(unsigned long idx, float value)
509
530
      {
510
531
      _fst->plugin->setParameter(_fst->plugin, idx, value);
511
532
      }