mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user