summaryrefslogtreecommitdiffstats
path: root/dom/media/ipc/VideoDecoderManagerChild.h
blob: 1e67a590eec755755205552477c001dccf3e8feb (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=99: */
/* 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/. */
#ifndef include_dom_ipc_VideoDecoderManagerChild_h
#define include_dom_ipc_VideoDecoderManagerChild_h

#include "mozilla/RefPtr.h"
#include "mozilla/dom/PVideoDecoderManagerChild.h"

namespace mozilla {
namespace gfx {
class SourceSurface;
}
namespace dom {

class VideoDecoderManagerChild final : public PVideoDecoderManagerChild
                                     , public mozilla::ipc::IShmemAllocator
{
public:
  NS_INLINE_DECL_THREADSAFE_REFCOUNTING(VideoDecoderManagerChild)

  // Can only be called from the manager thread
  static VideoDecoderManagerChild* GetSingleton();

  // Can be called from any thread.
  static nsIThread* GetManagerThread();
  static AbstractThread* GetManagerAbstractThread();

  // Can be called from any thread, dispatches the request to the IPDL thread internally
  // and will be ignored if the IPDL actor has been destroyed.
  already_AddRefed<gfx::SourceSurface> Readback(const SurfaceDescriptorGPUVideo& aSD);
  void DeallocateSurfaceDescriptorGPUVideo(const SurfaceDescriptorGPUVideo& aSD);

  bool AllocShmem(size_t aSize,
                  mozilla::ipc::SharedMemory::SharedMemoryType aShmType,
                  mozilla::ipc::Shmem* aShmem) override
  {
    return PVideoDecoderManagerChild::AllocShmem(aSize, aShmType, aShmem);
  }
  bool AllocUnsafeShmem(size_t aSize,
                        mozilla::ipc::SharedMemory::SharedMemoryType aShmType,
                        mozilla::ipc::Shmem* aShmem) override
  {
    return PVideoDecoderManagerChild::AllocUnsafeShmem(aSize, aShmType, aShmem);
  }

  // Can be called from any thread, dispatches the request to the IPDL thread internally
  // and will be ignored if the IPDL actor has been destroyed.
  bool DeallocShmem(mozilla::ipc::Shmem& aShmem) override;

  // Main thread only
  static void InitForContent(Endpoint<PVideoDecoderManagerChild>&& aVideoManager);
  static void Shutdown();

  // Run aTask (on the manager thread) when we next attempt to create a new manager
  // (even if creation fails). Intended to be called from ActorDestroy when we get
  // notified that the old manager is being destroyed.
  // Can only be called from the manager thread.
  void RunWhenRecreated(already_AddRefed<Runnable> aTask);

  bool CanSend();

protected:
  void InitIPDL();

  void ActorDestroy(ActorDestroyReason aWhy) override;
  void DeallocPVideoDecoderManagerChild() override;

  void HandleFatalError(const char* aName, const char* aMsg) const override;

  PVideoDecoderChild* AllocPVideoDecoderChild() override;
  bool DeallocPVideoDecoderChild(PVideoDecoderChild* actor) override;

private:
  // Main thread only
  static void InitializeThread();

  VideoDecoderManagerChild()
    : mCanSend(false)
  {}
  ~VideoDecoderManagerChild() {}

  static void Open(Endpoint<PVideoDecoderManagerChild>&& aEndpoint);

  RefPtr<VideoDecoderManagerChild> mIPDLSelfRef;

  // Should only ever be accessed on the manager thread.
  bool mCanSend;
};

} // namespace dom
} // namespace mozilla

#endif // include_dom_ipc_VideoDecoderManagerChild_h