diff options
author | trav90 <travawine@palemoon.org> | 2018-12-01 09:40:13 -0600 |
---|---|---|
committer | trav90 <travawine@palemoon.org> | 2018-12-01 09:40:13 -0600 |
commit | f2723fc8bf8c961af2d29252f380544c47c72371 (patch) | |
tree | cbce3ae36db1d0fccc4d761cbc3727ced51f0406 /dom/media/directshow/DirectShowDecoder.h | |
parent | b867c50ee62d5ae2379d9c0c2f2a178d53165759 (diff) | |
download | UXP-f2723fc8bf8c961af2d29252f380544c47c72371.tar UXP-f2723fc8bf8c961af2d29252f380544c47c72371.tar.gz UXP-f2723fc8bf8c961af2d29252f380544c47c72371.tar.lz UXP-f2723fc8bf8c961af2d29252f380544c47c72371.tar.xz UXP-f2723fc8bf8c961af2d29252f380544c47c72371.zip |
Remove DirectShowReader Part 3: Directories
Diffstat (limited to 'dom/media/directshow/DirectShowDecoder.h')
-rw-r--r-- | dom/media/directshow/DirectShowDecoder.h | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/dom/media/directshow/DirectShowDecoder.h b/dom/media/directshow/DirectShowDecoder.h deleted file mode 100644 index c4d371fbf..000000000 --- a/dom/media/directshow/DirectShowDecoder.h +++ /dev/null @@ -1,45 +0,0 @@ -/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim:set ts=2 sw=2 sts=2 et cindent: */ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -#if !defined(DirectShowDecoder_h_) -#define DirectShowDecoder_h_ - -#include "MediaDecoder.h" - -namespace mozilla { - -// Decoder that uses DirectShow to playback MP3 files only. -class DirectShowDecoder : public MediaDecoder -{ -public: - - explicit DirectShowDecoder(MediaDecoderOwner* aOwner); - virtual ~DirectShowDecoder(); - - MediaDecoder* Clone(MediaDecoderOwner* aOwner) override { - if (!IsEnabled()) { - return nullptr; - } - return new DirectShowDecoder(aOwner); - } - - MediaDecoderStateMachine* CreateStateMachine() override; - - // Returns true if aType is a MIME type that we render with the - // DirectShow backend. If aCodecList is non null, - // it is filled with a (static const) null-terminated list of strings - // denoting the codecs we'll playback. Note that playback is strictly - // limited to MP3 only. - static bool GetSupportedCodecs(const nsACString& aType, - char const *const ** aCodecList); - - // Returns true if the DirectShow backend is preffed on. - static bool IsEnabled(); -}; - -} // namespace mozilla - -#endif |