mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-06 17:46:50 +08:00

commit a base version of vp8 encoder,include vpu1 and vpu2. encode input raw picture to ivf stream. Change-Id: I9ac697edf2249a4ca7464fdbfb5fd22a63fd3c34 Signed-off-by: Ding Wei <leo.ding@rock-chips.com> Signed-off-by: Johnson Ding <johnson.ding@rock-chips.com>
148 lines
3.6 KiB
C++
148 lines
3.6 KiB
C++
/*
|
|
* Copyright 2010 Rockchip Electronics S.LSI Co. LTD
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#define MODULE_TAG "mpp_enc"
|
|
|
|
#include "mpp_mem.h"
|
|
#include "mpp_log.h"
|
|
#include "mpp_common.h"
|
|
|
|
#include "h264e_api.h"
|
|
#include "jpege_api.h"
|
|
#include "h265e_api.h"
|
|
#include "vp8e_api.h"
|
|
#include "mpp_controller.h"
|
|
|
|
/*
|
|
* all encoder controller static register here
|
|
*/
|
|
static const ControlApi *controllers[] = {
|
|
#if HAVE_H264E
|
|
&api_h264e_controller,
|
|
#endif
|
|
#if HAVE_JPEGE
|
|
&api_jpege_controller,
|
|
#endif
|
|
#if HAVE_H265E
|
|
&api_h265e_controller,
|
|
#endif
|
|
#if HAVE_VP8E
|
|
&api_vp8e_controller,
|
|
#endif
|
|
};
|
|
|
|
typedef struct ControllerImpl_t {
|
|
ControllerCfg cfg;
|
|
const ControlApi *api;
|
|
void *ctx;
|
|
} ControllerImpl;
|
|
|
|
MPP_RET controller_encode(Controller ctrl, HalEncTask *task)
|
|
{
|
|
if (NULL == ctrl || NULL == task) {
|
|
mpp_err_f("found NULL input\n");
|
|
return MPP_ERR_NULL_PTR;
|
|
}
|
|
|
|
ControllerImpl *p = (ControllerImpl *)ctrl;
|
|
if (!p->api->encode)
|
|
return MPP_OK;
|
|
|
|
return p->api->encode(p->ctx, task);
|
|
}
|
|
|
|
MPP_RET controller_init(Controller *ctrl, ControllerCfg *cfg)
|
|
{
|
|
if (NULL == ctrl || NULL == cfg) {
|
|
mpp_err_f("found NULL input controller %p config %p\n", ctrl, cfg);
|
|
return MPP_ERR_NULL_PTR;
|
|
}
|
|
|
|
*ctrl = NULL;
|
|
|
|
RK_U32 i;
|
|
for (i = 0; i < MPP_ARRAY_ELEMS(controllers); i++) {
|
|
const ControlApi *api = controllers[i];
|
|
if (cfg->coding == api->coding) {
|
|
ControllerImpl *p = mpp_calloc(ControllerImpl, 1);
|
|
void *ctx = mpp_calloc_size(void, api->ctx_size);
|
|
if (NULL == ctx || NULL == p) {
|
|
mpp_err_f("failed to alloc parser context\n");
|
|
mpp_free(p);
|
|
mpp_free(ctx);
|
|
return MPP_ERR_MALLOC;
|
|
}
|
|
|
|
MPP_RET ret = api->init(ctx, cfg);
|
|
if (MPP_OK != ret) {
|
|
mpp_err_f("failed to init controller\n");
|
|
mpp_free(p);
|
|
mpp_free(ctx);
|
|
return ret;
|
|
}
|
|
|
|
p->api = api;
|
|
p->ctx = ctx;
|
|
*ctrl = p;
|
|
return MPP_OK;
|
|
}
|
|
}
|
|
|
|
return MPP_NOK;
|
|
}
|
|
|
|
MPP_RET controller_deinit(Controller ctrl)
|
|
{
|
|
if (NULL == ctrl) {
|
|
mpp_err_f("found NULL input\n");
|
|
return MPP_ERR_NULL_PTR;
|
|
}
|
|
|
|
ControllerImpl *p = (ControllerImpl *)ctrl;
|
|
if (p->api->deinit)
|
|
p->api->deinit(p->ctx);
|
|
|
|
mpp_free(p->ctx);
|
|
mpp_free(p);
|
|
return MPP_OK;
|
|
}
|
|
|
|
MPP_RET hal_enc_callback(void *ctrl, void *err_info)
|
|
{
|
|
if (NULL == ctrl) {
|
|
mpp_err_f("found NULL input\n");
|
|
return MPP_ERR_NULL_PTR;
|
|
}
|
|
ControllerImpl *p = (ControllerImpl *)ctrl;
|
|
if (!p->api->callback)
|
|
return MPP_OK;
|
|
return p->api->callback(p->ctx, err_info);
|
|
}
|
|
|
|
MPP_RET controller_config(Controller ctrl, RK_S32 cmd, void *para)
|
|
{
|
|
if (NULL == ctrl) {
|
|
mpp_err_f("found NULL input\n");
|
|
return MPP_ERR_NULL_PTR;
|
|
}
|
|
|
|
ControllerImpl *p = (ControllerImpl *)ctrl;
|
|
if (!p->api->config)
|
|
return MPP_OK;
|
|
|
|
return p->api->config(p->ctx, cmd, para);
|
|
}
|