dolphin/Source/Core/Core/HW/StreamADPCM.h
Lioncash 737de5e115 StreamADPCM: Convert into a namespace
No need to have a class with only static member functions
2015-10-08 19:46:55 -04:00

24 lines
349 B
C++

// Copyright 2008 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
// Adapted from in_cube by hcs & destop
#pragma once
#include "Common/CommonTypes.h"
namespace StreamADPCM
{
enum
{
ONE_BLOCK_SIZE = 32,
SAMPLES_PER_BLOCK = 28
};
void InitFilter();
void DecodeBlock(s16* pcm, const u8* adpcm);
}