summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Lampard <mlampard@users.sourceforge.net>2009-01-19 07:27:06 +0000
committerMike Lampard <mlampard@users.sourceforge.net>2009-01-19 07:27:06 +0000
commitb8ca90c4fcac747e743d4df4969a68f0e18b1a93 (patch)
treed94dfb6baef275f12e1f1c55513dffea3c5177e4 /src
parent2bae6e522612ef9bfbb81b6e031e933584d748a3 (diff)
downloadxine-lib-b8ca90c4fcac747e743d4df4969a68f0e18b1a93.tar.gz
xine-lib-b8ca90c4fcac747e743d4df4969a68f0e18b1a93.tar.bz2
Return the aspect ratio property value.
Diffstat (limited to 'src')
-rw-r--r--src/video_out/video_out_vdpau.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_out/video_out_vdpau.c b/src/video_out/video_out_vdpau.c
index 7ec9a8fb8..5be71ceae 100644
--- a/src/video_out/video_out_vdpau.c
+++ b/src/video_out/video_out_vdpau.c
@@ -1348,6 +1348,8 @@ static int vdpau_get_property (vo_driver_t *this_gen, int property)
return this->zoom_x;
case VO_PROP_ZOOM_Y:
return this->zoom_y;
+ case VO_PROP_ASPECT_RATIO:
+ return this->sc.user_ratio;
}
return -1;