2017-10-10 49 views
0

我遵循Camera2Video示例,還實現了一些JNI代碼,以在屬於SurfaceTexture的Surface上進行一些圖像處理,以便在屏幕上進行預覽。這工作正常,但當我點擊記錄按鈕時,它無法記錄,因爲我從CameraCaptureSession.StateCallback()獲取onConfigureFailed()。Android Camera2 JNI圖像處理 - 表面沒有從JNI解鎖?

我主要JNI功能是在這裏 -

extern "C" 
jstring 
Java_com_example_android_camera2video_Camera2VideoFragment_someImageProcessingJNI(
     JNIEnv *env, 
     jobject, /* this */ 
     jint srcWidth, 
     jint srcHeight, 
     jobject y_srcBuffer, 
     jobject u_srcBuffer, 
     jobject v_srcBuffer, 
     jobject dstSurface) { 

    // Get pointers to the 3 planes (YUV) of the source (Image from ImageReader). 

    uint8_t *srcLumaPtr = reinterpret_cast<uint8_t *>(env->GetDirectBufferAddress(y_srcBuffer)); 
    if (srcLumaPtr == NULL) { 
     return NULL; 
    } 

    uint8_t *srcUPtr = reinterpret_cast<uint8_t *>(env->GetDirectBufferAddress(u_srcBuffer)); 
    if (srcUPtr == NULL) { 
     return NULL; 
    } 

    uint8_t *srcVPtr = reinterpret_cast<uint8_t *>(env->GetDirectBufferAddress(v_srcBuffer)); 
    if (srcVPtr == NULL) { 
     return NULL; 
    } 

    // Destination setup. 
    // YUV - NV21 

    int dstWidth; 
    int dstHeight; 

    // Get a ptr to the destination window - don't forget to release it. 
    ANativeWindow *dstWin = ANativeWindow_fromSurface(env, dstSurface); 

    // Acquire a reference on the given ANativeWindow object. This prevents the object from being 
    // deleted until the reference is removed. 
    ANativeWindow_acquire(dstWin); 

    // Swapping due to the rotation. 
    dstWidth = srcHeight; 
    dstHeight = srcWidth; 

    // Change the format and size of the window buffers. 
    int32_t setBufferGeometryRet = ANativeWindow_setBuffersGeometry(dstWin, dstWidth, dstHeight, 
                    0 /*format unchanged*/); 

    // Struct that represents a windows buffer. 
    ANativeWindow_Buffer dstBuf; 

    // Lock the window's next drawing surface for writing. 
    if (int32_t err = ANativeWindow_lock(dstWin, &dstBuf, NULL)) { 
     ANativeWindow_release(dstWin); 
     return NULL; 
    } 

    // uint8_t* dstLumaPtr = reinterpret_cast<uint8_t*>(dstBuf.bits); 
    // If we want to write as 32-bit. 
    uint32_t *dstLumaPtr = reinterpret_cast<uint32_t *>(dstBuf.bits); 
    uint32_t *dstLumaPtr_orig = dstLumaPtr; 

    // Buffer 
    int32_t ANativeWindow_Buffer_Width = dstBuf.width; 
    int32_t ANativeWindow_Buffer_Height = dstBuf.height; 
    int32_t ANativeWindow_Buffer_Stride = dstBuf.stride; 

    // Window 
    int32_t dstNativeWinWidth = ANativeWindow_getWidth(dstWin); 
    int32_t dstNativeWinHeight = ANativeWindow_getHeight(dstWin); 
    int32_t dstNativeWinFormat = ANativeWindow_getFormat(dstWin); 

    // Read from the YUV source which needs the 90 deg clockwise rotation. 
    for (int srcCol = 0; srcCol < srcWidth; srcCol++) { 
     for (int srcRow = srcHeight - 1; srcRow >= 0; srcRow--) { 

      // packRGBA() just converts YUV to RGB. 
      *dstLumaPtr = packRGBA(srcLumaPtr[srcRow * srcWidth + srcCol], 
            srcUPtr[((srcRow/2) * srcWidth) + (srcCol - (srcCol % 2))], 
            srcVPtr[((srcRow/2) * srcWidth) + (srcCol - (srcCol % 2))]); 
      dstLumaPtr++; 

      // We cannot simple write to destination pixels sequentially because of the 
      // stride. Stride is the actual memory buffer width, while the image width is only 
      // the wdith of valid pixels. 
      // If we reach the end of a source row, we need to advance our destination 
      // pointer to skip the padding cells. 
      if (srcRow == 0) 
       dstLumaPtr += (ANativeWindow_Buffer_Stride - ANativeWindow_Buffer_Width); 

     } 
    } 

    // ---------------------------------------------------------------------- 
    // Some image processing done here... 
    // -------------------------------------------------------------------- 

    ANativeWindow_unlockAndPost(dstWin); 
    ANativeWindow_release(dstWin); 

    return env->NewStringUTF("Return from JNI"); 
} 

現在,如果我刪除調用JNI功能,錄音按鈕的作品。這讓我相信我不會在這個JNI代碼中正確釋放Surface,但我不知道如何着手解決這個問題。

非常感謝您的任何建議。


編輯 - 我在日誌中收到以下消息。

10-11 10:15:41.749 8736-8736/com.example.android.camera2video E/BufferQueueProducer:表面紋理-0-8736-0]連接:已經連接(CUR = 2 REQ = 4)

回答

0

好的,我發現預覽表面仍在使用中。我通過在onStartRecording()內刪除Java端的另一個預覽表面變量來解決此問題。