Displaying 1 result from an estimated 1 matches for "hiiii".
Did you mean:
iiii
2015 Apr 23
0
Regarding opus audio codec
...just was going through the opus audio codec and
trying to use the same in my project here in the opus demo test code I
could see that before giving input to encoder or after decoder the audio
sample are modified as below
for(i=0;i<loop;i++)
{
printf("hiiii iam inside loop\n");
opus_int32 s;
s=fbytes[2*i+1]<<8|fbytes[2*i];
s=((s&0xFFFF)^0x8000)-0x8000;
in[i+remaining*channels]= (short )fbytes;
}
I wanted to know why this is done.
Thanks in advance.
Regards,
Ji...