mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-21 04:31:26 +00:00
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#if !defined(AgnosticDecoderModule_h_)
|
|
#define AgnosticDecoderModule_h_
|
|
|
|
#include "PlatformDecoderModule.h"
|
|
|
|
namespace mozilla {
|
|
|
|
class AgnosticDecoderModule : public PlatformDecoderModule {
|
|
public:
|
|
AgnosticDecoderModule() = default;
|
|
virtual ~AgnosticDecoderModule() = default;
|
|
|
|
bool SupportsMimeType(const nsACString& aMimeType) const override;
|
|
|
|
ConversionRequired
|
|
DecoderNeedsConversion(const TrackInfo& aConfig) const override
|
|
{
|
|
return ConversionRequired::kNeedNone;
|
|
}
|
|
|
|
protected:
|
|
// Decode thread.
|
|
already_AddRefed<MediaDataDecoder>
|
|
CreateVideoDecoder(const VideoInfo& aConfig,
|
|
layers::LayersBackend aLayersBackend,
|
|
layers::ImageContainer* aImageContainer,
|
|
FlushableTaskQueue* aVideoTaskQueue,
|
|
MediaDataDecoderCallback* aCallback) override;
|
|
|
|
// Decode thread.
|
|
already_AddRefed<MediaDataDecoder>
|
|
CreateAudioDecoder(const AudioInfo& aConfig,
|
|
FlushableTaskQueue* aAudioTaskQueue,
|
|
MediaDataDecoderCallback* aCallback) override;
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif /* AgnosticDecoderModule_h_ */
|