HI.
I'm using External Video Decoder, not using TVP5158.
when i set PAL mode, output fps setting is some strange.
i think that window FPS must be 25fps, and repeat FPS must be 0 fps. why FPS setting is NTSC based setting?
where can i check ? if you need full log , i will attach it.
call below function, after application starting
<code>
src_linux/mcfw_api/ti_vcap.c
Int32 Vcap_init_signal(VCAP_PARAMS_S * pContext, int isPal)
{
Int32 ret;
ret = Vcap_init(pContext);
gVcapModuleContext.isPalMode = isPal;
return ret;
}
</code>
it's my code not using video decoder.
<code>
Vsys_params_init(&pContext->vsys);
Vcap_params_init(&pContext->vcap);
pContext->vcap.enableConfigExtVideoDecoder = FALSE;
Venc_params_init(&pContext->venc);
Vdec_params_init(&pContext->vdec);
Vdis_params_init(&pContext->vdis);
pContext->vdis.enableConfigExtVideoEncoder = FALSE;
pContext->vdis.enableConfigExtThsFilter = FALSE;
</code>