summaryrefslogtreecommitdiffstats
path: root/dom/media/ipc/PVideoDecoder.ipdl
blob: cc2b803b2fe87d68a0c50e3e468bf9621dfbc70c (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
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */

include "mozilla/dom/MediaIPCUtils.h";

include protocol PVideoDecoderManager;
include LayersSurfaces;
using VideoInfo from "MediaInfo.h";
using mozilla::layers::LayersBackend from "mozilla/layers/LayersTypes.h";
using struct mozilla::layers::TextureFactoryIdentifier from "mozilla/layers/CompositorTypes.h";

namespace mozilla {
namespace dom {

struct MediaDataIPDL
{
  int64_t offset;
  int64_t time;
  int64_t timecode;
  int64_t duration;
  uint32_t frames;
  bool keyframe;
};

struct VideoDataIPDL
{
  MediaDataIPDL base;
  IntSize display;
  SurfaceDescriptorGPUVideo sd;
  int32_t frameID;
};

struct MediaRawDataIPDL
{
  MediaDataIPDL base;
  Shmem buffer;
};

// This protocol provides a way to use MediaDataDecoder/MediaDataDecoderCallback
// across processes. The parent side currently is only implemented to work with
// Window Media Foundation, but can be extended easily to support other backends.
// The child side runs in the content process, and the parent side runs in the
// GPU process. We run a separate IPDL thread for both sides.
async protocol PVideoDecoder
{
  manager PVideoDecoderManager;
parent:
  async Init(VideoInfo info, TextureFactoryIdentifier identifier);

  async Input(MediaRawDataIPDL data);

  async Flush();
  async Drain();
  async Shutdown();

  async SetSeekThreshold(int64_t time);

  async __delete__();

child:

  async InitComplete(bool hardware, nsCString hardwareReason);
  async InitFailed(nsresult reason);

  // Each output includes a SurfaceDescriptorGPUVideo that represents the decoded
  // frame. This SurfaceDescriptor can be used on the Layers IPDL protocol, but
  // must be released explicitly using DeallocateSurfaceDescriptorGPUVideo
  // on the manager protocol.
  async Output(VideoDataIPDL data);
  async InputExhausted();
  async DrainComplete();
  async Error(nsresult error);
};

} // namespace dom
} // namespace mozilla