Hello,
We encounter a problem with capture device creation performance while working with DM365 platform & dvsdk2_10_00_17(dmai_1_21_00_10) & kernel of montavista 2.6.18
During initialization (and then in case of disconnect/connect video) we use next sequence of APIs:
Capture_delete(handle); //only in case of video disconnection
attrs.VideoInput = Capture_Input_Composite;
Capture_detectVideoStd(NULL,&videoStd,&attrs);
attrs.VideoStd=VideoStdAUTO;
Capture_create(NULL,&attrs);
After profiling we see that each of API calls Capture_detectVideoStd and Capture_create takes more than 3.5 sec (up to 4.8 sec) and so capture device creation takes about 10 sec. What are the reasons of this low performance and is there any way to reduce this time?