SV: [Speex-dev] About "Convert 8->16 bits"
Jonas Tärnström
njt at home.se
Fri Dec 15 09:01:57 PST 2006
Id say this is out of scope for this mailing list. Any how, you cant
just shift a signed number by 8 (multiplying with 256) without handling
the signedness-bit.
PCM 16-bit samples are stored as signed values.
Try something simpler which works first and then optimize your code
afterwards.
unsigned char inSamp;
short s1, outSamp;
s1 = (short) inSamp;
s1 -= 128;
s1 *= 256;
outSamp = s1;
Its probably possible to reduce the complexity of this using bitshifts,
unless you know what you are doing and are in a lot of need for speed I
dont see the reason.
//JT
//JT
-----Ursprungligt meddelande-----
Från: speex-dev-bounces at xiph.org [mailto:speex-dev-bounces at xiph.org] För
yaseminyilmaz
Skickat: den 15 december 2006 17:46
Till: speex-dev at xiph.org
Ämne: [Speex-dev] About "Convert 8->16 bits"
Hi everybody,
I have been using speex-1.2beta1 and my input data is 8-bit unsigned so
I know that I should convert from 8 to 16 bits. Ive done the convertion
as following.
for(int i=0; i<160; ++i)
{
input_frame[i] = (short)( (data[2*i] << 8) | data[2*i+1]);
}
When my codec application didnt work right, I think that the reason is
an error at this convertion. For this aim, I looked at read_samples
function in speexenc project and I cant understand why the convertion
is done in this way:
for(i=frame_size*channels-1;i>=0;i--)
{
s[i]=(in[i]<<8)^0x8000;
}
(in my application, channels is 1 and frame_size=160)
I can understand why shift left 8, but cant why we should do XOR
operation with 1000 0000 0000 0000. Should I do the convertion operation
so and why? Please can you clarify? Thanks a lot for your helps.
Sincerely
Yasemin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.xiph.org/pipermail/speex-dev/attachments/20061215/999eb661/attachment-0001.htm
More information about the Speex-dev
mailing list