mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 06:05:44 +00:00
1b2a65cfc3
Extract all the parameters passed to CreateAudioDecoder/CreateVideoDecoder and place them into a structure that is passed down to the creation of the actual decoder, where the relevant parameters can be extracted. This makes it easier to add more arguments to the Create*Decoder calls in future. MozReview-Commit-ID: 9LZlcfRVz6A --HG-- extra : rebase_source : ce3f0c7d0784b96267728697ff5d535ccb8ee7a6
31 lines
1000 B
C++
31 lines
1000 B
C++
/* -*- 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>
|
|
CreateVideoDecoder(const CreateDecoderParams& aParams) override;
|
|
|
|
already_AddRefed<MediaDataDecoder>
|
|
CreateAudioDecoder(const CreateDecoderParams& aParams) override;
|
|
|
|
bool SupportsMimeType(const nsACString& aMimeType,
|
|
DecoderDoctorDiagnostics* aDiagnostics) const override;
|
|
|
|
ConversionRequired DecoderNeedsConversion(const TrackInfo& aConfig) const override;
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif // OmxDecoderModule_h_
|