예제 #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)))
}