@@ -276,10 +276,8 @@ int create_channel(char index, short width, short height, char framerate, char j
276276 switch (plat ) {
277277#if defined(__ARM_PCS_VFP )
278278 case HAL_PLATFORM_I6 : return i6_channel_create (index , width , height , jpeg );
279- case HAL_PLATFORM_I6C : return i6c_channel_create (index , width , height ,
280- app_config .mirror , app_config .flip , jpeg );
281- case HAL_PLATFORM_M6 : return m6_channel_create (index , width , height ,
282- app_config .mirror , app_config .flip , jpeg );
279+ case HAL_PLATFORM_I6C : return i6c_channel_create (index , width , height , jpeg );
280+ case HAL_PLATFORM_M6 : return m6_channel_create (index , width , height , jpeg );
283281 case HAL_PLATFORM_RK : return rk_channel_create (index , width , height ,
284282 app_config .mirror , app_config .flip );
285283#elif defined(__arm__ ) && !defined(__ARM_PCS_VFP )
@@ -748,9 +746,9 @@ int start_sdk(void) {
748746 case HAL_PLATFORM_I6 : ret = i6_pipeline_create (0 , width ,
749747 height , app_config .mirror , app_config .flip , framerate ); break ;
750748 case HAL_PLATFORM_I6C : ret = i6c_pipeline_create (0 , width ,
751- height , framerate ); break ;
749+ height , app_config . mirror , app_config . flip , framerate ); break ;
752750 case HAL_PLATFORM_M6 : ret = m6_pipeline_create (0 , width ,
753- height , framerate ); break ;
751+ height , app_config . mirror , app_config . flip , framerate ); break ;
754752 case HAL_PLATFORM_RK : ret = rk_pipeline_create (width , height ); break ;
755753#elif defined(__arm__ ) && !defined(__ARM_PCS_VFP )
756754 case HAL_PLATFORM_AK : ret = ak_pipeline_create (app_config .mirror ,
0 commit comments