欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Android中初始化Codec2的具体流程

程序员文章站 2022-06-23 23:29:53
目录1、mediacodec调用流程2、ccodec调用流程1、mediacodec调用流程首先,我们先看下mediacodec::createbytype函数里面做了什么:sp

1、mediacodec调用流程

首先,我们先看下mediacodec::createbytype函数里面做了什么:

sp<mediacodec> mediacodec::createbytype(
        const sp<alooper> &looper, const astring &mime, bool encoder, status_t *err, pid_t pid,
        uid_t uid) {
    sp<amessage> format;
    return createbytype(looper, mime, encoder, err, pid, uid, format);
}

sp<mediacodec> mediacodec::createbytype(
        const sp<alooper> &looper, const astring &mime, bool encoder, status_t *err, pid_t pid,
        uid_t uid, sp<amessage> format) {
    vector<astring> matchingcodecs;

    mediacodeclist::findmatchingcodecs(
            mime.c_str(),
            encoder,
            0,
            format,
            &matchingcodecs);

    if (err != null) {
        *err = name_not_found;
    }
    for (size_t i = 0; i < matchingcodecs.size(); ++i) {
        sp<mediacodec> codec = new mediacodec(looper, pid, uid);
        astring componentname = matchingcodecs[i];
        status_t ret = codec->init(componentname);
        if (err != null) {
            *err = ret;
        }
        if (ret == ok) {
            return codec;
        }
        alogd("allocating component '%s' failed (%d), try next one.",
                componentname.c_str(), ret);
    }
    return null;
}

createbytype调用createbytype的重载函数。

createbytype(
        const sp<alooper> &looper, const astring &mime, bool encoder, status_t *err, pid_t pid,
        uid_t uid, sp<amessage> format)

里面主要是做了下面两件事:
1、查找支持的codec。
2、根据matchingcodecs创建mediacodec 对应的解码器调用init。
mediacodec::init再根据创建来的名字调用mgetcodecbase这个 function

status_t mediacodec::init(const astring &name) {
    mresourcemanagerproxy->init();
    minitname = name;
    mcodecinfo.clear();
    bool securecodec = false;
    const char *owner = "";
    mcodec = mgetcodecbase(name, owner);
    
    if (misvideo) {
        if (mcodeclooper == null) {
            mcodeclooper = new alooper;
            mcodeclooper->setname("codeclooper");
            mcodeclooper->start(false, false, android_priority_audio);
        }
        mcodeclooper->registerhandler(mcodec);
    } else {
        mlooper->registerhandler(mcodec);
    }

    mlooper->registerhandler(this);

    mcodec->setcallback(
            std::unique_ptr<codecbase::codeccallback>(
                    new codeccallback(new amessage(kwhatcodecnotify, this))));
    mbufferchannel = mcodec->getbufferchannel();
    mbufferchannel->setcallback(
            std::unique_ptr<codecbase::buffercallback>(
                    new buffercallback(new amessage(kwhatcodecnotify, this))));

    sp<amessage> msg = new amessage(kwhatinit, this);
    if (mcodecinfo) {
        msg->setobject("codecinfo", mcodecinfo);
        // name may be different from mcodecinfo->getcodecname() if we stripped
        // ".secure"
    }
    msg->setstring("name", name);
}

mgetcodecbase指向的是下列函数:

创建一个父类的对象,具体这父类对象是走codec2还是acodec的决定在下列函数中:

sp<codecbase> mediacodec::getcodecbase(const astring &name, const char *owner) {
    if (owner) {
        if (strcmp(owner, "default") == 0) {
            return new acodec;
        } else if (strncmp(owner, "codec2", 6) == 0) {
            return createccodec();
        }
    }

    if (name.startswithignorecase("c2.")) {
        return createccodec();
    } else if (name.startswithignorecase("omx.")) {
        // at this time only acodec specifies a mime type.
        return new acodec;
    } else if (name.startswithignorecase("android.filter.")) {
        return new mediafilter;
    } else {
        return null;
    }
}

如果走ccodec里面调用mediacodec.cpp文件中:

static codecbase *createccodec() {
    return new ccodec;
}

这时候就走到的ccodec这个类中,它的构造函数:

// ccodec
ccodec::ccodec()
    : mchannel(new ccodecbufferchannel(std::make_shared<ccodeccallbackimpl>(this))),
      mconfig(new ccodecconfig) {
}

这里的 mchannel 和 mconfig 都是new出来的。

class ccodecbufferchannel : public bufferchannelbase;

上面的 mbufferchannel = mcodec->getbufferchannel(); 就是把ccodec的mchannel返回到mediacodec中。

std::shared_ptr<bufferchannelbase> ccodec::getbufferchannel() {
    return mchannel;
}

也就是说mediacodec调用bufferchannelbase类型的mbufferchannel 实际上是调用ccodec里面的 mchannel
mbufferchannel设置一个new 的buffercallback()对象的。

mcodec->setcallback(
            std::unique_ptr<codecbase::codeccallback>(
                    new codeccallback(new amessage(kwhatcodecnotify, this))));

实际上设置的是codecbase里面的codeccallback mcallback

struct codecbase : public ahandler{
    void setcallback(std::unique_ptr<codeccallback> &&callback) {
        mcallback = std::move(callback);
    }
protected:
    std::unique_ptr<codeccallback> mcallback;
}

之后设置了buffercallback。

mbufferchannel->setcallback(
            std::unique_ptr<codecbase::buffercallback>(
                    new buffercallback(new amessage(kwhatcodecnotify, this))));

实际上设置的是bufferchannelbase::buffercallback mcallback的指针。

class bufferchannelbase {
public:
    void setcallback(std::unique_ptr<codecbase::buffercallback> &&callback) {
        mcallback = std::move(callback);
    }
protected:
    std::unique_ptr<codecbase::buffercallback> mcallback;
};

之后init发送kwhatinit消息,处理之后就调用了ccodec->initiateallocatecomponent()。接下来我们需要看ccodec里面的调用逻辑了。

2、ccodec调用流程

ccodec的源码路径如下:

frameworks/av/media/codec2

首先看下mconfig和mchannel的定义和初始化,具体如下:

//ccodec.h
class ccodec : public codecbase {
mutexed<std::unique_ptr<ccodecconfig>> mconfig;
std::shared_ptr<ccodecbufferchannel> mchannel;
}
//ccodec.cpp
ccodec::ccodec()
: mchannel(new ccodecbufferchannel(std::make_shared<ccodeccallbackimpl>(this))),
    mconfig(new ccodecconfig){}

构造函数初始化的时候,就创建new ccodeccallbackimpl对象出来,ccodeccallbackimpl是继承ccodeccallback的 就做一个适配封装处理。ccodeccallbackimpl 是ccodec的友元类。

上面调用了ccodec->initiateallocatecomponent(),其实ccodec::initiateallocatecomponent 也就是发送kwhatallocate消息。一切都交给ccodec::onmessagereceived 进行处理。在接受 onmessagereceived 中的case语句中,kwhatallocate 调用ccodec::allocate
接着使用client = codec2client::createfromservice(“default”);创建一个服务,根据传入的setaspreferredcodec2componentstore 设置setpreferredcodec2componentstore 默认是false.但是默认是false,这里没有传入。

这里的client = codec2client::createfromservice(“default”);创建成功后调用setpreferredcodec2componentstore,将vendor下支持的codec2的server设置进来。之后将重置的mclientlistener、获得的componentname名字、codec2client::component的组件comp及codec2client::createfromservice(“default”)返回的client,一起作为参数,再重新调用createcomponentbyname创建组件。
之后给ccodecbufferchannel mchannel设置组件,用于绑定组件的回调。
class ccodecbufferchannel : public bufferchannelbase;
接着ccodec::allocate中调用ccodecconfig::initialize、ccodecconfig::queryconfiguration、codeccallback::oncomponentallocated函数。
具体的代码调用逻辑,如下所示:

//codec2client::component : public codec2client::configurable
status_t ccodecconfig::initialize(
            const std::shared_ptr<c2paramreflector> &client,
            const std::shared_ptr<codec2client::configurable> &configurable);
//具体ccodec::allocate的调用逻辑如下(删除不必要语句):
void ccodec::allocate(const sp<mediacodecinfo> &codecinfo) {
    if (codecinfo == nullptr) {
        mcallback->onerror(unknown_error, action_code_fatal);
        return;
    }
    alogd("allocate(%s)", codecinfo->getcodecname());
    mclientlistener.reset(new clientlistener(this));
    astring componentname = codecinfo->getcodecname();
    std::shared_ptr<codec2client> client;
    // set up preferred component store to access vendor store parameters
    client = codec2client::createfromservice("default");
    if (client) {
        alogi("setting up '%s' as default (vendor) store", client->getservicename().c_str());
        setpreferredcodec2componentstore(std::make_shared<codec2clientinterfacewrapper>(client));
    }

    std::shared_ptr<codec2client::component> comp;
    c2_status_t status = codec2client::createcomponentbyname(
            componentname.c_str(),
            mclientlistener,
            &comp,
            &client);
    alogi("created component [%s]", componentname.c_str());
    mchannel->setcomponent(comp);
    mutexed<std::unique_ptr<config>>::locked configlocked(mconfig);
    const std::unique_ptr<config> &config = *configlocked;
    status_t err = config->initialize(mclient->getparamreflector(), comp);
    config->queryconfiguration(comp);
    mcallback->oncomponentallocated(componentname.c_str());
}

小结:

1、mediacodec创建ccodec的对象,并用赋值给mcodec。
2、设置mcodec的codeccallback 和 mbufferchannel的buffercallback。
3、调用mcodec的initiateallocatecomponent,并且根据传入的codecinfo创建service服务,并获得平台硬件编解码支持的服务。
4、根据componentname创建解码组件,并且调用数据回调类ccodecbufferchannel::setcomponent设置组件。
5、调用initialize、queryconfiguration、oncomponentallocated等函数初始化。

3、整体时序图

Android中初始化Codec2的具体流程

站在巨人的肩膀上!

参考连接:

1、一文搞懂codec2框架解析

最后,如果错误,希望读者不吝赐教,共同进步!

到此这篇关于android中初始化codec2的具体流程的文章就介绍到这了,更多相关android codec2内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!