示例#1
0
文件: stream.go 项目: zwh8800/goav
//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)))
}
示例#2
0
文件: avformat.go 项目: hyhy01/goav
//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)))
}