Lines Matching refs:inst
287 SF_INSTRUMENT inst ;
300 got_inst = sf_command (file, SFC_GET_INSTRUMENT, &inst, sizeof (inst)) ;
309 printf (" Gain : %d\n", inst.gain) ;
310 printf (" Base note : %d\n", inst.basenote) ;
311 printf (" Velocity : %d - %d\n", (int) inst.velocity_lo, (int) inst.velocity_hi) ;
312 printf (" Key : %d - %d\n", (int) inst.key_lo, (int) inst.key_hi) ;
313 printf (" Loop points : %d\n", inst.loop_count) ;
315 for (k = 0 ; k < inst.loop_count ; k++)
317 " Count : %6" PRIu32 "\n", k, str_of_type (inst.loops [k].mode),
318 inst.loops [k].start, inst.loops [k].end, inst.loops [k].count) ;