summaryrefslogtreecommitdiffstats
path: root/k9author
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-23 12:49:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-27 11:05:11 +0900
commit50ca2b569d59ff295200d949a8d7d86c32c3b6ab (patch)
tree9f746c87a5247772eef43c6235aa829bbc117221 /k9author
parent71c0799ec4210e2a6ad4f9bdb55fdc37777dfb8f (diff)
downloadk9copy-50ca2b569d59ff295200d949a8d7d86c32c3b6ab.tar.gz
k9copy-50ca2b569d59ff295200d949a8d7d86c32c3b6ab.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit e4649e697aba416787284b4c80a3290c78d8cf75)
Diffstat (limited to 'k9author')
-rw-r--r--k9author/k9avidecode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/k9author/k9avidecode.cpp b/k9author/k9avidecode.cpp
index ff380d5..c6e1217 100644
--- a/k9author/k9avidecode.cpp
+++ b/k9author/k9avidecode.cpp
@@ -244,7 +244,7 @@ void k9AviDecode::readFrame(double _seconds) {
bFound=true;
toRGB_convert_ctx=sws_getContext(m_CodecCtx->width, m_CodecCtx->height, m_CodecCtx->pix_fmt, m_CodecCtx->width, m_CodecCtx->height, AV_PIX_FMT_RGB24, sws_flags,NULL,NULL,NULL);
sws_scale(toRGB_convert_ctx, m_Frame->data, m_Frame->linesize, 0, m_CodecCtx->height, m_FrameRGB->data,m_FrameRGB->linesize);
- // convert frame to QImage
+ // convert frame to TQImage
SaveFrame(m_FrameRGB, m_CodecCtx->width,
m_CodecCtx->height);
sws_freeContext(toRGB_convert_ctx);