Remove stream_pts stuff

This was used by DVD/BD, but its usage was removed with one of the
previous commits.
This commit is contained in:
wm4
2014-07-06 19:05:59 +02:00
parent a90b5cfddf
commit acd60736ef
9 changed files with 2 additions and 32 deletions

View File

@@ -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;
}