All Questions
3 questions
0
votes
1
answer
347
views
BufferOverFlowException when changing ShortBuffer to IntBuffer
I am trying to patch up an OBJ loading class, as it only supported Short numbers, and I have a large OBJ that goes above the Short number limit.
I had to change the code to use Integer Vectors (...
1
vote
1
answer
452
views
Java Null Pointer Exception in Android while Instantiating an IntentService from an Activity
I am creating an application which has an activity and an intent service which will be called from this activity.
The purpose of the Intent service is to send a file from the android device to a ...
3
votes
3
answers
3k
views
BufferOverflowException when trying to encode data
I try create encoder for "audio/3gpp" and my app crash.
I configurate MediaCodec...
String mMime = "audio/3gpp";
mMediaCodec = MediaCodec.createEncoderByType(mMime);
MediaFormat ...