コード例 #1
0
ファイル: context.go プロジェクト: gale320/goav
func (ctxt *Context) AvCodecGetPktTimebase() Rational {
	return (Rational)(C.av_codec_get_pkt_timebase((*C.struct_AVCodecContext)(ctxt)))
}
コード例 #2
0
ファイル: avcodec.go プロジェクト: stephenwithav/goav
//AVRational av_codec_get_pkt_timebase (const AVCodecContext *avctx)
func Av_codec_get_pkt_timebase(ctxt *AVCodecContext) AVRational {
	return (AVRational)(C.av_codec_get_pkt_timebase((*C.struct_AVCodecContext)(ctxt)))
}