Add end of input fix to H263 reader

This commit is contained in:
Daniele Sparano 2023-06-09 16:33:28 +01:00 committed by Ian Baker
parent f0666c605c
commit 45372911b0

View File

@ -218,7 +218,9 @@ public final class H263Reader implements ElementaryStreamReader {
@Override
public void packetFinished(boolean isEndOfInput) {
// Do nothing.
if (isEndOfInput) {
sampleReader.onDataEnd(totalBytesWritten, 0, hasOutputFormat);
}
}
/**