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:
James Willcox 2017-03-03 15:19:04 -06:00
parent e92f96eef9
commit 086a858585

View File

@ -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();