summaryrefslogtreecommitdiffstats
path: root/dom/media/platforms/agnostic/DummyMediaDataDecoder.h
blob: 562d289bd9d583dfb4af18db0a923ebdb4240093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* -*- 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(DummyMediaDataDecoder_h_)
#  define DummyMediaDataDecoder_h_

#  include "MediaInfo.h"
#  include "mozilla/UniquePtr.h"
#  include "PlatformDecoderModule.h"
#  include "ReorderQueue.h"

namespace mozilla {

class MediaRawData;

class DummyDataCreator {
 public:
  virtual ~DummyDataCreator();
  virtual already_AddRefed<MediaData> Create(MediaRawData* aSample) = 0;
};

DDLoggedTypeDeclNameAndBase(DummyMediaDataDecoder, MediaDataDecoder);

// Decoder that uses a passed in object's Create function to create Null
// MediaData objects.
class DummyMediaDataDecoder final
    : public MediaDataDecoder,
      public DecoderDoctorLifeLogger<DummyMediaDataDecoder> {
 public:
  NS_INLINE_DECL_THREADSAFE_REFCOUNTING(DummyMediaDataDecoder, final);

  DummyMediaDataDecoder(UniquePtr<DummyDataCreator>&& aCreator,
                        const nsACString& aDescription,
                        const CreateDecoderParams& aParams);

  RefPtr<InitPromise> Init() override;

  RefPtr<ShutdownPromise> Shutdown() override;

  RefPtr<DecodePromise> Decode(MediaRawData* aSample) override;

  RefPtr<DecodePromise> Drain() override;

  RefPtr<FlushPromise> Flush() override;

  nsCString GetDescriptionName() const override;

  nsCString GetCodecName() const override;

  ConversionRequired NeedsConversion() const override;

 private:
  ~DummyMediaDataDecoder() = default;

  UniquePtr<DummyDataCreator> mCreator;
  const bool mIsH264;
  const uint32_t mMaxRefFrames;
  ReorderQueue mReorderQueue;
  TrackInfo::TrackType mType;
  nsCString mDescription;
};

}  // namespace mozilla

#endif  // !defined(DummyMediaDataDecoder_h_)