decoder-core.h
branchtrunk
changeset 0 474a1293c3c0
child 25 887faebaba0a
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/decoder-core.h	Sat Dec 29 14:47:40 2007 +0100
     1.3 @@ -0,0 +1,64 @@
     1.4 +/*
     1.5 + * MP3/MPlayer plugin to VDR (C++)
     1.6 + *
     1.7 + * (C) 2001-2005 Stefan Huelswitt <s.huelswitt@gmx.de>
     1.8 + *
     1.9 + * This code is free software; you can redistribute it and/or
    1.10 + * modify it under the terms of the GNU General Public License
    1.11 + * as published by the Free Software Foundation; either version 2
    1.12 + * of the License, or (at your option) any later version.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful,
    1.15 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.16 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.17 + * GNU General Public License for more details.
    1.18 + *
    1.19 + * You should have received a copy of the GNU General Public License
    1.20 + * along with this program; if not, write to the Free Software
    1.21 + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
    1.22 + * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
    1.23 + */
    1.24 +
    1.25 +#ifndef ___DECODER_CORE_H
    1.26 +#define ___DECODER_CORE_H
    1.27 +
    1.28 +#include "decoder.h"
    1.29 +
    1.30 +#define DEC_ID(a,b,c,d) (((a)<<24)+((b)<<16)+((c)<<8)+(d))
    1.31 +
    1.32 +// ----------------------------------------------------------------
    1.33 +
    1.34 +enum eDecodeStatus { dsOK=0, dsPlay, dsSkip, dsEof, dsError, dsSoftError };
    1.35 +
    1.36 +struct Decode {
    1.37 +  eDecodeStatus status;
    1.38 +  int index;
    1.39 +  struct mad_pcm *pcm;
    1.40 +  };
    1.41 +
    1.42 +// ----------------------------------------------------------------
    1.43 +
    1.44 +#define CACHE_VERSION 7
    1.45 +
    1.46 +class cCacheData : public cSongInfo, public cFileInfo, public cListObject {
    1.47 +friend class cInfoCache;
    1.48 +private:
    1.49 +  int hash, version;
    1.50 +  time_t touch;
    1.51 +  cMutex lock;
    1.52 +protected:
    1.53 +  bool Save(FILE *f);
    1.54 +  bool Load(FILE *f);
    1.55 +  bool Upgrade(void);
    1.56 +  void Touch(void);
    1.57 +  bool Purge(void);
    1.58 +  void Create(cFileInfo *fi, cSongInfo *si);
    1.59 +public:
    1.60 +  cCacheData(void);
    1.61 +  void Lock(void) { lock.Lock(); }
    1.62 +  void Unlock(void) { lock.Unlock(); }
    1.63 +  };
    1.64 +
    1.65 +// ----------------------------------------------------------------
    1.66 +
    1.67 +#endif //___DECODER_CORE_H