/xbmc/cores/paplayer/CachingCodec.h
http://github.com/xbmc/xbmc · C Header · 18 lines · 8 code · 3 blank · 7 comment · 0 complexity · 9c83cf5d69bc6c6afb5f41f7b77b4717 MD5 · raw file
- /*
- * Copyright (C) 2005-2018 Team Kodi
- * This file is part of Kodi - https://kodi.tv
- *
- * SPDX-License-Identifier: GPL-2.0-or-later
- * See LICENSES/README.md for more information.
- */
- #pragma once
- #include "ICodec.h"
- class CachingCodec : public ICodec
- {
- public:
- virtual ~CachingCodec() {}
- virtual int GetCacheLevel() const { return -1; }
- };