~ubuntu-branches/ubuntu/precise/lmms/precise-updates

« back to all changes in this revision

Viewing changes to plugins/ladspa_effect/calf/src/calf/modules_dev.h

  • Committer: Bazaar Package Importer
  • Author(s): Артём Попов
  • Date: 2011-02-14 20:58:36 UTC
  • mfrom: (1.1.10 upstream) (3.1.9 sid)
  • Revision ID: james.westby@ubuntu.com-20110214205836-2u41xus1d2mj8nfz
Tags: 0.4.10-1ubuntu1
* Merge from debian unstable (LP: #718801).  Remaining changes:
  - Replace build-dep on libwine-dev with wine1.2-dev to build
    against the newer Wine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
    void post_instantiate();
70
70
    void set_sample_rate(uint32_t sr) { srate = sr; }
71
71
    /// Handle MIDI Note On message (by sending it to fluidsynth)
72
 
    void note_on(int note, int vel);
 
72
    void note_on(int channel, int note, int vel);
73
73
    /// Handle MIDI Note Off message (by sending it to fluidsynth)
74
 
    void note_off(int note, int vel);
 
74
    void note_off(int channel, int note, int vel);
75
75
    /// Handle pitch bend message.
76
 
    inline void pitch_bend(int value)
 
76
    inline void pitch_bend(int channel, int value)
77
77
    {
78
78
        fluid_synth_pitch_bend(synth, 0, value + 0x2000);
79
79
    }
80
80
    /// Handle control change messages.
81
 
    void control_change(int controller, int value);
 
81
    void control_change(int channel, int controller, int value);
82
82
    /// Handle program change messages.
83
 
    void program_change(int program);
 
83
    void program_change(int channel, int program);
84
84
 
85
85
    /// Update variables from control ports.
86
86
    void params_changed() {