Advertisement
Guest User

alsaequal-false-error.patch

a guest
Jan 28th, 2013
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.59 KB | None | 0 0
  1. --- ctl_equal.c 2009-01-31 14:06:47.000000000 -0800
  2. +++ ctl_equal.c.new 2013-01-28 17:30:02.756060314 -0800
  3. @@ -263,8 +263,8 @@
  4.     for(i = 0; i < equal->num_input_controls; i++) {
  5.         if(equal->control_data->control[i].type == LADSPA_CNTRL_INPUT) {
  6.             index = equal->control_data->control[i].index;
  7. -           if(equal->klass->PortDescriptors[index] !=
  8. -                   (LADSPA_PORT_INPUT | LADSPA_PORT_CONTROL)) {
  9. +           if((equal->klass->PortDescriptors[index] &
  10. +                   (LADSPA_PORT_INPUT | LADSPA_PORT_CONTROL)) == 0) {
  11.                 SNDERR("Problem with control file %s, %d.", controls, index);
  12.                 return -1;
  13.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement