summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-08add missing break and fix a small style issueChristian Gmeiner
2009-12-08do not set audiomode in PlayAudioChristian Gmeiner
2009-12-08remove IsAudioModeAC3() method - instead make use of iAudioChristian Gmeiner
2009-12-08fix broken compile - reported by Jan WilliesChristian 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-07simplify support for different ffmpeg versionsChristian Gmeiner
2009-12-07fixed bug #169Christian Gmeiner
ffmpep warns that the frame size is incorrect. To fix this warning, we calcuate the frame size based on the mpeg audio header. This calculated value is used for avcodec_decode_audio functions.
2009-12-05will come back when usedChristian Gmeiner
2009-12-05add support for avcodec_decode_audio3Christian Gmeiner
2009-12-05fix audio problems with vdr 1.7.10Christian Gmeiner
2009-12-05remove not needed bools and the logic behind themChristian Gmeiner
2009-12-05improve DecodeLpcm methodChristian Gmeiner
We got rid of the use of some dynamic memory useage and also added the reading of the channel count.
2009-12-04fix a small problem with initing the lastBitrate valueChristian Gmeiner
2009-12-04rework checking of mpeg audio headerChristian Gmeiner
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-19update HISTORY fileChristian Gmeiner
2009-11-19remove method cDxr3Interface::ReOpenAudio, as it is a pure stubChristian Gmeiner
2009-11-18Revert "make it simpler"Christian Gmeiner
This fixes hopefully some problems with playback. This reverts commit 34176db79c1d6bca5d4f76fc34f80e00565091e4.
2009-11-09some small cleanupsChristian Gmeiner
2009-10-23remove 'times' number for cDxr3Interface::PlayVideoFrame(cFixedLengthFrame* ↵Christian Gmeiner
pFrame)
2009-10-23kick PlayVideoFrame(const uint8_t* pBuf, int length, int times) method as ↵Christian Gmeiner
not needed anymore
2009-10-23this switch is not needed as this case is handled in ↵Christian Gmeiner
cDxr3DemuxDevice::DemuxPes(..)
2009-10-23play cDxr3PesFrame directlyChristian Gmeiner
2009-10-23update translation filesChristian Gmeiner
2009-10-23move for-loop counter declaration into for-loop descriptionChristian Gmeiner
2009-10-23make use of ffmpeg macroChristian Gmeiner
2009-10-22simplify bitmap cleaningChristian Gmeiner
2009-10-21fix flickering if we need to scale and osd does not changeChristian Gmeiner
The problem was that we dont called Clean() of the source bitmap if we do scaling.
2009-10-20Merge branch 'master' of community.xeatre.tv:vdr-plugin-dxr3Christian Gmeiner
2009-10-20fix green osdChristian Gmeiner
It can happen, that the OSD conistis of only one area and that we need to scale the osd later. So it is a good idea to save the used palette.
2009-10-17Note ALSA_*, remove -DUSE_XINE_SCALER.Ville Skyttä
2009-10-16fix compileChristian Gmeiner
2009-10-16add a basic stuff for StillPicutre in cDxr3DeviceChristian Gmeiner
2009-10-16current implementation of StillPicture in cDxr3DemuxDevice is wrongChristian Gmeiner
We call 3 times DemuxPes - wow. The big problem is that a still picture can not only contain a pes packet. Also I want to refactor out as much as possible from the demuxdevice as i dont like it and want to remove it in the long term.
2009-10-16header cleanupChristian Gmeiner
2009-10-16remove methods for en/disable spu mode - its not used and not neededChristian Gmeiner
2009-10-16simplify en/disabling of the spu unitChristian Gmeiner
2009-10-16remove cDxr3Interface::SingleStep methodChristian Gmeiner
Driver does _NOT_ support SingleStep playmode, so there is no need to call it. The big problem is that the driver does not return an error by this syscall. Have send a pull request to fix this issue in the driver.
2009-10-15check return value of ioctl syscallsChristian Gmeiner
2009-10-14update/add licenseChristian Gmeiner
2009-10-14remove old xine-scaler define in MakefileChristian Gmeiner
2009-10-14delete old spuencoder filesChristian Gmeiner
2009-10-14do not build dxr3colormanger and dxr3interface_spu_encoder as not needed anymoreChristian Gmeiner
2009-10-14fix code styleChristian Gmeiner
2009-10-14remove debug class cTimeChristian Gmeiner
2009-10-14manage includesChristian Gmeiner
2009-10-14remove old stuff from cDxr3Osd class and clean up related source partsChristian Gmeiner