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;
}
}
