mirror of
https://github.com/samsonjs/media.git
synced 2026-04-12 12:25:47 +00:00
Fix errors in Transformer demo
PiperOrigin-RevId: 393951084
This commit is contained in:
parent
3183183d54
commit
882957228c
1 changed files with 1 additions and 1 deletions
|
|
@ -333,7 +333,7 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
|
|||
/** Returns the {@link BufferInfo} associated with the current output buffer, if available. */
|
||||
@Nullable
|
||||
public BufferInfo getOutputBufferInfo() {
|
||||
return maybeDequeueAndSetOutputBuffer() ? outputBufferInfo : null;
|
||||
return maybeDequeueOutputBuffer() ? outputBufferInfo : null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue