robsterw
Member
And EDACS AEGIS?
(I won't ask again I promise.)
Thank you so much!I have updated the Wiki page with download links for mbelib-1.2.1. It has some audio quality improvements and should sound less "muffled" in native (non-upsampled) mode.
Smooth(er) upsampling:Upsampling still sucks of course![]()
short pair[2]; // original 8k sps adjacent sample pair
short hex[6]; // 48k sps upsampled
// linear extrapolate
hex[0] = pair[0];
hex[1] = (pair[0]*5 + 1*pair[1]) / 6;
hex[2] = (pair[0]*4 + 2*pair[1]) / 6;
hex[3] = (pair[0]*3 + 3*pair[1]) / 6;
hex[4] = (pair[0]*2 + 4*pair[1]) / 6;
hex[5] = (pair[0]*1 + 5*pair[1]) / 6;
ProVoice is digital voice. Aegis is encryption.
Is it possible in future releases to include VSELP decoding ?
Can this be used with my bcd396XT or bct15x C_CH output? I do have a pro-43 with a data slicer/discrimator tap. I've looked in the forums and couldnt find any info on this. Thanks
Thanks Mike, so then could this work with my Pro-43 which is setup for etrunker and has both the discriminator tap and data slicer? I usually connect it using a rs-232 cable. My understanding from the limited information out there regarding DSD is that it receives the data using a MIC input and not a serial port? is this correct?
For Ubuntu / Debian users ...
"xoscope" is a simple oscilloscope program to give you a visual indication of the waveform as seen by your computer.
To install ...
sudo apt-get install xoscope
After installation is complete, try ...
xoscope -D Soundcard
You should see something like the screen shot below ...