mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Removed some unneeded code and fixed access to unallocated memory in cEvent::FixEpgBugs() (thanks to Wolfgang Rohdewald). - Avoiding unnecessary calls to SetPid() in cDvbDevice::SetAudioTrackDevice() (thanks to Marco Schlüßler). - No longer calling EnsureAudioTrack() in cDevice::SetChannel() if a Transfer Mode is started, to avoid setting the audio PID on the primary device (thanks to Marco Schlüßler for pointing this out). - Replaced the call to system("sync") in SpinUpDisk() with fdatasync(f) to avoid problems on NPTL systems (thanks to Chris Warren for pointing this out). - Increased POLLTIMEOUTS_BEFORE_DEVICECLEAR in transfer.c to 6 to avoid problems with the larger buffer reserve (thanks to Marco Schlüßler). - Fixed the call to SetVideoFormat() in cDvbDevice::cDvbDevice() (parameter is _bool_). - Added support for setting the video display mode (thanks to Marco Schlüßler). - The new setup option "DVB/Video display format" can be used to define which display format to use for playing wide screen video on a 4:3 tv set. - Changed MAXDPIDS to 16 (8xAC3 + 8xDTS) (thanks to Werner Fink for pointing this out). - Completed Dutch language texts (thanks to Hans Dingemans). - Added 'smi' to the Finnish language codes (thanks to Rolf Ahrenberg). - Fixed ensuring there is a current audio track in case there is only one track (thanks to Werner Fink for reporting this one). - Improved automatic audio track selection. - Keeping the track language codes and descriptions in Transfer Mode (thanks to Luca Olivetti). - Fixed handling repeated kAudio keys. - Improved displaying the the current audio track in the ST:TNG channel display.
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
/*
|
|
* SPU Decoder Prototype
|
|
*
|
|
* Copyright (C) 2001.2002 Andreas Schultz <aschultz@warp10.net>
|
|
*
|
|
* 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.4 2005/02/20 11:21:31 kls Exp $
|
|
*/
|
|
|
|
#ifndef __SPU_VDR_H
|
|
#define __SPU_VDR_H
|
|
|
|
#include <inttypes.h>
|
|
|
|
// --- cSpuDecoder -------------------------------------------
|
|
|
|
class cSpuDecoder {
|
|
public:
|
|
typedef enum { eSpuNormal, eSpuLetterBox, eSpuPanAndScan } eScaleMode;
|
|
public:
|
|
// cSpuDecoder();
|
|
virtual ~cSpuDecoder();
|
|
|
|
virtual int setTime(uint32_t pts) = 0;
|
|
|
|
virtual cSpuDecoder::eScaleMode getScaleMode(void) = 0;
|
|
virtual void setScaleMode(cSpuDecoder::eScaleMode ScaleMode) = 0;
|
|
virtual void setPalette(uint32_t * pal) = 0;
|
|
virtual void setHighlight(uint16_t sx, uint16_t sy,
|
|
uint16_t ex, uint16_t ey,
|
|
uint32_t palette) = 0;
|
|
virtual void clearHighlight(void) = 0;
|
|
virtual void Empty(void) = 0;
|
|
virtual void Hide(void) = 0;
|
|
virtual void Draw(void) = 0;
|
|
virtual bool IsVisible(void) = 0;
|
|
virtual void processSPU(uint32_t pts, uint8_t * buf, bool AllowedShow = true) = 0;
|
|
};
|
|
|
|
#endif // __SPU_VDR_H
|