3001
- 收藏
- 点赞
- 分享
- 举报
HI_MPI_VENC_SendFrame发送返回0xa0088003
本帖最后由 ytfsse 于 2019-8-30 09:58 编辑
参数超出合法范围,实在不懂,提示就不能明了一下,有参考github上面分享的代码,
SDK为2.0.1.0
#define PIC_WIDTH 1280
#define PIC_HEIGHT 720
HI_U32 u32PicLStride = PIC_WIDTH;
HI_U32 u32BlkSize = PIC_WIDTH * PIC_HEIGHT * 3;
HI_U32 u32LumaSize = PIC_WIDTH * PIC_HEIGHT;
HI_U32 u32ChrmSize = PIC_WIDTH / 2 * PIC_HEIGHT / 2;
memset(&stFrmInfo.stVFrame, 0, sizeof(VIDEO_FRAME_S));
stFrmInfo.stVFrame.u64PhyAddr[0] = m_PhyAddr;
stFrmInfo.stVFrame.u64PhyAddr[1] = stFrmInfo.stVFrame.u64PhyAddr[0] + u32LumaSize;
stFrmInfo.stVFrame.u64PhyAddr[2] = stFrmInfo.stVFrame.u64PhyAddr[1] + u32ChrmSize;
stFrmInfo.stVFrame.u64VirAddr[0] = m_pVirAddr;
stFrmInfo.stVFrame.u64VirAddr[1] = stFrmInfo.stVFrame.u64VirAddr[0] + u32LumaSize;
stFrmInfo.stVFrame.u64VirAddr[2] = stFrmInfo.stVFrame.u64VirAddr[1] + u32ChrmSize;
stFrmInfo.stVFrame.u32Width = PIC_WIDTH;
stFrmInfo.stVFrame.u32Height = PIC_HEIGHT;
stFrmInfo.stVFrame.u32Stride[0] = u32PicLStride;
stFrmInfo.stVFrame.u32Stride[1] = u32PicLStride;
stFrmInfo.stVFrame.u32Stride[2] = u32PicLStride;
stFrmInfo.stVFrame.u64PTS = (u32Cnt * 40);
stFrmInfo.stVFrame.u32TimeRef = (u32Cnt * 2);
/* Different channsel with different picture sequence */
SAMPLE_COMM_VENC_ReadOneFrame( pfp_img, stFrmInfo.stVFrame.u64VirAddr[0],
stFrmInfo.stVFrame.u64VirAddr[1], stFrmInfo.stVFrame.u64VirAddr[2],
stFrmInfo.stVFrame.u32Width, stFrmInfo.stVFrame.u32Height,
stFrmInfo.stVFrame.u32Stride[0], stFrmInfo.stVFrame.u32Stride[1] >> 1 );
SAMPLE_COMM_VENC_PlanToSemi( stFrmInfo.stVFrame.u64VirAddr[0], stFrmInfo.stVFrame.u32Stride[0],
stFrmInfo.stVFrame.u64VirAddr[1], stFrmInfo.stVFrame.u32Stride[1],
stFrmInfo.stVFrame.u64VirAddr[2], stFrmInfo.stVFrame.u32Stride[1],
stFrmInfo.stVFrame.u32Width, stFrmInfo.stVFrame.u32Height );
stFrmInfo.stVFrame.enPixelFormat = PIXEL_FORMAT_YUV_SEMIPLANAR_420;
stFrmInfo.stVFrame.enField = VIDEO_FIELD_FRAME;
stFrmInfo.stVFrame.enColorGamut = COLOR_GAMUT_BT709;
stFrmInfo.u32PoolId = HI_MPI_VB_Handle2PoolId( m_Block );
s32Ret = HI_MPI_VENC_SendFrame(pstPara->VeChn[1], &stFrmInfo, -1);
参数超出合法范围,实在不懂,提示就不能明了一下,有参考github上面分享的代码,
SDK为2.0.1.0
#define PIC_WIDTH 1280
#define PIC_HEIGHT 720
HI_U32 u32PicLStride = PIC_WIDTH;
HI_U32 u32BlkSize = PIC_WIDTH * PIC_HEIGHT * 3;
HI_U32 u32LumaSize = PIC_WIDTH * PIC_HEIGHT;
HI_U32 u32ChrmSize = PIC_WIDTH / 2 * PIC_HEIGHT / 2;
memset(&stFrmInfo.stVFrame, 0, sizeof(VIDEO_FRAME_S));
stFrmInfo.stVFrame.u64PhyAddr[0] = m_PhyAddr;
stFrmInfo.stVFrame.u64PhyAddr[1] = stFrmInfo.stVFrame.u64PhyAddr[0] + u32LumaSize;
stFrmInfo.stVFrame.u64PhyAddr[2] = stFrmInfo.stVFrame.u64PhyAddr[1] + u32ChrmSize;
stFrmInfo.stVFrame.u64VirAddr[0] = m_pVirAddr;
stFrmInfo.stVFrame.u64VirAddr[1] = stFrmInfo.stVFrame.u64VirAddr[0] + u32LumaSize;
stFrmInfo.stVFrame.u64VirAddr[2] = stFrmInfo.stVFrame.u64VirAddr[1] + u32ChrmSize;
stFrmInfo.stVFrame.u32Width = PIC_WIDTH;
stFrmInfo.stVFrame.u32Height = PIC_HEIGHT;
stFrmInfo.stVFrame.u32Stride[0] = u32PicLStride;
stFrmInfo.stVFrame.u32Stride[1] = u32PicLStride;
stFrmInfo.stVFrame.u32Stride[2] = u32PicLStride;
stFrmInfo.stVFrame.u64PTS = (u32Cnt * 40);
stFrmInfo.stVFrame.u32TimeRef = (u32Cnt * 2);
/* Different channsel with different picture sequence */
SAMPLE_COMM_VENC_ReadOneFrame( pfp_img, stFrmInfo.stVFrame.u64VirAddr[0],
stFrmInfo.stVFrame.u64VirAddr[1], stFrmInfo.stVFrame.u64VirAddr[2],
stFrmInfo.stVFrame.u32Width, stFrmInfo.stVFrame.u32Height,
stFrmInfo.stVFrame.u32Stride[0], stFrmInfo.stVFrame.u32Stride[1] >> 1 );
SAMPLE_COMM_VENC_PlanToSemi( stFrmInfo.stVFrame.u64VirAddr[0], stFrmInfo.stVFrame.u32Stride[0],
stFrmInfo.stVFrame.u64VirAddr[1], stFrmInfo.stVFrame.u32Stride[1],
stFrmInfo.stVFrame.u64VirAddr[2], stFrmInfo.stVFrame.u32Stride[1],
stFrmInfo.stVFrame.u32Width, stFrmInfo.stVFrame.u32Height );
stFrmInfo.stVFrame.enPixelFormat = PIXEL_FORMAT_YUV_SEMIPLANAR_420;
stFrmInfo.stVFrame.enField = VIDEO_FIELD_FRAME;
stFrmInfo.stVFrame.enColorGamut = COLOR_GAMUT_BT709;
stFrmInfo.u32PoolId = HI_MPI_VB_Handle2PoolId( m_Block );
s32Ret = HI_MPI_VENC_SendFrame(pstPara->VeChn[1], &stFrmInfo, -1);
我来回答
回答1个
时间排序
认可量排序
认可0
或将文件直接拖到这里
悬赏:
E币
网盘
* 网盘链接:
* 提取码:
悬赏:
E币
Markdown 语法
- 加粗**内容**
- 斜体*内容*
- 删除线~~内容~~
- 引用> 引用内容
- 代码`代码`
- 代码块```编程语言↵代码```
- 链接[链接标题](url)
- 无序列表- 内容
- 有序列表1. 内容
- 缩进内容
- 图片![alt](url)
相关问答
-
2020-07-23 17:45:58
-
2020-03-17 18:14:42
-
2017-09-20 15:05:29
-
2019-07-12 18:29:38
-
2020-08-06 12:57:35
-
2016-06-23 09:48:58
-
2019-03-13 15:57:54
-
2022-11-02 20:17:05
-
2019-09-01 12:01:05
-
2018-11-19 08:53:29
-
2016-10-26 11:55:21
-
2020-10-29 11:14:15
-
2017-08-10 21:02:27
-
2018-07-24 16:43:24
-
2016-09-10 09:35:34
-
2020-04-07 11:51:15
-
2016-09-20 16:15:23
-
2016-10-28 10:34:01
-
2020-07-22 17:24:15
无更多相似问答 去提问
点击登录
-- 积分
-- E币
提问
—
收益
—
被采纳
—
我要提问
切换马甲
上一页
下一页
悬赏问答
-
5SS928的emmc有32GB,bootargs设置使用16GB,但是为啥能用的只有rootfs的大小
-
33SS928怎样烧写ubuntu系统
-
10ToolPlatform下载rootfs提示网络失败
-
10谁有GK7205V500的SDK
-
5Hi3516CV610 烧录不进去
-
10Hi3559AV100 芯片硬解码h265编码格式的视频时出现视频播放错误,解码错误信息 s32PackErr:码流有错
-
5海思SS928 / SD3403的sample_venc.c摄像头编码Demo中,采集到的摄像头的YUV数据在哪个相关的函数中?
-
5海鸥派openEuler无法启动网卡,连接WIFI存在问题
-
66有没有ISP相关的巨佬帮忙看看SS928对接IMX347的图像问题
-
50求助hi3559与FPGA通过SLVS-EC接口对接问题
举报反馈
举报类型
- 内容涉黄/赌/毒
- 内容侵权/抄袭
- 政治相关
- 涉嫌广告
- 侮辱谩骂
- 其他
详细说明
提醒
你的问题还没有最佳答案,是否结题,结题后将扣除20%的悬赏金
取消
确认
提醒
你的问题还没有最佳答案,是否结题,结题后将根据回答情况扣除相应悬赏金(1回答=1E币)
取消
确认