/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

  1. /*
  2. * Copyright (C) 2005-2018 Team Kodi
  3. * This file is part of Kodi - https://kodi.tv
  4. *
  5. * SPDX-License-Identifier: GPL-2.0-or-later
  6. * See LICENSES/README.md for more information.
  7. */
  8. #pragma once
  9. #include "ICodec.h"
  10. class CachingCodec : public ICodec
  11. {
  12. public:
  13. virtual ~CachingCodec() {}
  14. virtual int GetCacheLevel() const { return -1; }
  15. };