Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have some code running in the onPreviewFrame function that can be overridden during the Android Camera's preview activity. As soon as I begin to record video, the stream is no longer getting piped through my onPreviewFrame call. I believe this is because the camera has been unlocked and the MediaRecorder class now has full control/ownership of the camera.

Is it possible to still control what is displayed on the screen (either with onPreviewFrame or some other fn), or does MediaRecorder take the camera out of my control?

Though I do not think it is too significant what code is in onPreviewFrame, here is the code I am hoping to continue running whilst the MediaRecorder does its bidding:

@Override
public void onPreviewFrame(byte[] yuvs, Camera camera) {
    if (!camPreviewSizeSet || stopFrames) return;
    Log.d(TAG, "Do i still exist, or is it all a dream?");
    yuvsIndex=0; yIndex=0; UVIndex = 0; YIndex = 0;

    synchronized(this){
        System.arraycopy(yuvs, 0, yuvData, 0, yuvs.length);
        System.arraycopy(yuvs, yuvsIndex, yArray, yIndex, camPreviewArea);
        for (bt_y = camPreviewSize.height; bt_y < camPreviewSize.height*YUV_ARRAY_HEIGHT_RATIO; bt_y++) {
            for (bt_x = 0; bt_x < camPreviewSize.width;) {
                uArray[UVIndex] = yuvs[bt_y * camPreviewSize.width + bt_x++];
                vArray[UVIndex++] = yuvs[bt_y * camPreviewSize.width + bt_x++];
            }
        }
        arraysFilled = true;
    }
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.