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

« back to all changes in this revision

Viewing changes to muse/midictrl.h

  • 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:
57
57
// NRPN - non registered parameter numbers 0x30000 -
58
58
 
59
59
// internal controller types:
60
 
const int CTRL_PITCH    = 0x40000;
61
 
const int CTRL_PROGRAM  = 0x40001;
62
 
const int CTRL_VELOCITY = 0x40002;
63
 
const int CTRL_MASTER_VOLUME = 0x40003;
 
60
const int CTRL_INTERNAL_OFFSET = 0x40000;
 
61
 
 
62
// p3.3.37
 
63
//const int CTRL_PITCH    = 0x40000;
 
64
//const int CTRL_PROGRAM  = 0x40001;
 
65
//const int CTRL_VELOCITY = 0x40002;
 
66
//const int CTRL_MASTER_VOLUME = 0x40003;
 
67
const int CTRL_PITCH    = CTRL_INTERNAL_OFFSET;
 
68
const int CTRL_PROGRAM  = CTRL_INTERNAL_OFFSET      + 1;
 
69
const int CTRL_VELOCITY = CTRL_INTERNAL_OFFSET      + 2;
 
70
//const int CTRL_MASTER_VOLUME = CTRL_INTERNAL_OFFSET + 3;
64
71
 
65
72
const int CTRL_VAL_UNKNOWN   = 0x10000000; // used as unknown hwVal
66
73
 
69
76
const int CTRL_NRPN_OFFSET   = 0x30000;
70
77
const int CTRL_RPN14_OFFSET  = 0x50000;
71
78
const int CTRL_NRPN14_OFFSET = 0x60000;
 
79
const int CTRL_NONE_OFFSET   = 0x70000;
72
80
 
73
81
class Xml;
74
82
class Part;