зеркало из https://github.com/mozilla/gecko-dev.git
38 строки
977 B
Plaintext
38 строки
977 B
Plaintext
/* -*- 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 PGMPContent;
|
|
include GMPTypes;
|
|
|
|
using GMPCodecSpecificInfo from "gmp-audio-codec.h";
|
|
using GMPErr from "gmp-errors.h";
|
|
|
|
include "GMPMessageUtils.h";
|
|
|
|
namespace mozilla {
|
|
namespace gmp {
|
|
|
|
async protocol PGMPAudioDecoder
|
|
{
|
|
manager PGMPContent;
|
|
child:
|
|
async InitDecode(GMPAudioCodecData aCodecSettings);
|
|
async Decode(GMPAudioEncodedSampleData aInput);
|
|
async Reset();
|
|
async Drain();
|
|
async DecodingComplete();
|
|
parent:
|
|
async __delete__();
|
|
async Decoded(GMPAudioDecodedSampleData aDecoded);
|
|
async InputDataExhausted();
|
|
async DrainComplete();
|
|
async ResetComplete();
|
|
async Error(GMPErr aErr);
|
|
async Shutdown();
|
|
};
|
|
|
|
} // namespace gmp
|
|
} // namespace mozilla
|