]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
oggdec: Fix a thinko in post_select().
authorAndre Noll <maan@systemlinux.org>
Sun, 14 Feb 2010 21:58:12 +0000 (22:58 +0100)
committerAndre Noll <maan@systemlinux.org>
Sun, 14 Feb 2010 21:58:12 +0000 (22:58 +0100)
The old code broke out of the decoding loop if btr_node_status() returned zero
which is true if  no more input data is available for decoding or we already
have decoded more than 640K. However, in the first case there might still be
decoded data available to be passed to the child nodes and we should pass
that data as quick as possible to avoid buffer underruns.

So call btr_get_output_queue_size() rather than btr_node_status() to detect
the second case.


No differences found