$OpenBSD: patch-src_libreal_xine_real_video_decoder_c,v 1.1 2013/11/30 22:13:37 brad Exp $

Fix realvideo reordered pts.

--- src/libreal/xine_real_video_decoder.c.orig	Wed Nov 20 21:08:49 2013
+++ src/libreal/xine_real_video_decoder.c	Wed Nov 20 21:09:13 2013
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2000-2011 the xine project
+ * Copyright (C) 2000-2013 the xine project
  *
  * This file is part of xine, a free video player.
  *
@@ -420,7 +420,7 @@ static void realdec_decode_data (video_decoder_t *this
                                                   XINE_IMGFMT_YV12,
                                                   VO_BOTH_FIELDS);
 
-        img->pts       = this->pts;
+        img->pts       = (int64_t)transform_out.timestamp * 90;
         img->duration  = this->duration;
         _x_stream_info_set(this->stream, XINE_STREAM_INFO_FRAME_DURATION, this->duration);
         img->bad_frame = 0;
