summaryrefslogtreecommitdiff
path: root/apps/codecs
ModeNameSize
-rw-r--r--SOURCES382logplain
-rw-r--r--a52.c5801logplain
-rw-r--r--a52_rm.c7251logplain
-rw-r--r--aac.c9122logplain
-rw-r--r--adx.c13012logplain
-rw-r--r--aiff.c11682logplain
-rw-r--r--aiff_enc.c12695logplain
-rw-r--r--alac.c4859logplain
-rw-r--r--ape.c10622logplain
-rw-r--r--asap.c4162logplain
-rw-r--r--atrac3_oma.c4964logplain
-rw-r--r--atrac3_rm.c8213logplain
-rw-r--r--au.c9535logplain
-rw-r--r--codec_crt0.c2925logplain
-rw-r--r--codecs.make5452logplain
-rw-r--r--cook.c7563logplain
d---------demac292logplain
-rw-r--r--flac.c17358logplain
d---------lib960logplain
d---------liba52926logplain
d---------libalac221logplain
d---------libasap444logplain
d---------libasf140logplain
d---------libatrac398logplain
d---------libcook313logplain
d---------plain
-rw-r--r--shorten.c5309logplain
-rw-r--r--sid.c42471logplain
-rw-r--r--smaf.c13149logplain
-rw- /* Aligning on 16-bit boundary */ if(header.value("nbits").toInt() % 2 == 1) data >> byte; /* Loading the offset table if necessary */ if(header.value("noffset").toInt() > 0) { int bytesToRead; if(header.value("nbits").toInt() > maxFontSizeFor16BitOffsets) bytesToRead = 4 * header.value("noffset").toInt(); else bytesToRead = 2 * header.value("noffset").toInt(); offsetData = new quint16[bytesToRead]; data.readRawData(reinterpret_cast<char*>(offsetData), bytesToRead); } /* Loading the width table if necessary */ if(header.value("nwidth").toInt() > 0) { widthData = new quint8[header.value("nwidth").toInt()]; data.readRawData(reinterpret_cast<char*>(widthData), header.value("nwidth").toInt()); } fin.close(); /* Caching the font data */ cache = new RBFontCache::CacheInfo; cache->imageData = imageData; cache->offsetData = offsetData; cache->widthData = widthData; cache->header = header; RBFontCache::insert(file, cache); if(!badFile) valid = true; } RBFont::~RBFont() { } RBText* RBFont::renderText(QString text, QColor color, int viewWidth, QGraphicsItem *parent) { /* Checking for