Skip to content

Commit

Permalink
Fix XVideo detection following XvMC removal.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Kendall authored and mark committed Dec 9, 2010
1 parent 4cd8186 commit 09390ed
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mythtv/libs/libmythtv/videoout_xv.cpp
Expand Up @@ -2129,9 +2129,10 @@ static QStringList allowed_video_renderers(
if (!curwin)
curwin = display->GetRoot();

bool xv, shm, dummy;
bool xv = true;
bool shm = true;

myth2av_codecid(myth_codec_id, dummy);
myth2av_codecid(myth_codec_id);

SetFromEnv(xv, shm);
SetFromHW(display, curwin, xv, shm);
Expand Down

0 comments on commit 09390ed

Please sign in to comment.