예제 #1
0
파일: avcodec.go 프로젝트: hbdlb/goav
func (c *Codec) AvCodecIsDecoder() int {
	return int(C.av_codec_is_decoder((*C.struct_AVCodec)(c)))
}
예제 #2
0
//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)))
}