~ubuntu-branches/ubuntu/natty/mythtv/natty

« back to all changes in this revision

Viewing changes to libs/libmythtv/videoout_vdpau.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello, Mario Limonciello, Thomas Mashos
  • Date: 2010-06-20 00:11:00 UTC
  • mfrom: (1.1.53 upstream)
  • Revision ID: james.westby@ubuntu.com-20100620001100-yulpns6qg4ksmay6
Tags: 0.23.0+fixes25138-0ubuntu1
[ Mario Limonciello ]
* new upstream checkout (25138)

[ Thomas Mashos ]
* Added missingok for mirobridge log in logrotate (LP: #581283)
* Backend now waits for udev to finish (LP: #556204)
* Added patch to properly detect dbus during compile (LP: #574877)

Show diffs side-by-side

added added

removed removed

Lines of Context:
869
869
    use_cpu |= !codec_is_vdpau_hw(test_cid);
870
870
    if (test_cid == kCodec_MPEG4_VDPAU)
871
871
        use_cpu |= !MythRenderVDPAU::IsMPEG4Available();
 
872
    if (test_cid == kCodec_H264_VDPAU)
 
873
        use_cpu |= !MythRenderVDPAU::H264DecoderSizeSupported(width, height);
872
874
    if ((dec != "vdpau") || getenv("NO_VDPAU") || use_cpu)
873
875
        return (MythCodecID)(kCodec_MPEG1 + (stream_type-1));
874
876