summaryrefslogtreecommitdiffstats
path: root/demux/packet.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-07-06 19:05:59 +0200
committerwm4 <wm4@nowhere>2014-07-06 19:05:59 +0200
commitacd60736ef62c7ea681d69c0c7b26142509aa1cb (patch)
tree98288002d978dd5f64dbd0f8603e42ec120f9511 /demux/packet.c
parenta90b5cfddf88f73b0b46318e817b00aa6658371d (diff)
downloadmpv-acd60736ef62c7ea681d69c0c7b26142509aa1cb.tar.bz2
mpv-acd60736ef62c7ea681d69c0c7b26142509aa1cb.tar.xz
Remove stream_pts stuff
This was used by DVD/BD, but its usage was removed with one of the previous commits.
Diffstat (limited to 'demux/packet.c')
-rw-r--r--demux/packet.c2
1 files changed, 0 insertions, 2 deletions
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;
}