예제 #1
0
파일: context.go 프로젝트: ovr/goav
func (s *Context) AvFormatGetSubtitleCodec() *AvCodec {
	return (*AvCodec)(C.av_format_get_subtitle_codec((*C.struct_AVFormatContext)(s)))
}
예제 #2
0
파일: avformat.go 프로젝트: hyhy01/goav
//AVCodec * av_format_get_subtitle_codec (const AVFormatContext *s)
func Av_format_get_subtitle_codec(s *AVFormatContext) *AVCodec {
	return (*AVCodec)(C.av_format_get_subtitle_codec((*C.struct_AVFormatContext)(s)))
}