diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-02-25 14:33:40 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-02-25 14:33:40 +0000 |
commit | f713694f86c77a076658a3a58c2327db7ea67a2c (patch) | |
tree | 8469ba60cae00583f1f3056619b58fe205e86703 | |
parent | 362cac6d7df169431d9380ca9a75927be428d5f6 (diff) | |
download | xine-lib-f713694f86c77a076658a3a58c2327db7ea67a2c.tar.gz xine-lib-f713694f86c77a076658a3a58c2327db7ea67a2c.tar.bz2 |
this is unneeded, got_spu_packet always returns a vpts
CVS patchset: 4286
CVS date: 2003/02/25 14:33:40
-rw-r--r-- | src/dxr3/dxr3_decode_spu.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/dxr3/dxr3_decode_spu.c b/src/dxr3/dxr3_decode_spu.c index 07d342a10..3be43746e 100644 --- a/src/dxr3/dxr3_decode_spu.c +++ b/src/dxr3/dxr3_decode_spu.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: dxr3_decode_spu.c,v 1.30 2003/01/13 18:09:54 mroi Exp $ + * $Id: dxr3_decode_spu.c,v 1.31 2003/02/25 14:33:40 mroi Exp $ */ /* dxr3 spu decoder plugin. @@ -435,8 +435,6 @@ static void dxr3_spudec_decode_data(spu_decoder_t *this_gen, buf_element_t *buf) uint32_t vpts32; vpts = this->stream->metronom->got_spu_packet(this->stream->metronom, buf->pts); - /* estimate with current time, when metronom doesn't know */ - if (!vpts) vpts = this->stream->xine->clock->get_current_time(this->stream->xine->clock); #if LOG_PTS printf("dxr3_decode_spu: pts = %lld vpts = %lld\n", buf->pts, vpts); #endif |