2014-05-17 20:05:46 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; 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 protocol PGMP;
|
|
|
|
include GMPTypes;
|
|
|
|
|
|
|
|
using GMPVideoCodec from "gmp-video-codec.h";
|
2014-07-10 17:21:13 -07:00
|
|
|
using GMPBufferType from "gmp-video-codec.h";
|
2014-05-17 20:05:46 -07:00
|
|
|
|
|
|
|
include "GMPMessageUtils.h";
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gmp {
|
|
|
|
|
2014-07-01 19:26:35 -07:00
|
|
|
intr protocol PGMPVideoDecoder
|
2014-05-17 20:05:46 -07:00
|
|
|
{
|
|
|
|
manager PGMP;
|
|
|
|
child:
|
2014-07-01 19:26:35 -07:00
|
|
|
async InitDecode(GMPVideoCodec aCodecSettings,
|
2014-07-10 17:20:51 -07:00
|
|
|
uint8_t[] aCodecSpecific,
|
2014-07-01 19:26:35 -07:00
|
|
|
int32_t aCoreCount);
|
|
|
|
async Decode(GMPVideoEncodedFrameData aInputFrame,
|
|
|
|
bool aMissingFrames,
|
2014-07-10 17:21:13 -07:00
|
|
|
GMPBufferType aBufferType,
|
|
|
|
uint8_t[] aCodecSpecificInfo,
|
2014-07-01 19:26:35 -07:00
|
|
|
int64_t aRenderTimeMs);
|
|
|
|
async Reset();
|
|
|
|
async Drain();
|
|
|
|
async DecodingComplete();
|
|
|
|
async ChildShmemForPool(Shmem aFrameBuffer);
|
|
|
|
|
2014-05-17 20:05:46 -07:00
|
|
|
parent:
|
2014-07-01 19:26:35 -07:00
|
|
|
async __delete__();
|
|
|
|
async Decoded(GMPVideoi420FrameData aDecodedFrame);
|
|
|
|
async ReceivedDecodedReferenceFrame(uint64_t aPictureId);
|
|
|
|
async ReceivedDecodedFrame(uint64_t aPictureId);
|
|
|
|
async InputDataExhausted();
|
2014-07-10 17:20:51 -07:00
|
|
|
async DrainComplete();
|
|
|
|
async ResetComplete();
|
2014-07-01 19:26:35 -07:00
|
|
|
async ParentShmemForPool(Shmem aEncodedBuffer);
|
|
|
|
// MUST be intr - if sync and we create a new Shmem, when the returned
|
|
|
|
// Shmem is received in the Child it will fail to Deserialize
|
|
|
|
intr NeedShmem(uint32_t aFrameBufferSize) returns (Shmem aMem);
|
2014-05-17 20:05:46 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace gmp
|
|
|
|
} // namespace mozilla
|