diff --git a/README.md b/README.md index 41a415c..eec0b7a 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ In spite of these design choices, Divinus boasts numerous features that cater to | infinity6e[^8] | ↻ | ✔️ | ✔️ | ✔️ | ✗ | ✔️ | | infinity6c[^9] | ↻ | ✔️ | ✔️ | ✔️ | ✗ | ✔️ | | infinity6f[^10] | ↻ | ✔️ | ✔️ | ✔️ | ✗ | ✔️ | -| T31 series | ↻ | ↻ | ✔️ | ↻ | ✗ | ✔️ | +| T31 series | ↻ | ↻ | ✔️ | ✔️ | ✗ | ✔️ | _✔️ - supported, ↻ - in development, ✗ - unsupported, ⁿ/ₐ - not supported by hardware_ diff --git a/src/hal/inge/t31_hal.c b/src/hal/inge/t31_hal.c index c0aac37..9b33eb4 100644 --- a/src/hal/inge/t31_hal.c +++ b/src/hal/inge/t31_hal.c @@ -116,7 +116,7 @@ int t31_channel_create(char index, short width, short height, char framerate) .dest = { .width = width, .height = height }, .pixFmt = T31_PIXFMT_NV12, .scale = { .enable = (_t31_snr_dim.width != width || _t31_snr_dim.height != height) ? 1 : 0, .width = width, .height = height }, - .fpsNum = framerate, .fpsDen = 1, .bufCount = width > 1920 ? 2 : 1, .phyOrExtChn = 0, + .fpsNum = framerate, .fpsDen = 1, .bufCount = 2, .phyOrExtChn = 0, }; if (ret = t31_fs.fnCreateChannel(index, &channel))