From 7d6fb6c905dbd842eead370f2412a55eda31cecb Mon Sep 17 00:00:00 2001 From: Guenter Bartsch Date: Wed, 12 Sep 2001 22:18:47 +0000 Subject: further tweaks and patches for menu support: new buftypes (BUF_CONTROL_DISCONTINUITY,BUF_CONTROL_NOP,BUF_CONTROL_AUDIO_CHANNEL,BUF_CONTROL_SPU_CHANNEL) so input plugins can enhance their communication with the xine engine (regarding pts continuities for example) - not all is implemented yet, but what is implemented is working pretty well - at least for me ;)) CVS patchset: 627 CVS date: 2001/09/12 22:18:47 --- src/xine-engine/audio_decoder.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'src/xine-engine/audio_decoder.c') diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c index eeb542619..74a88c2df 100644 --- a/src/xine-engine/audio_decoder.c +++ b/src/xine-engine/audio_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_decoder.c,v 1.38 2001/09/12 17:33:34 guenter Exp $ + * $Id: audio_decoder.c,v 1.39 2001/09/12 22:18:47 guenter Exp $ * * * functions that implement audio decoding @@ -124,7 +124,17 @@ void *audio_decoder_loop (void *this_gen) { } running = 0; break; - + + case BUF_VIDEO_FILL: + break; + + case BUF_CONTROL_NOP: + break; + + case BUF_CONTROL_DISCONTINUITY: + this->metronom->expect_audio_discontinuity (this->metronom); + break; + default: while (this->audio_mute==2) { -- cgit v1.2.3