@@ -259,7 +259,7 @@ async def test_TC_AVSM_2_7(self):
259259 videoStreamAllocateCmd = commands .VideoStreamAllocate (
260260 streamUsage = aStreamUsagePriorities [0 ],
261261 videoCodec = aRateDistortionTradeOffPoints [0 ].codec ,
262- minFrameRate = min (15 , aVideoSensorParams .maxFPS ),
262+ minFrameRate = min (self . matter_test_config . min_frame_rate , aVideoSensorParams .maxFPS ),
263263 maxFrameRate = aVideoSensorParams .maxFPS ,
264264 minResolution = aMinViewportRes ,
265265 maxResolution = cluster .Structs .VideoResolutionStruct (
@@ -293,7 +293,7 @@ async def test_TC_AVSM_2_7(self):
293293 videoStreamAllocateCmd = commands .VideoStreamAllocate (
294294 streamUsage = aStreamUsagePriorities [0 ],
295295 videoCodec = aRateDistortionTradeOffPoints [0 ].codec ,
296- minFrameRate = min (15 , aVideoSensorParams .maxFPS ),
296+ minFrameRate = min (self . matter_test_config . min_frame_rate , aVideoSensorParams .maxFPS ),
297297 maxFrameRate = aVideoSensorParams .maxFPS ,
298298 minResolution = aMinViewportRes ,
299299 maxResolution = cluster .Structs .VideoResolutionStruct (
@@ -370,7 +370,7 @@ async def test_TC_AVSM_2_7(self):
370370 videoStreamAllocateCmd = commands .VideoStreamAllocate (
371371 streamUsage = outOfConstraintStreamUsage ,
372372 videoCodec = aRateDistortionTradeOffPoints [0 ].codec ,
373- minFrameRate = min (15 , aVideoSensorParams .maxFPS ),
373+ minFrameRate = min (self . matter_test_config . min_frame_rate , aVideoSensorParams .maxFPS ),
374374 maxFrameRate = aVideoSensorParams .maxFPS ,
375375 minResolution = aMinViewportRes ,
376376 maxResolution = cluster .Structs .VideoResolutionStruct (
@@ -403,7 +403,7 @@ async def test_TC_AVSM_2_7(self):
403403 videoStreamAllocateCmd = commands .VideoStreamAllocate (
404404 streamUsage = notSupportedStreamUsage ,
405405 videoCodec = aRateDistortionTradeOffPoints [0 ].codec ,
406- minFrameRate = min (15 , aVideoSensorParams .maxFPS ),
406+ minFrameRate = min (self . matter_test_config . min_frame_rate , aVideoSensorParams .maxFPS ),
407407 maxFrameRate = aVideoSensorParams .maxFPS ,
408408 minResolution = aMinViewportRes ,
409409 maxResolution = cluster .Structs .VideoResolutionStruct (
@@ -486,7 +486,7 @@ async def test_TC_AVSM_2_7(self):
486486 videoStreamAllocateCmd = commands .VideoStreamAllocate (
487487 streamUsage = aStreamUsagePriorities [0 ],
488488 videoCodec = aRateDistortionTradeOffPoints [0 ].codec ,
489- minFrameRate = min (15 , aVideoSensorParams .maxFPS ),
489+ minFrameRate = min (self . matter_test_config . min_frame_rate , aVideoSensorParams .maxFPS ),
490490 maxFrameRate = aVideoSensorParams .maxFPS ,
491491 minResolution = aMinViewportRes ,
492492 maxResolution = cluster .Structs .VideoResolutionStruct (
@@ -513,7 +513,7 @@ async def test_TC_AVSM_2_7(self):
513513 videoStreamAllocateCmd = commands .VideoStreamAllocate (
514514 streamUsage = aStreamUsagePriorities [0 ],
515515 videoCodec = aRateDistortionTradeOffPoints [0 ].codec ,
516- minFrameRate = min (15 , aVideoSensorParams .maxFPS ),
516+ minFrameRate = min (self . matter_test_config . min_frame_rate , aVideoSensorParams .maxFPS ),
517517 maxFrameRate = aVideoSensorParams .maxFPS ,
518518 minResolution = aMinViewportRes ,
519519 maxResolution = cluster .Structs .VideoResolutionStruct (
@@ -540,7 +540,7 @@ async def test_TC_AVSM_2_7(self):
540540 videoStreamAllocateCmd = commands .VideoStreamAllocate (
541541 streamUsage = aStreamUsagePriorities [0 ],
542542 videoCodec = aRateDistortionTradeOffPoints [0 ].codec ,
543- minFrameRate = min (15 , aVideoSensorParams .maxFPS ),
543+ minFrameRate = min (self . matter_test_config . min_frame_rate , aVideoSensorParams .maxFPS ),
544544 maxFrameRate = aVideoSensorParams .maxFPS ,
545545 minResolution = aMinViewportRes ,
546546 maxResolution = cluster .Structs .VideoResolutionStruct (
@@ -567,7 +567,7 @@ async def test_TC_AVSM_2_7(self):
567567 videoStreamAllocateCmd = commands .VideoStreamAllocate (
568568 streamUsage = aStreamUsagePriorities [0 ],
569569 videoCodec = 10 ,
570- minFrameRate = min (15 , aVideoSensorParams .maxFPS ),
570+ minFrameRate = min (self . matter_test_config . min_frame_rate , aVideoSensorParams .maxFPS ),
571571 maxFrameRate = aVideoSensorParams .maxFPS ,
572572 minResolution = aMinViewportRes ,
573573 maxResolution = cluster .Structs .VideoResolutionStruct (
@@ -594,7 +594,7 @@ async def test_TC_AVSM_2_7(self):
594594 videoStreamAllocateCmd = commands .VideoStreamAllocate (
595595 streamUsage = aStreamUsagePriorities [0 ],
596596 videoCodec = aRateDistortionTradeOffPoints [0 ].codec ,
597- minFrameRate = min (15 , aVideoSensorParams .maxFPS ),
597+ minFrameRate = min (self . matter_test_config . min_frame_rate , aVideoSensorParams .maxFPS ),
598598 maxFrameRate = aVideoSensorParams .maxFPS + 10 ,
599599 minResolution = aMinViewportRes ,
600600 maxResolution = cluster .Structs .VideoResolutionStruct (
0 commit comments