mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-29 19:52:06 +08:00
[hal_task]: use hal_task to replace mpp_syntax
git-svn-id: https://10.10.10.66:8443/svn/MediaProcessPlatform/trunk/mpp@205 6e48237b-75ef-9749-8fc9-41990f28c85a
This commit is contained in:
@@ -22,41 +22,45 @@
|
||||
|
||||
MPP_RET h264d_init(void *decoder, MppParserInitCfg *init)
|
||||
{
|
||||
(void)decoder;
|
||||
(void)init;
|
||||
return MPP_OK;
|
||||
}
|
||||
|
||||
MPP_RET h264d_deinit(void *decoder)
|
||||
{
|
||||
|
||||
|
||||
(void)decoder;
|
||||
return MPP_OK;
|
||||
}
|
||||
|
||||
MPP_RET h264d_reset(void *decoder)
|
||||
{
|
||||
|
||||
(void)decoder;
|
||||
return MPP_OK;
|
||||
}
|
||||
|
||||
|
||||
MPP_RET h264d_flush(void *decoder)
|
||||
{
|
||||
|
||||
|
||||
(void)decoder;
|
||||
return MPP_OK;
|
||||
}
|
||||
|
||||
|
||||
MPP_RET h264d_control(void *decoder, RK_S32 cmd_type, void *param)
|
||||
{
|
||||
|
||||
|
||||
(void)decoder;
|
||||
(void)cmd_type;
|
||||
(void)param;
|
||||
return MPP_OK;
|
||||
}
|
||||
|
||||
|
||||
MPP_RET h264d_parser(void *decoder, MppPacket pkt, MppSyntax *syn)
|
||||
MPP_RET h264d_parser(void *decoder, MppPacket pkt, HalDecTask *task)
|
||||
{
|
||||
(void)decoder;
|
||||
(void)pkt;
|
||||
(void)task;
|
||||
return MPP_OK;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user