0

これが私のコードです:

public byte[] Decode(byte[] encodedData)
{
    short[] decodedFrame = new short[160]; // should be the same number of samples as on the capturing side
    int decoderBytes = decoder.Decode(encodedData, 0, encodedData.Length, decodedFrame, 0, false);
}

このメソッドを呼び出すと:

byte[] decodedBuffer = this.Decode(File.ReadAllBytes(@"C:\Users\Admin\Desktop\123.ogg"));

「<strong>無効なモードが見つかりました: 9」というエラーが表示されます。

修正方法は?私は何か悪いことをしましたか?

4

1 に答える 1

0

https://sites.google.com/site/cobnut3d/を試すことができ ます

C# の例があります

于 2015-05-30T22:01:16.333 に答える