HISE Logo Forum
    • Categories
    • Register
    • Login

    High quality wavetable oscillators

    Scheduled Pinned Locked Moved General Questions
    3 Posts 2 Posters 233 Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • MorphoiceM
      Morphoice
      last edited by

      I was wondering if anyone has seen this talk by Matt Tytel, creator of Vital Synth
      and thought about integrating this method of interpolation/optimization into the HISE Wavetable Module
      https://www.youtube.com/watch?v=qlinVx60778&t=1697s

      https://instagram.com/morphoice - 80s inspired Synthwave Music, Arcade & Gameboy homebrew!

      Christoph HartC 1 Reply Last reply Reply Quote 1
      • Christoph HartC
        Christoph Hart @Morphoice
        last edited by

        @Morphoice the wavetable synthesizer already uses cubic interpolation if you enable the HQ mode. I found the sound differences to be negligible though.

        if (hqMode)
        		{
        			upperSample = Interpolator::interpolateCubic(u0, u1, u2, u3, alpha);
        			lowerSample = Interpolator::interpolateCubic(l0, l1, l2, l3, alpha);
        		}
        		else
        		{
        			upperSample = Interpolator::interpolateLinear(u1, u2, alpha);
        			lowerSample = Interpolator::interpolateLinear(l1, l2, alpha);
        		}
        
        MorphoiceM 1 Reply Last reply Reply Quote 0
        • MorphoiceM
          Morphoice @Christoph Hart
          last edited by

          @Christoph-Hart so it's basically safe to say they sound already as best as they can.

          https://instagram.com/morphoice - 80s inspired Synthwave Music, Arcade & Gameboy homebrew!

          1 Reply Last reply Reply Quote 0
          • First post
            Last post

          15

          Online

          1.8k

          Users

          12.1k

          Topics

          104.9k

          Posts