コード例 #1
0
ファイル: avcodec.go プロジェクト: hbdlb/goav
func (c *Codec) AvCodecGetMaxLowres() int {
	return int(C.av_codec_get_max_lowres((*C.struct_AVCodec)(c)))
}
コード例 #2
0
ファイル: avcodec.go プロジェクト: stephenwithav/goav
//int 	av_codec_get_max_lowres (const AVCodec *codec)
func Av_codec_get_max_lowres(c *AVCodec) int {
	return int(C.av_codec_get_max_lowres((*C.struct_AVCodec)(c)))
}