Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.
6712 Discussions

Scaling request for ippSplitScaled adn ippsJoinScaled

Ockham_s_Razor
Beginner
388 Views

Not sure this is the right place, but I would like to some additional functions for Split and Join that have a different scaling.

ippsSplitScaled_16s32f_D2L uses a scaling that mapps -1 to 1 to Int.Min-Int.Max.  Now that might be mathematically nice but it is not nice for people doing audio. 

Reason 1:   0 maps to  0.0000152590219 not zero.  Thus if a waveform editor changes the scale, what should be zero doesn't remain zero.  Luckly 0.0f maps to 0

Reason 2:   Not consistent with ippsConvert_32fxxx functions.  These map 0 to 0.  Thus to make the two work together I have to apply an ugly multiply and add on the vector; e.g. something like d = p*[1/2 - Min/(2*Max)] + 1/2 + Min/(2*Max)

Reason 3:  No need for -1 to be in the range.  There are two reasons for this.  Audio is never recorded at max values, -3 dB is considered too high.  Second, A/D converter hardware can become non-linear when near the top values and often employ soft cliping.

One simple thing would be to have the following scaling

    pdest = Min(-1, pSource/(Max of Int16 = 32767)

Thus both -32768 and -32767 map to the same value.

That, and the same for 24 bit, is all I really want. 

However, a soft clip might me nice.  That is the map from Int16 to normalized float is (-1, 1] but if one has values, say [-10, 10], the top values are warped into the upper 3dB.  This soft clip makes audio output that is mixed too loud sound much better although one would not want to create the inverse function for it.

Thank Youl

-john

0 Kudos
3 Replies
Ying_H_Intel
Employee
388 Views
Hi John, It is right place for submiting feature request. I have recorded it to IPP track database. Once IPP developer team review it and i will let you know the result. the reference ID is DPD200299821. Thanks Ying
0 Kudos
Ockham_s_Razor
Beginner
388 Views
Thank you
0 Kudos
Ying_H_Intel
Employee
388 Views

Hi John,

Just sorry to tell, there is no futher plan to implement the feature so far. As you see in http://software.intel.com/sites/products/ipp-deprecated-features-feedback/, IPP team hope to streamline functions instead to expand functionality.

Best Regards,

Ying

Ying  

0 Kudos
Reply