コード例 #1
0
ファイル: stream.go プロジェクト: zwh8800/goav
//void av_stream_set_r_frame_rate (Stream *s, Rational r)
func (s *Stream) AvStreamSetRFrameRate(r Rational) {
	C.av_stream_set_r_frame_rate((*C.struct_AVStream)(s), (C.struct_AVRational)(r))
}
コード例 #2
0
ファイル: avformat.go プロジェクト: hyhy01/goav
//void av_stream_set_r_frame_rate (AVStream *s, AVRational r)
func Av_stream_set_r_frame_rate(s *AVStream, r AVRational) {
	C.av_stream_set_r_frame_rate((*C.struct_AVStream)(s), (C.struct_AVRational)(r))
}