mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fix mis-placed debug tracing call
PiperOrigin-RevId: 555118817
This commit is contained in:
parent
20d2ce7ce8
commit
2da3cc71e5
1 changed files with 1 additions and 1 deletions
|
|
@ -377,6 +377,7 @@ public final class DefaultVideoFrameProcessor implements VideoFrameProcessor {
|
||||||
this.finalShaderProgramWrapper = finalShaderProgramWrapper;
|
this.finalShaderProgramWrapper = finalShaderProgramWrapper;
|
||||||
finalShaderProgramWrapper.setOnInputStreamProcessedListener(
|
finalShaderProgramWrapper.setOnInputStreamProcessedListener(
|
||||||
() -> {
|
() -> {
|
||||||
|
logEvent(EVENT_VFP_FINISH_PROCESSING_INPUT_STREAM, C.TIME_END_OF_SOURCE);
|
||||||
boolean inputEndedAfterThisInputStream;
|
boolean inputEndedAfterThisInputStream;
|
||||||
synchronized (lock) {
|
synchronized (lock) {
|
||||||
processingInput = false;
|
processingInput = false;
|
||||||
|
|
@ -392,7 +393,6 @@ public final class DefaultVideoFrameProcessor implements VideoFrameProcessor {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.intermediateGlShaderPrograms = new ArrayList<>();
|
this.intermediateGlShaderPrograms = new ArrayList<>();
|
||||||
logEvent(EVENT_VFP_FINISH_PROCESSING_INPUT_STREAM, C.TIME_END_OF_SOURCE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Returns the task executor that runs video frame processing tasks. */
|
/** Returns the task executor that runs video frame processing tasks. */
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue