2015-12-08 10:27:58 +00:00
|
|
|
/* -*- 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(OmxDecoderModule_h_)
|
|
|
|
#define OmxDecoderModule_h_
|
|
|
|
|
|
|
|
#include "PlatformDecoderModule.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
class OmxDecoderModule : public PlatformDecoderModule {
|
|
|
|
public:
|
|
|
|
already_AddRefed<MediaDataDecoder>
|
2016-06-28 05:56:55 +00:00
|
|
|
CreateVideoDecoder(const CreateDecoderParams& aParams) override;
|
2015-12-08 10:27:58 +00:00
|
|
|
|
|
|
|
already_AddRefed<MediaDataDecoder>
|
2016-06-28 05:56:55 +00:00
|
|
|
CreateAudioDecoder(const CreateDecoderParams& aParams) override;
|
2015-12-08 10:27:58 +00:00
|
|
|
|
2016-04-19 07:36:19 +00:00
|
|
|
bool SupportsMimeType(const nsACString& aMimeType,
|
|
|
|
DecoderDoctorDiagnostics* aDiagnostics) const override;
|
2015-12-08 10:27:58 +00:00
|
|
|
|
|
|
|
ConversionRequired DecoderNeedsConversion(const TrackInfo& aConfig) const override;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // OmxDecoderModule_h_
|