summaryrefslogtreecommitdiffstats
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:04:29 +0900
commite4649e697aba416787284b4c80a3290c78d8cf75 (patch)
treed02252d1224dfa0eb00908819aebafe66da28618
parent3f6bf8137d42cb52022e8ee6456e5cbde3136dee (diff)
downloadk9copy-e4649e69.tar.gz
k9copy-e4649e69.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-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);