summaryrefslogtreecommitdiff
path: root/dxr3device.c
AgeCommit message (Collapse)Author
2010-06-29improve cDxr3Device::StillPicture stubChristian Gmeiner
2010-06-29improve cDxr3Device::Clear() by using scr hackChristian Gmeiner
2010-06-28reset pts values (aPts and vPts) in pmNone playmodeChristian Gmeiner
2010-06-28remove some OSS stuffChristian Gmeiner
2010-06-26remove silent audio hackChristian Gmeiner
2010-06-05fix playBackFrameChristian Gmeiner
We need to define a pts for the backframe to play. Else it will not get played.
2010-06-05get rid of playCountChristian Gmeiner
2010-06-05prebuffer 500ms of videoChristian Gmeiner
2010-06-04remove OSS driverChristian Gmeiner
2010-05-10keep track of current audio pts valueChristian Gmeiner
2010-04-22fix compileChristian Gmeiner
2010-04-22apply aspect ratio changesChristian Gmeiner
This commit is a little hacky, but it works for me (tm).
2010-04-16fix: Invalid number of character (() when these macros are defined: ↵Christian Gmeiner
'EM8300_IOCTL_SET_WSS' thanks to cppcheck, my friend
2010-04-16update license and remove a commentChristian Gmeiner
2010-04-16implement flush in audio driversChristian Gmeiner
2010-04-16add infrastructure to observe settings changesChristian Gmeiner
Check it out by changing BSC vales in the settings osd.
2010-04-16bring back ac3 via pcm-encapsulationChristian Gmeiner
I own hardware to test it, but at the moment no speakers are connected so I hope it really runs :) Feedback is welcome
2010-04-10rename packet to frame in commentsChristian Gmeiner
2010-04-10fix problems with channel switchingChristian Gmeiner
2010-04-10make use of AccessorsChristian Gmeiner
2010-03-18add method writeRegisterChristian Gmeiner
2010-03-06add basic PulseAudio audio suppport - NOT TESTED!Christian Gmeiner
requested by loswillios
2010-03-03Add mutex to protect play methods and setplaymode methodChristian Gmeiner
2010-02-20check if audio is ac3Christian Gmeiner
2010-02-17fix channel switchingChristian Gmeiner
2010-02-05add infrastructe to poll audiodrivers fdsChristian Gmeiner
2010-02-05small renameChristian Gmeiner
2010-02-05better user experience when switching channelChristian Gmeiner
2010-02-05update audio context and dont forget to open the audio deviceChristian Gmeiner
2010-02-05make it possible to swich audio driver via command line optsChristian Gmeiner
This makes it easier to test both audio drivers
2010-02-04keep SetPlayMode very simple -> best a/v sync after channel switchChristian Gmeiner
2010-02-04fix crash at shutdownChristian Gmeiner
We can not inherit from Singleton<cDxr3Device> as the vdr core does free the created instance. So if we use the auto_ptr based Singleton template class we get a double free.
2010-02-03add basic impl for cDxr3Device::PollChristian Gmeiner
2010-02-03merge dxr3interface into dxr3deviceChristian Gmeiner
2010-02-02add some debug hintsChristian Gmeiner
2010-02-02no need to store lastSeenPts as same as vPtsChristian Gmeiner
2010-02-02add final code to PlayVideo... a/v sync should work now..Christian Gmeiner
...but sources needs some cleanups and missing methods needs to worked out.
2010-02-02work out PlayAudio and PlayVideo methodsChristian Gmeiner
2010-02-02rewrote cDxr3Device::SetPlayMode and removed some old stuffChristian Gmeiner
2010-02-02remove old buffer and a/v sync partsChristian Gmeiner
2010-01-08add changes needed for vdr 1.7.11Christian Gmeiner
2010-01-08make use of turnPlugin(bool) in cDxr3Device::SetPlayModeChristian Gmeiner
2009-12-09change structure of iAudio classChristian Gmeiner
This change introduces some bigger changes in how analog/digital audio will be handled. VDR notifices the plugin via cDxr3Device::SetDigitalAudioDevice, if if the we need to use analog or digital audio. With digital audio I mean digital PCM. Based on the informations get via the pes packet ac3dts will be switched on or off. So the svdrp commands SDO, SAO and SAC3 do not make sense at the moment.
2009-12-09DemuxPes has a third pararmeter - isAc3. make use of itChristian Gmeiner
2009-12-08do not set audiomode in PlayAudioChristian Gmeiner
2009-12-07add basic SetDigitalAudioDevice stub methodChristian Gmeiner
As analog audio is working with vdr-1.7 I will spend some time in fixing the digital audio part (digital pcm and ac3). I will fully review the digital audio code paths and I hope I can improve them.
2009-12-02better this way... so the values are understandableChristian Gmeiner
2009-12-02implement GetVideoSize (>= vdr 1.7.10)Christian Gmeiner
first commit of a handfull to get a good >= vdr 1.7.10 support.
2009-11-18Revert "make it simpler"Christian Gmeiner
This fixes hopefully some problems with playback. This reverts commit 34176db79c1d6bca5d4f76fc34f80e00565091e4.
2009-10-16fix compileChristian Gmeiner