mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 23:31:56 +00:00
Bug 1322650 - Don't use inout param for Surface in ICodec r=jolin
It's unnecessary, and the serialization goes wrong with GeckoSurface on the return trip. MozReview-Commit-ID: 9DUMoLQFhlv
This commit is contained in:
parent
e92f96eef9
commit
086a858585
@ -13,7 +13,7 @@ import org.mozilla.gecko.media.Sample;
|
||||
|
||||
interface ICodec {
|
||||
void setCallbacks(in ICodecCallbacks callbacks);
|
||||
boolean configure(in FormatParam format, inout Surface surface, int flags, in String drmStubId);
|
||||
boolean configure(in FormatParam format, in Surface surface, int flags, in String drmStubId);
|
||||
boolean isAdaptivePlaybackSupported();
|
||||
void start();
|
||||
void stop();
|
||||
|
Loading…
Reference in New Issue
Block a user