Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-04-10 | fix problems with channel switching | Christian Gmeiner | |
2010-04-10 | Makefile adjustments for VDR 1.7.13. | Ville Skyttä | |
2010-04-10 | make use of Accessors | Christian Gmeiner | |
2010-03-18 | a small cleanup | Christian Gmeiner | |
2010-03-18 | add method writeRegister | Christian Gmeiner | |
2010-03-06 | add basic PulseAudio audio suppport - NOT TESTED! | Christian Gmeiner | |
requested by loswillios | |||
2010-03-03 | Add mutex to protect play methods and setplaymode method | Christian Gmeiner | |
2010-02-20 | check if audio is ac3 | Christian Gmeiner | |
2010-02-17 | fix channel switching | Christian Gmeiner | |
2010-02-05 | there is no need to store SampleContext in pesframe | Christian Gmeiner | |
2010-02-05 | add infrastructe to poll audiodrivers fds | Christian Gmeiner | |
2010-02-05 | small rename | Christian Gmeiner | |
2010-02-05 | better user experience when switching channel | Christian Gmeiner | |
2010-02-05 | update audio context and dont forget to open the audio device | Christian Gmeiner | |
2010-02-05 | make it possible to swich audio driver via command line opts | Christian Gmeiner | |
This makes it easier to test both audio drivers | |||
2010-02-05 | respect volume setting | Christian Gmeiner | |
2010-02-04 | keep SetPlayMode very simple -> best a/v sync after channel switch | Christian Gmeiner | |
2010-02-04 | fix crash at shutdown | Christian 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-03 | add basic impl for cDxr3Device::Poll | Christian Gmeiner | |
2010-02-03 | merge dxr3interface into dxr3device | Christian Gmeiner | |
2010-02-02 | add some debug hints | Christian Gmeiner | |
2010-02-02 | make use of WriteAllOrNothing | Christian Gmeiner | |
2010-02-02 | various cleanups | Christian Gmeiner | |
2010-02-02 | set directly scr and pts vales, with out the need for m_offset | Christian Gmeiner | |
2010-02-02 | cDxr3Interface::IsOssAudio is not needed anymore | Christian Gmeiner | |
This method does not work with newer dxr3 drivers, as they support both audio interfaces (oss/alsa) at the same time. | |||
2010-02-02 | no need to store lastSeenPts as same as vPts | Christian Gmeiner | |
2010-02-02 | add 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-02 | work out PlayAudio and PlayVideo methods | Christian Gmeiner | |
2010-02-02 | rewrote cDxr3Device::SetPlayMode and removed some old stuff | Christian Gmeiner | |
2010-02-02 | add method to decode a given frame | Christian Gmeiner | |
The method decode(...) will write the decoded audio frame directly to the card via oss or alsa audio interface. | |||
2010-02-02 | remove old buffer and a/v sync parts | Christian Gmeiner | |
2010-01-09 | add first ro Accessor at cFixedLengthFrame | Christian Gmeiner | |
2010-01-09 | there is no need for m_count variable | Christian Gmeiner | |
2010-01-09 | add assignment operator for ro (read only) Accessors | Christian Gmeiner | |
2010-01-09 | add Accessors for pts in cFixedLengthFrame | Christian Gmeiner | |
2010-01-09 | there is no need to store the type of a buffer | Christian Gmeiner | |
The type is known by the used buffer. | |||
2010-01-09 | extend Accessors template to support rw and ro variables | Christian Gmeiner | |
2010-01-09 | make more use of Accessors | Christian Gmeiner | |
2010-01-08 | add changes needed for vdr 1.7.11 | Christian Gmeiner | |
2010-01-08 | make use of turnPlugin(bool) in cDxr3Device::SetPlayMode | Christian Gmeiner | |
2010-01-08 | code style changes... nothing more | Christian Gmeiner | |
2010-01-08 | kick m_dxr3Device member from cDxr3DemuxDevice and use singleton instead | Christian Gmeiner | |
2010-01-07 | check for max sizes supported by syncbuffer | Christian Gmeiner | |
2010-01-07 | fix return value | Jan Willies | |
Trivial fix to make the plugin compile again Signed-off-by: Jan Willies <jan@willies.info> Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com> | |||
2010-01-06 | fix bug #223 by adding a command line option to enable automatic fw loading | Christian Gmeiner | |
By default the vdr-dxr3-plugin does not load the fw automatically any more, as on recent linux systems the fw gets loaded when the em8300 driver module gets loaded. So we dont need to load the fw. But for older systems there is the command option -f/--firmware-loading to tell the plugin to load the firmware at startup. | |||
2010-01-04 | upps | Christian Gmeiner | |
2010-01-04 | add missing virtual and update licence | Christian Gmeiner | |
2010-01-04 | rename Uncopyable.h to uncopyable.h | Christian Gmeiner | |
2010-01-04 | update licence | Christian Gmeiner | |
2010-01-04 | rework cSettings class to use a new way for setters and getters | Christian Gmeiner | |
The basic idea behind this commit is to get rid of those bad looking getters and setters, where we have no logic used by them. |