Example #1
0
//int64_t av_stream_get_end_pts (const Stream *st)
//Returns the pts of the last muxed packet + its duration.
func (s *Stream) AvStreamGetEndPts() int64 {
	return int64(C.av_stream_get_end_pts((*C.struct_AVStream)(s)))
}
Example #2
0
//int64_t av_stream_get_end_pts (const AVStream *st)
//Returns the pts of the last muxed packet + its duration.
func Av_stream_get_end_pts(s *AVStream) int64 {
	return int64(C.av_stream_get_end_pts((*C.struct_AVStream)(s)))
}