summaryrefslogtreecommitdiff
path: root/src/video_out/video_out_xv.c
diff options
context:
space:
mode:
authorMatthias Hopf <mat@mshopf.de>2002-06-10 21:42:44 +0000
committerMatthias Hopf <mat@mshopf.de>2002-06-10 21:42:44 +0000
commit73aa96df582d3f343cc94b8f1a457fed45cc0020 (patch)
tree10414dd3d75d70010d223a84644e66e2aba7ff47 /src/video_out/video_out_xv.c
parenta2f5313ae88d2c151d0096b1272fd2d6e83db783 (diff)
downloadxine-lib-73aa96df582d3f343cc94b8f1a457fed45cc0020.tar.gz
xine-lib-73aa96df582d3f343cc94b8f1a457fed45cc0020.tar.bz2
Added TV mode switching support for nvtvd from Dirk Thierbach.
CVS patchset: 2061 CVS date: 2002/06/10 21:42:44
Diffstat (limited to 'src/video_out/video_out_xv.c')
-rw-r--r--src/video_out/video_out_xv.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c
index d6e9b1e8d..1e21e816f 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.118 2002/06/09 08:30:58 esnel Exp $
+ * $Id: video_out_xv.c,v 1.119 2002/06/10 21:42:45 mshopf Exp $
*
* video_out_xv.c, X11 video extension interface for xine
*
@@ -134,6 +134,7 @@ struct xv_driver_s {
int delivered_width;
int delivered_height;
int delivered_ratio_code;
+ int delivered_duration;
/*
* displayed part of delivered images,
@@ -847,6 +848,7 @@ static void xv_display_frame (vo_driver_t *this_gen, vo_frame_t *frame_gen) {
this->delivered_width = frame->width;
this->delivered_height = frame->height;
this->delivered_ratio_code = frame->ratio_code;
+ this->delivered_duration = frame->vo_frame.duration;
xv_compute_ideal_size (this);