diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-01-08 10:01:52 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-01-08 10:01:52 +0100 |
commit | 64623e762b0d0ed28f6079ba814511274f5fb428 (patch) | |
tree | b5a8546f63e4c8ab6a33cd51bed049e5fac8dc66 /spu.h | |
parent | 45e5859ae4cb9f7fd29a2acdd23ecfc5348d55fd (diff) | |
download | vdr-64623e762b0d0ed28f6079ba814511274f5fb428.tar.gz vdr-64623e762b0d0ed28f6079ba814511274f5fb428.tar.bz2 |
Implemented displaying mandatory subtitles in the SPU decoder
Diffstat (limited to 'spu.h')
-rw-r--r-- | spu.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,7 +6,7 @@ * This code is distributed under the terms and conditions of the * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details. * - * $Id: spu.h 1.2 2004/06/12 12:56:27 kls Exp $ + * $Id: spu.h 1.3 2005/01/08 09:58:35 kls Exp $ */ #ifndef __SPU_VDR_H @@ -35,7 +35,7 @@ class cSpuDecoder { virtual void Hide(void) = 0; virtual void Draw(void) = 0; virtual bool IsVisible(void) = 0; - virtual void processSPU(uint32_t pts, uint8_t * buf) = 0; + virtual void processSPU(uint32_t pts, uint8_t * buf, bool AllowedShow = true) = 0; }; #endif // __SPU_VDR_H |