Displaying 1 result from an estimated 1 matches for "opusmsdecod".
Did you mean:
opusmsdec
2012 Dec 18
2
multi stream decode
Hi,
I don't understand how works the multi stream api in opus.
I need to send two mono streams over network with RTP.
I think I'm right when I create an OpusMsDecoder with
opus_multistream_decoder_create (48000, 2, 2 ,0 ,mapping, NULL)
where mapping is: unsigned char mapping[2] = {0,1} isn't it ?
Next, i need to encode data which I get from jack (float) so I use
opus_multistream_encode_float(enc, data, 480 , encodedData, MAX_DATA)
Then I send it using...