summaryrefslogtreecommitdiffstats
path: root/src/app/captureFrame.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-02-25 14:21:50 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-02-25 14:21:50 +0900
commit00a73f1dea1194890a6db0bd00ec2759e9ff5bc5 (patch)
tree9249c5b508fe27efccdfde2aad7e81350890e1ea /src/app/captureFrame.cpp
parent1ca6231ff7a251916340814041990bef8e282308 (diff)
downloadcodeine-00a73f1dea1194890a6db0bd00ec2759e9ff5bc5.tar.gz
codeine-00a73f1dea1194890a6db0bd00ec2759e9ff5bc5.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/app/captureFrame.cpp')
-rw-r--r--src/app/captureFrame.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/captureFrame.cpp b/src/app/captureFrame.cpp
index 0b7e8c8..920e18a 100644
--- a/src/app/captureFrame.cpp
+++ b/src/app/captureFrame.cpp
@@ -178,7 +178,7 @@ yv12ToRgb( uint8_t *src_y, uint8_t *src_u, uint8_t *src_v, const int w, const in
const int uv_width = w / 2;
const int uv_height = h / 2;
- uchar * const rgb = new uchar[(w * h * 4)]; //qt needs a 32bit align
+ uchar * const rgb = new uchar[(w * h * 4)]; //tqt needs a 32bit align
if( !rgb )
return 0;