summaryrefslogtreecommitdiff
path: root/apps/codecs/libffmpegFLAC/coldfire.S (follow)
Commit message (Expand)AuthorAge
* Assembler optimised FLAC 24 bit handling routines for Coldfire based players....Thom Johansen2006-10-25
* Unrolled loops up to order 10 plus slight optimisation of default case.Thom Johansen2005-11-05
* Move all code into IRAMDave Chapman2005-11-03
* Replaced jump table with a more efficient one.Thom Johansen2005-10-27
* Assembler optimised LPC routines for Coldfire. Will enable them when codec ha...Thom Johansen2005-10-27
com"> * $Id$ * * 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. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ****************************************************************************/ #ifndef QSYNTAXER_H #define QSYNTAXER_H // #include <QSyntaxHighlighter> class QTextCharFormat; class QSyntaxer : public QSyntaxHighlighter { Q_OBJECT struct HighlightingRule { QRegExp pattern; QTextCharFormat format; }; QMap<int,HighlightingRule> hrules; public: QSyntaxer(QTextDocument *parent = 0); protected: void highlightBlock(const QString &text); }; #endif