Skip to content

Commit

Permalink
Rename vdpaubuffersize option to vdpaubuffercount.
Browse files Browse the repository at this point in the history
If someone set this before [5e04d57] the number of buffers we try to allocate would be too high when they upgrade to 0.25.
  • Loading branch information
daniel-kristjansson committed Mar 6, 2012
1 parent 9e62067 commit a9bf1d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/videoout_vdpau.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,7 @@ void VideoOutputVDPAU::ParseOptions(void)
if (!name.contains("vdpau"))
continue;

if (name.contains("vdpaubuffersize"))
if (name.contains("vdpaubuffercount"))
{
uint num = opts.toUInt();
if (MIN_PROCESS_BUFFER <= num && num <= MAX_PROCESS_BUFFER)
Expand Down

0 comments on commit a9bf1d3

Please sign in to comment.