diff options
author | Mike Lampard <mlampard@users.sourceforge.net> | 2009-01-19 07:27:06 +0000 |
---|---|---|
committer | Mike Lampard <mlampard@users.sourceforge.net> | 2009-01-19 07:27:06 +0000 |
commit | b8ca90c4fcac747e743d4df4969a68f0e18b1a93 (patch) | |
tree | d94dfb6baef275f12e1f1c55513dffea3c5177e4 | |
parent | 2bae6e522612ef9bfbb81b6e031e933584d748a3 (diff) | |
download | xine-lib-b8ca90c4fcac747e743d4df4969a68f0e18b1a93.tar.gz xine-lib-b8ca90c4fcac747e743d4df4969a68f0e18b1a93.tar.bz2 |
Return the aspect ratio property value.
-rw-r--r-- | src/video_out/video_out_vdpau.c | 2 |
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; |