supported_codec_finder.h 635 B

12345678910111213141516171819202122
  1. // Copyright 2017 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef CHROMECAST_BROWSER_MEDIA_SUPPORTED_CODEC_FINDER_H_
  5. #define CHROMECAST_BROWSER_MEDIA_SUPPORTED_CODEC_FINDER_H_
  6. namespace chromecast {
  7. namespace media {
  8. class MediaCapsImpl;
  9. class SupportedCodecFinder {
  10. public:
  11. // Notifies the given MediaCaps of all found supported codecs.
  12. void FindSupportedCodecProfileLevels(MediaCapsImpl* media_caps);
  13. };
  14. } // namespace media
  15. } // namespace chromecast
  16. #endif // CHROMECAST_BROWSER_MEDIA_SUPPORTED_CODEC_FINDER_H_