uvccamera 后台服务_UvcCamera 常见问题分析解决

stopPreview() ,屏幕最后一帧黑屏

UVCPreview.cpp -> clearDisplay(); 控制最后一帧屏幕清除. 屏蔽即可

int UVCPreview::stopPreview() {

ENTER();

bool b = isRunning();

if (LIKELY(b)) {

mIsRunning = false;

pthread_cond_signal(&preview_sync);

pthread_cond_signal(&capture_sync);

if (pthread_join(capture_thread, NULL) != EXIT_SUCCESS) {

LOGW("UVCPreview::terminate capture thread: pthread_join failed");

}

if (pthread_join(preview_thread, NULL) != EXIT_SUCCESS) {

LOGW("UVCPreview::terminate preview thread: pthread_join failed");

}

clearDisplay();

}

clearPreviewFrame();

clearCaptureFrame();

pthread_mutex_lock(&preview_mutex);

if (mPreviewWindow) {

ANativeWindow_release(mPreviewWindow);

mPreviewWindow = NULL;

}

pthread_mutex_unlock(&preview_mutex);

pthread_mutex_lock(&capture_mutex);

if (mCaptureWindow) {

ANativeWindow_release(mCaptureWindow);

mCaptureWindow = NULL;

}

pthread_mutex_unlock(&capture_mutex);

RETURN(0, int);

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值