/*
 * call-seq:
 *    nsamp=(num)
 *
 * Set the number of samples to +num+
 */
static VALUE set_nsamp(VALUE self, VALUE num)
{
  mp3data_struct * mp3data;
  Data_Get_Struct(self, mp3data_struct, mp3data);
  mp3data->nsamp = NUM2LONG(num);
  return num;
}