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