* @throws IOException If there is an error reading the input stream.
*/
public BaseParser( InputStream input ) throws IOException
{
//pdfSource = new PushBackByteArrayStream( input );
pdfSource = new PushBackInputStream( new BufferedInputStream( input, 16384 ), 4096 );
}