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: 关于tda4上的display

Part Number: TDA4VM


各位老师:

我有一个显示器,分辨率是1440*900,但是我把这个显示器通过DP接到tda4上的display1,显示器上面显式“Input Not Supported”

同样,我换了一个显示器分辨率是1920*1080,这样,从tda4上产生的输出是能正常显式的。

我想请教,我该怎么修改我的代码,让tda4的display1能正常的输出到我的显示器(1440*900)上呢?

其实,我的配置很很简单,就是直接使用tiovx提供的接口,具体这样:

  memset(&disp_param, 0, sizeof(tivx_display_params_t));
  disp_param.opMode    = TIVX_KERNEL_DISPLAY_ZERO_BUFFER_COPY_MODE;
  disp_param.pipeId    = 0;
  disp_param.outWidth  = 1440;
  disp_param.outHeight = 900;
  disp_param.posX      = 0;
  disp_param.posY      = 0;
其实,我一直很奇怪,
从上述tiovx提供的接口来看,tiovx没有提供显示器的适配,仿佛默认的目标就是1920*1080,
我确实不知道怎么修改这个配置,希望各位老师能帮忙看一下