コード例 #1
0
ファイル: context.go プロジェクト: gale320/goav
func (ctxt *Context) AvCodecSetSeekPreroll(i int) {
	C.av_codec_set_seek_preroll((*C.struct_AVCodecContext)(ctxt), C.int(i))
}
コード例 #2
0
ファイル: avcodec.go プロジェクト: stephenwithav/goav
//void 	av_codec_set_seek_preroll (AVCodecContext *avctx, int val)
func Av_codec_set_seek_preroll(ctxt *AVCodecContext, i int) {
	C.av_codec_set_seek_preroll((*C.struct_AVCodecContext)(ctxt), C.int(i))
}