Skip to main content

All 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 (...
Mr Pablo's user avatar
  • 4,186
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 ...
avnkailash's user avatar
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 ...
Agent P's user avatar
  • 125