Skip to content
Snippets Groups Projects
Commit d79447fa authored by Boris Grozev's avatar Boris Grozev
Browse files

Removes stereo formats from the opus encoder's supported input formats, because

problems were observed when they were used (and we don't yet support stereo
decoding anyway).
parent 55fbc085
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,8 @@ public class JNIEncoder
int supportedInputCount = SUPPORTED_INPUT_SAMPLE_RATES.length;
SUPPORTED_INPUT_FORMATS = new Format[supportedInputCount*2];
SUPPORTED_INPUT_FORMATS = new Format[supportedInputCount];
//SUPPORTED_INPUT_FORMATS = new Format[supportedInputCount*2];
for (int i = 0; i < supportedInputCount; i++)
{
SUPPORTED_INPUT_FORMATS[i]
......@@ -102,20 +103,26 @@ public class JNIEncoder
/* frameRate */ Format.NOT_SPECIFIED,
Format.byteArray);
}
for (int i = 0; i < supportedInputCount; i++)
{
SUPPORTED_INPUT_FORMATS[i+supportedInputCount]
= new AudioFormat(
AudioFormat.LINEAR,
SUPPORTED_INPUT_SAMPLE_RATES[i],
16,
2,
AudioFormat.LITTLE_ENDIAN,
AudioFormat.SIGNED,
/* frameSizeInBits */ Format.NOT_SPECIFIED,
/* frameRate */ Format.NOT_SPECIFIED,
Format.byteArray);
}
/*
* Using stereo input formats leads to problems (at least when used with
* pulse audio). It is unclear whether they are rooted in this encoder
* or somewhere else in the code. So stereo input formats are disabled
* until we make sure that they work properly.
*/
//for (int i = 0; i < supportedInputCount; i++)
//{
// SUPPORTED_INPUT_FORMATS[i+supportedInputCount]
// = new AudioFormat(
// AudioFormat.LINEAR,
// SUPPORTED_INPUT_SAMPLE_RATES[i],
// 16,
// 2,
// AudioFormat.LITTLE_ENDIAN,
// AudioFormat.SIGNED,
// /* frameSizeInBits */ Format.NOT_SPECIFIED,
// /* frameRate */ Format.NOT_SPECIFIED,
// Format.byteArray);
//}
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment