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