diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-12-21 19:20:09 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-12-21 19:20:09 +0000 |
commit | 07a4b04902489c6052587c9bba71a4d537e14c10 (patch) | |
tree | 9ece80ab3a81d382518fe3e4da139d1e74425ac9 | |
parent | a96fcd8f3c612a89f78579c4a3417e216eae7445 (diff) | |
download | xine-lib-07a4b04902489c6052587c9bba71a4d537e14c10.tar.gz xine-lib-07a4b04902489c6052587c9bba71a4d537e14c10.tar.bz2 |
ops, my fault. without this line dvd menus are broken for xshm.
CVS patchset: 3619
CVS date: 2002/12/21 19:20:09
-rw-r--r-- | src/xine-engine/video_out.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index b5c50bcd1..9ab9ecc95 100644 --- a/src/xine-engine/video_out.c +++ b/src/xine-engine/video_out.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.c,v 1.120 2002/12/21 12:56:52 miguelfreitas Exp $ + * $Id: video_out.c,v 1.121 2002/12/21 19:20:09 miguelfreitas Exp $ * * frame allocation / queuing / scheduling / output functions */ @@ -447,6 +447,8 @@ static vo_frame_t * duplicate_frame( vos_t *this, vo_frame_t *img ) { dupl->bad_frame = 0; dupl->pts = 0; dupl->vpts = 0; + dupl->copy_called = 0; + dupl->duration = img->duration; dupl->stream = img->stream; |