2014-05-18 07:05:46 +04: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/. */
|
|
|
|
|
2015-02-10 13:48:42 +03:00
|
|
|
include protocol PGMPContent;
|
2014-05-18 07:05:46 +04:00
|
|
|
include GMPTypes;
|
|
|
|
|
|
|
|
using GMPVideoCodec from "gmp-video-codec.h";
|
2014-07-24 01:35:01 +04:00
|
|
|
using GMPErr from "gmp-errors.h";
|
2014-05-18 07:05:46 +04:00
|
|
|
|
|
|
|
include "GMPMessageUtils.h";
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gmp {
|
|
|
|
|
2014-07-02 06:26:35 +04:00
|
|
|
intr protocol PGMPVideoDecoder
|
2014-05-18 07:05:46 +04:00
|
|
|
{
|
2015-02-10 13:48:42 +03:00
|
|
|
manager PGMPContent;
|
2014-05-18 07:05:46 +04:00
|
|
|
child:
|
2014-07-02 06:26:35 +04:00
|
|
|
async InitDecode(GMPVideoCodec aCodecSettings,
|
2014-07-11 07:35:56 +04:00
|
|
|
uint8_t[] aCodecSpecific,
|
2014-07-02 06:26:35 +04:00
|
|
|
int32_t aCoreCount);
|
|
|
|
async Decode(GMPVideoEncodedFrameData aInputFrame,
|
|
|
|
bool aMissingFrames,
|
2014-07-11 07:36:21 +04:00
|
|
|
uint8_t[] aCodecSpecificInfo,
|
2014-07-02 06:26:35 +04:00
|
|
|
int64_t aRenderTimeMs);
|
|
|
|
async Reset();
|
|
|
|
async Drain();
|
|
|
|
async DecodingComplete();
|
|
|
|
async ChildShmemForPool(Shmem aFrameBuffer);
|
|
|
|
|
2014-05-18 07:05:46 +04:00
|
|
|
parent:
|
2014-07-02 06:26:35 +04:00
|
|
|
async __delete__();
|
|
|
|
async Decoded(GMPVideoi420FrameData aDecodedFrame);
|
|
|
|
async ReceivedDecodedReferenceFrame(uint64_t aPictureId);
|
|
|
|
async ReceivedDecodedFrame(uint64_t aPictureId);
|
|
|
|
async InputDataExhausted();
|
2014-07-11 07:35:56 +04:00
|
|
|
async DrainComplete();
|
|
|
|
async ResetComplete();
|
2014-07-24 01:35:01 +04:00
|
|
|
async Error(GMPErr aErr);
|
2015-02-10 13:48:42 +03:00
|
|
|
async Shutdown();
|
2014-07-02 06:26:35 +04: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-18 07:05:46 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace gmp
|
|
|
|
} // namespace mozilla
|