Skip to content

Commit

Permalink
(Continued)
Browse files Browse the repository at this point in the history
  • Loading branch information
wberube committed Jun 3, 2024
1 parent a489012 commit 4017841
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_

Expand Down
2 changes: 1 addition & 1 deletion src/hal/inge/t31_hal.c
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 4017841

Please sign in to comment.