Merge pull request #1876 from colinkho:extinputgetreader

PiperOrigin-RevId: 701021720
This commit is contained in:
Copybara-Service 2024-11-28 07:36:28 -08:00
commit 55c81f6ed6

View File

@ -205,6 +205,11 @@ public final class DefaultExtractorInput implements ExtractorInput {
throw e; throw e;
} }
/** Returns the wrapped {@link DataReader} instance. */
public DataReader getDataReader() {
return dataReader;
}
/** /**
* Ensures {@code peekBuffer} is large enough to store at least {@code length} bytes from the * Ensures {@code peekBuffer} is large enough to store at least {@code length} bytes from the
* current peek position. * current peek position.