Click here to Skip to main content
15,885,366 members
Articles / Desktop Programming / WTL

Multidevice ASIO output plugin for WinAMP

Rate me:
Please Sign up or sign in to vote.
4.80/5 (9 votes)
13 Feb 2009CDDL27 min read 48.1K   728   23  
A tiny WinAMP output DLL that uses a C++ replacement of the official ASIO SDK that supports multiple ASIO devices.
#pragma once


////////////////////////////////////////////////////////////////////////////////
//
//  Deinterleaver
//  -------------
//
//  Currently more of a namespace then a class. A collection of deinterleaving
// and simultaneous data type/size conversion functions.
//
////////////////////////////////////////////////////////////////////////////////

class Deinterleaver
{
public:
    // The first one switches between the other two at runtime.
    static void __fastcall Deinterleave_16_32    ( short const * in, int * out1, int * out2, size_t sz );
    static void __fastcall Deinterleave_16_32_x86( short const * in, int * out1, int * out2, size_t sz );
    static void __fastcall Deinterleave_16_32_MMX( short const * in, int * out1, int * out2, size_t sz );

    static void __fastcall Deinterleave_24_32    ( char const * in , int * out1, int * out2, size_t sz );
};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)


Written By
Software Developer Little Endian Ltd.
Croatia Croatia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions