From acd60736ef62c7ea681d69c0c7b26142509aa1cb Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 6 Jul 2014 19:05:59 +0200 Subject: Remove stream_pts stuff This was used by DVD/BD, but its usage was removed with one of the previous commits. --- demux/packet.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'demux/packet.c') diff --git a/demux/packet.c b/demux/packet.c index 82de1a6996..77ea78f7cc 100644 --- a/demux/packet.c +++ b/demux/packet.c @@ -46,7 +46,6 @@ static struct demux_packet *create_packet(size_t len) .pts = MP_NOPTS_VALUE, .dts = MP_NOPTS_VALUE, .duration = -1, - .stream_pts = MP_NOPTS_VALUE, .pos = -1, .stream = -1, }; @@ -119,6 +118,5 @@ struct demux_packet *demux_copy_packet(struct demux_packet *dp) new->pts = dp->pts; new->dts = dp->dts; new->duration = dp->duration; - new->stream_pts = dp->stream_pts; return new; } -- cgit v1.2.3