This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

[参考译文] TDA4VM:CSITX 和#39;s 日期类型支持 YUVY 和 AMP;YVYU 和 AMP;UYVY 和 AMP;VYU

Guru**** 2553450 points
Other Parts Discussed in Thread: TDA4VM

请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/processors-group/processors/f/processors-forum/974642/tda4vm-csitx-s-date-type-support-yuvy-yvyu-uyvy-vyuy

器件型号:TDA4VM

各位专家、您好!

我需要证实 TDA4VM 的 CSITX 模块支持 这四种格式:YUVY、YVYU、UYVY 和 VYU。

我注意到 TRM 在以下位置对其进行了批评:

12.7.2.4.5 CSI_TX_IF 数据存储器组织详细信息
图12-8699显示了内存中的 YUV422-8数据组织。

以及相应的源代码:

412静态 uint32_t tivxCsitxExtDataFormat (uint32_t 格式)
413{
414 uint32_t dataFormat = FVID2_DF_BGRX32_8888;
415
416. 开关(格式)
417 {
418 案例(vx_df_image) vx_df_image_RGBX:
419 dataFormat = FVID2_DF_BGRX32_8888;
420 中断;
421. 案例(vx_df_image) vx_df_image_UYVY:
422 数据格式= FVID2_DF_YUV422I_UYVY;
423 休息;
424 案例(vx_df_image) vx_df_image_yUV:
425 dataFormat = FVID2_DF_YUV422I_YUYV;
426 休息;
427 默认值:
428 /*不采取任何行动*/
429 中断;
430}
431.
返回数据格式;
433}
434

我的问题是、我是否可以在     此处添加 FVID2_DF_YUV422I_YVYU 和 FVID2_DF_YUV422I_VYUY、以实现这四种格式 YUVY、YVYU、UVY 和 VYUY?

谢谢、

胡田