diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2018-09-06 15:22:02 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2018-09-06 15:22:02 +0200 |
commit | a8beaa9f0f9920bc84fd6881cfaff11577fdb70d (patch) | |
tree | 4875dfd886ba9210abaf50f95def1649cb95fcc2 /src | |
parent | c51b9806a8a1996f8b19d671bf1727a4e9aa233d (diff) | |
download | nihav-a8beaa9f0f9920bc84fd6881cfaff11577fdb70d.tar.gz |
ra14.4: consistency fix
Diffstat (limited to 'src')
-rw-r--r-- | src/codecs/real/ra144.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codecs/real/ra144.rs b/src/codecs/real/ra144.rs index c569899..e680758 100644 --- a/src/codecs/real/ra144.rs +++ b/src/codecs/real/ra144.rs @@ -26,7 +26,7 @@ impl RA144Decoder { fn new() -> Self { RA144Decoder { chmap: NAChannelMap::new(), - ainfo: NAAudioInfo::new(0, 1, SND_F32P_FORMAT, NBLOCKS * BLOCKSIZE), + ainfo: NAAudioInfo::new(0, 1, SND_S16_FORMAT, NBLOCKS * BLOCKSIZE), info: NACodecInfo::new_dummy(), old_energy: 0, |