From: Andre Noll Date: Sun, 14 Feb 2010 21:58:12 +0000 (+0100) Subject: oggdec: Fix a thinko in post_select(). X-Git-Tag: v0.4.2~54 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=694d9ae83695e54ffbb51acb1db0496c4281f4b4;hp=694d9ae83695e54ffbb51acb1db0496c4281f4b4 oggdec: Fix a thinko in post_select(). 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. ---