码迷,mamicode.com
首页 > 移动开发 > 详细

android Jelly Bean版本如何将camera service修改为强占式

时间:2014-10-13 14:05:29      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:android   ar   文件   sp   on   log   amp   bs   as   

实现强占式camera service,当某些应用(如手电筒)在后台打开camera后,当camera app open camera时可以强占被后台应用占有的camera.


1. 修改CameraService.cpp (frameworks/av/services/camera/libcameraservice/)
文件的connect()方法,将
原来的
    Mutex::Autolock lock(mServiceLock);
    if (mClient[cameraId] != 0) {
        client = mClient[cameraId].promote();
        if (client != 0) {
            if (cameraClient->asBinder() == client->getCameraClient()->asBinder()) {
                LOG1("CameraService::connect X (pid %d) (the same client)",
                     callingPid);
                return client;
            } else {
                ALOGW("CameraService::connect X (pid %d) rejected (existing client).",
                      callingPid);
                return NULL;
            }
        }
        mClient[cameraId].clear();
    }
修改为:
   
    if (mClient[cameraId] != 0) {
        client = mClient[cameraId].promote();
        if (client != 0) {
                LOG1("CameraService::connect X (pid %d)  disconnect the old client", callingPid);
               client->disconnect();
        }
        mClient[cameraId].clear();
    }
   Mutex::Autolock lock(mServiceLock);
 
2. 修改CameraClient.cpp(frameworks/av/services/camera/libcameraservice/)
文件的disconnect()方法:
将原来的:
    if (callingPid != mClientPid && callingPid != mServicePid) {
        ALOGW("different client - don‘t disconnect");
        return;
    }
修改为:
    if (callingPid != mClientPid && callingPid != mServicePid) {
        ALOGW("different client but  preemptive camera service! ");
        //return;
    }

android Jelly Bean版本如何将camera service修改为强占式

标签:android   ar   文件   sp   on   log   amp   bs   as   

原文地址:http://blog.csdn.net/sergeycao/article/details/39925779

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!