aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
authorGravatar Fabio Bas2010-04-07 17:20:12 +0000
committerGravatar Fabio Bas2010-04-07 17:20:12 +0000
commit71530d2b805faa28bba4cf61d48ca69df087cdfe (patch)
tree31e7f5f9e22663b466653b6a378ebd79891af394 /src/modules
parentfixed a crash on close when a dcc is open (diff)
downloadKVIrc-71530d2b805faa28bba4cf61d48ca69df087cdfe.tar.gz
KVIrc-71530d2b805faa28bba4cf61d48ca69df087cdfe.tar.bz2
KVIrc-71530d2b805faa28bba4cf61d48ca69df087cdfe.zip
cleaning the dcc video ogg/theora codec && implementing ogg/irct codec (wip)
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@4244 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/dcc/codec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/dcc/codec.cpp b/src/modules/dcc/codec.cpp
index 7e1433f1a..a124132a1 100644
--- a/src/modules/dcc/codec.cpp
+++ b/src/modules/dcc/codec.cpp
@@ -306,7 +306,7 @@ void KviDccVideoTheoraCodec::decode(KviDataBuffer * stream,KviDataBuffer * video
if(stream->size() < 1)return;
if(!m_pDecoder)
- m_pDecoder = new KviTheoraDecoder(videoSignal);
+ m_pDecoder = new KviTheoraDecoder(videoSignal, textSignal);
m_pDecoder->addData(stream);
}