コード例 #1
0
ファイル: context.go プロジェクト: gale320/goav
func (ctxt *Context) AvCodecSetPktTimebase(r Rational) {
	C.av_codec_set_pkt_timebase((*C.struct_AVCodecContext)(ctxt), (C.struct_AVRational)(r))
}
コード例 #2
0
ファイル: avcodec.go プロジェクト: stephenwithav/goav
//void av_codec_set_pkt_timebase (AVCodecContext *avctx, AVRational val)
func Av_codec_set_pkt_timebase(ctxt *AVCodecContext, r AVRational) {
	C.av_codec_set_pkt_timebase((*C.struct_AVCodecContext)(ctxt), (C.struct_AVRational)(r))
}