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