~ubuntu-branches/ubuntu/maverick/alsa-lib/maverick-proposed

« back to all changes in this revision

Viewing changes to src/rawmidi/rawmidi.c

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach
  • Date: 2009-09-14 21:56:13 UTC
  • mto: (2.2.4 squeeze) (1.1.12 upstream)
  • mto: This revision was merged to the branch mainline in revision 59.
  • Revision ID: james.westby@ubuntu.com-20090914215613-8n8y0d3ruo41l9dg
ImportĀ upstreamĀ versionĀ 1.0.21a

Show diffs side-by-side

added added

removed removed

Lines of Context:
153
153
        assert(params);
154
154
        params->buffer_size = page_size();
155
155
        params->avail_min = 1;
156
 
        params->no_active_sensing = 0;
 
156
        params->no_active_sensing = 1;
157
157
        return 0;
158
158
}
159
159
 
987
987
        return (rawmidi->ops->read)(rawmidi, buffer, size);
988
988
}
989
989
 
 
990
#ifndef DOC_HIDDEN
990
991
int snd_rawmidi_conf_generic_id(const char *id)
991
992
{
992
993
        static const char ids[][8] = {
1002
1003
        }
1003
1004
        return 0;
1004
1005
}
 
1006
#endif