summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2001-09-10 14:18:47 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2001-09-10 14:18:47 +0000
commitd44475d5a5428d39d6dd59736fd6f424d66f80f4 (patch)
treeef3dd9f757d468cc2a2a0886bf641a084c281659
parente38e309c55fc51223643c316cc578525e4a61624 (diff)
downloadxine-lib-d44475d5a5428d39d6dd59736fd6f424d66f80f4.tar.gz
xine-lib-d44475d5a5428d39d6dd59736fd6f424d66f80f4.tar.bz2
Xv attribute setting bugfix provided by Frederic Devernay <Frederic.Devernay@sophia.inria.fr>
CVS patchset: 603 CVS date: 2001/09/10 14:18:47
-rw-r--r--src/video_out/video_out_xv.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c
index 9b789a545..201dc7f10 100644
--- a/src/video_out/video_out_xv.c
+++ b/src/video_out/video_out_xv.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out_xv.c,v 1.57 2001/08/17 16:00:02 ehasenle Exp $
+ * $Id: video_out_xv.c,v 1.58 2001/09/10 14:18:47 guenter Exp $
*
* video_out_xv.c, X11 video extension interface for xine
*
@@ -926,31 +926,31 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen) {
if(!strcmp(attr[k].name, "XV_HUE")) {
xv_check_capability (this, VO_CAP_HUE,
VO_PROP_HUE, attr[k],
- adaptor_info[i].base_id, "XV_HUE");
+ adaptor_info[adaptor_num].base_id, "XV_HUE");
printf("XV_HUE ");
}
else if(!strcmp(attr[k].name, "XV_SATURATION")) {
xv_check_capability (this, VO_CAP_SATURATION,
VO_PROP_SATURATION, attr[k],
- adaptor_info[i].base_id, "XV_SATURATION");
+ adaptor_info[adaptor_num].base_id, "XV_SATURATION");
printf("XV_SATURATION ");
}
else if(!strcmp(attr[k].name, "XV_BRIGHTNESS")) {
xv_check_capability (this, VO_CAP_BRIGHTNESS,
VO_PROP_BRIGHTNESS, attr[k],
- adaptor_info[i].base_id, "XV_BRIGHTNESS");
+ adaptor_info[adaptor_num].base_id, "XV_BRIGHTNESS");
printf("XV_BRIGHTNESS ");
}
else if(!strcmp(attr[k].name, "XV_CONTRAST")) {
xv_check_capability (this, VO_CAP_CONTRAST,
VO_PROP_CONTRAST, attr[k],
- adaptor_info[i].base_id, "XV_CONTRAST");
+ adaptor_info[adaptor_num].base_id, "XV_CONTRAST");
printf("XV_CONTRAST ");
}
else if(!strcmp(attr[k].name, "XV_COLORKEY")) {
xv_check_capability (this, VO_CAP_COLORKEY,
VO_PROP_COLORKEY, attr[k],
- adaptor_info[i].base_id, "XV_COLORKEY");
+ adaptor_info[adaptor_num].base_id, "XV_COLORKEY");
printf("video_out_xv: colorkey is %08x\n", this->props[VO_PROP_COLORKEY].value);
}
}