From 0486034738b850c210b1389a8c3ae51a6b9fad23 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 29 Mar 2014 00:54:51 +0900 Subject: Removed MSN support across Kopete by removing the MSN protocol and the netmeeting plugin. This resolves bug 1547. --- kopete/protocols/msn/webcam/mimicwrapper.cpp | 105 --------------------------- 1 file changed, 105 deletions(-) delete mode 100644 kopete/protocols/msn/webcam/mimicwrapper.cpp (limited to 'kopete/protocols/msn/webcam/mimicwrapper.cpp') diff --git a/kopete/protocols/msn/webcam/mimicwrapper.cpp b/kopete/protocols/msn/webcam/mimicwrapper.cpp deleted file mode 100644 index 75eb52cf..00000000 --- a/kopete/protocols/msn/webcam/mimicwrapper.cpp +++ /dev/null @@ -1,105 +0,0 @@ -/* - Copyright (c) 2005 by Olivier Goffart - - ************************************************************************* - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ************************************************************************* -*/ - - -#include "mimicwrapper.h" - -#include "libmimic/mimic.h" - -//#include -#include -#include - -MimicWrapper::MimicWrapper() : m_init(false) -{ - m_mimctx=mimic_open(); -} - -MimicWrapper::~MimicWrapper() -{ - mimic_close(m_mimctx); -} - - -TQPixmap MimicWrapper::decode(const TQByteArray& data) -{ - if(!m_init) - { - if(!mimic_decoder_init(m_mimctx, (guchar*)(data.data()))) - { - kdWarning(14140) << k_funcinfo << "Impossible to init decoder" << endl; - return TQPixmap(); - } - if (!mimic_get_property( m_mimctx, "buffer_size", &m_bufferSize) ) - { - kdWarning(14140) << k_funcinfo << "Impossible to get buffer size" << endl; - return TQPixmap(); - } - m_init=true; - } - - TQByteArray buff(m_bufferSize); - if(!mimic_decode_frame(m_mimctx, (guchar*)(data.data()) , (guchar*)(buff.data()) ) ) - { - kdWarning(14140) << k_funcinfo << "Impossible to decode frame" << endl; - return TQPixmap(); - } - int width,height; - mimic_get_property(m_mimctx, "width", &width); - mimic_get_property(m_mimctx, "height", &height); - - - TQByteArray buff2(m_bufferSize*4/3); - uint b2=0; - for(uint f=0;f