From 0094472cda6eefa9b5363ad844daf0fcfd00c326 Mon Sep 17 00:00:00 2001 From: Thomas Reufer Date: Mon, 10 Feb 2014 21:53:25 +0100 Subject: 2014-02-10: Version 0.0.8 ------------------------- - new: - image grabbing - implemented proper handling in case of buffer stall - reporting video size - support letter box and center cut out set by VDR - support video scaling - fixed: - increased number of audio buffer to fix replay issues with PES recordings - return correct number of audio bytes written from PlayAudio() - fixed start up in audio only mode - fixed still image with deinterlacer - fixed crash during deinitialization - fixed crash when copying 5.1 PCM audio - use cThread::mutex for locking - implement cOvgOsd::SetAreas() and cOvgOsd::SetActive() - audio codec clean up, drop AAC-LATM and rename ADTS to AAC - audio decoding thread clean up - known issues - StillImage() will cause buffer stall - artifacts with StillImage() and PES recordings - speed to fast when fast replaying audio only recordings --- rpihddevice.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'rpihddevice.c') diff --git a/rpihddevice.c b/rpihddevice.c index 03c0813..5f22b39 100644 --- a/rpihddevice.c +++ b/rpihddevice.c @@ -10,10 +10,10 @@ #include "ovgosd.h" #include "omxdevice.h" #include "setup.h" -#include "types.h" +#include "tools.h" -static const char *VERSION = "0.0.7"; -static const char *DESCRIPTION = "HD output device for Raspberry Pi"; +static const char *VERSION = "0.0.8"; +static const char *DESCRIPTION = tr("HD output device for Raspberry Pi"); class cDummyDevice : cDevice { @@ -81,7 +81,7 @@ bool cPluginRpiHdDevice::Initialize(void) // test whether MPEG2 license is available if (!cRpiSetup::IsVideoCodecSupported(cVideoCodec::eMPEG2)) - dsyslog("rpihddevice: MPEG2 video decoder not enabled!"); + DLOG("MPEG2 video decoder not enabled!"); m_device = new cOmxDevice(&OnPrimaryDevice); @@ -98,8 +98,6 @@ bool cPluginRpiHdDevice::Start(void) void cPluginRpiHdDevice::Stop(void) { - if (m_device) - m_device->DeInit(); } cMenuSetupPage* cPluginRpiHdDevice::SetupMenu(void) -- cgit v1.2.3