fix: remove continuous sleep mode check to prevent audio interference

The continuous ensure_sleep_mode_disabled() call in the format detection
loop caused repeated I2C transactions to the TC358743, disrupting HDMI
audio capture. Sleep mode is already disabled once during video_init(),
which is sufficient.
This commit is contained in:
Alex P 2025-10-27 17:28:14 +02:00
parent 557b3bf3e6
commit 0f43a84551
1 changed files with 0 additions and 1 deletions

View File

@ -752,7 +752,6 @@ void *run_detect_format(void *arg)
while (!should_exit)
{
ensure_sleep_mode_disabled();
memset(&dv_timings, 0, sizeof(dv_timings));
if (ioctl(sub_dev_fd, VIDIOC_QUERY_DV_TIMINGS, &dv_timings) != 0)