Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7759639
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T13:40:55+00:00 2026-06-01T13:40:55+00:00

i have tried to get the sine wave example running on an AsioOut, but

  • 0

i have tried to get the sine wave example running on an AsioOut, but it sounds more like a distorted square wave. is it possible that the AsioOut only supports PCM formats? the asio .wav file playback works just fine…

If so, how can i fill my buffers with Ieee floats and convert to PCM? or whats the best way to palyback Ieee on ASIO? i would love to avoid unnecessary sample conversions..

in my code so far, i have tried to generate a sine wave which fits the buffer size, to make sure that i have continuous values, i initialize it with sample rate 44100 and 1 channel. then i pass an instance of the class to the Init() of my AsioOut:

public class SineWaveProvider32 : IWaveProvider
{
    private WaveFormat waveFormat;
    public WaveFormat WaveFormat
    {
        get
        {
            return this.waveFormat;
        }
    }

    public SineWaveProvider32() : this(44100, 1)
    {
    }

    public SineWaveProvider32(int sampleRate, int channels)
    {
        this.SetWaveFormat(sampleRate, channels);
    }

    public void SetWaveFormat(int sampleRate, int channels)
    {
        this.waveFormat = WaveFormat.CreateIeeeFloatWaveFormat(sampleRate, channels);
    }

            public unsafe int Read(byte[] buffer, int offset, int count)
    {
        var samples = count/4;
        fixed(byte* buff = buffer)
        {
            for (int n = 0; n < samples; n++)
            {
                var num = (float)(Math.Sin( (2 * Math.PI * n)/ samples ));
                ((float*)buff)[n] = num;
            }
        }

        return count;
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T13:40:56+00:00Added an answer on June 1, 2026 at 1:40 pm

    Ok i found the bug. Asio is somehow stereo by design. so this code works:

    public class SineWaveProvider32 : IWaveProvider
    {
        private WaveFormat waveFormat;
        public WaveFormat WaveFormat
        {
            get
            {
                return this.waveFormat;
            }
        }
    
        public SineWaveProvider32() : this(44100, 2)
        {
        }
    
        public SineWaveProvider32(int sampleRate, int channels)
        {
            this.SetWaveFormat(sampleRate, channels);
        }
    
        public void SetWaveFormat(int sampleRate, int channels)
        {
            this.waveFormat = WaveFormat.CreateIeeeFloatWaveFormat(sampleRate, channels);
        }
    
        public unsafe int Read(byte[] buffer, int offset, int count)
        {
            var samples = count/4;
            fixed(byte* buff = buffer)
            {
                for (int n = 0; n < samples; n+=2)
                {
                    var num = (float)(Math.Sin( (2 * Math.PI * n * 3)/ samples ));
                    ((float*)buff)[n] = 0;
                    ((float*)buff)[n+1] = num;
                }
            }
    
            return count;
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have tried to get tsung to work on ec2 but to no avail.
I have tried using date(m/d/Y, strtotime(04-05-2012)) but I will get 05/04/2012 or on some
I have tried and tried to get this peice of code working but with
Is it possible? I have tried to move it, but iframe contents dissapear. Tried
I have tried to get sticky footer working on the site below but for
I have tried to get the plugin params in the component area , but
I have tried to get my head around the content processor and textures, but
I have tried to get this function working in the desired way but not
Possible Duplicate: Determine device (iPhone, iPod Touch) with iOS I have tried to get
Hello i am using Zend Framework Form and have tried to get this example

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.