diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-04-14 16:38:40 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-04-17 10:24:59 -0400 |
commit | 32625118c27041265d25811c00d25ab7e82fb340 (patch) | |
tree | f35ac3f6e829a06aa8133e16e832630a27706d41 /src/radeon_textured_video.c | |
parent | adf0912006b4f1597784dbfcc563d5c6d1c5667d (diff) |
tex vid: fix attribute setup typo for XV_COLORSPACE
Diffstat (limited to 'src/radeon_textured_video.c')
-rw-r--r-- | src/radeon_textured_video.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_textured_video.c b/src/radeon_textured_video.c index 542fc2ae..3626e8d7 100644 --- a/src/radeon_textured_video.c +++ b/src/radeon_textured_video.c @@ -677,7 +677,7 @@ static XF86AttributeRec Attributes_r200[NUM_ATTRIBUTES_R200+1] = {XvSettable | XvGettable, -1000, 1000, "XV_CONTRAST"}, {XvSettable | XvGettable, -1000, 1000, "XV_SATURATION"}, {XvSettable | XvGettable, -1000, 1000, "XV_HUE"}, - {XvSettable | XvGettable, 100, 10000, "XV_COLORSPACE"}, + {XvSettable | XvGettable, 0, 1, "XV_COLORSPACE"}, {0, 0, 0, NULL} }; @@ -715,7 +715,7 @@ static XF86AttributeRec Attributes_r600[NUM_ATTRIBUTES_R600+1] = {XvSettable | XvGettable, -1000, 1000, "XV_CONTRAST"}, {XvSettable | XvGettable, -1000, 1000, "XV_SATURATION"}, {XvSettable | XvGettable, -1000, 1000, "XV_HUE"}, - {XvSettable | XvGettable, 100, 10000, "XV_COLORSPACE"}, + {XvSettable | XvGettable, 0, 1, "XV_COLORSPACE"}, {0, 0, 0, NULL} }; |