예제 #1
0
파일: avutil.go 프로젝트: codesuki/go-libav
func (sfmt SampleFormat) NameOk() (string, bool) {
	return cStringToStringOk(C.av_get_sample_fmt_name((C.enum_AVSampleFormat)(sfmt)))
}
예제 #2
0
파일: utils.go 프로젝트: jasonmoo/gmf
func GetSampleFmtName(fmt int32) string {
	return C.GoString(C.av_get_sample_fmt_name(fmt))
}