author | Chris Pearce <cpearce@mozilla.com> |
Thu, 30 Apr 2015 21:13:48 +1200 | |
changeset 241779 | a7da86419656e127226f53e302c82bf3ed23e563 |
parent 241778 | 491bcd3dba9fd637ed821ed3620d3a2dcf027ad4 |
child 241780 | 2a4864545b47eb36c526408cded4c79eff399bcd |
push id | 28669 |
push user | ryanvm@gmail.com |
push date | Thu, 30 Apr 2015 17:57:05 +0000 |
treeherder | mozilla-central@7723b15ea695 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | edwin |
bugs | 1159300 |
milestone | 40.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
dom/media/gmp-plugin/fake.info | file | annotate | diff | comparison | revisions | |
dom/media/gtest/TestGMPRemoveAndDelete.cpp | file | annotate | diff | comparison | revisions |
--- a/dom/media/gmp-plugin/fake.info +++ b/dom/media/gmp-plugin/fake.info @@ -1,5 +1,5 @@ Name: fake Description: Fake GMP Plugin Version: 1.0 -APIs: encode-video[h264], decode-video[h264], eme-decrypt-v7[fake] +APIs: encode-video[h264:fake], decode-video[h264:fake], eme-decrypt-v7[fake] Libraries: dxva2.dll
--- a/dom/media/gtest/TestGMPRemoveAndDelete.cpp +++ b/dom/media/gtest/TestGMPRemoveAndDelete.cpp @@ -270,16 +270,17 @@ GMPRemoveTest::CreateVideoDecoder(nsCStr void GMPRemoveTest::gmp_GetVideoDecoder(nsCString aNodeId, GMPVideoDecoderProxy** aOutDecoder, GMPVideoHost** aOutHost) { nsTArray<nsCString> tags; tags.AppendElement(NS_LITERAL_CSTRING("h264")); + tags.AppendElement(NS_LITERAL_CSTRING("fake")); class Callback : public GetGMPVideoDecoderCallback { public: Callback(GMPTestMonitor* aMonitor, GMPVideoDecoderProxy** aDecoder, GMPVideoHost** aHost) : mMonitor(aMonitor), mDecoder(aDecoder), mHost(aHost) { } virtual void Done(GMPVideoDecoderProxy* aDecoder, GMPVideoHost* aHost) override { *mDecoder = aDecoder;