예제 #1
0
파일: stream.go 프로젝트: zwh8800/goav
//struct CodecParserContext * av_stream_get_parser (const Stream *s)
func (s *Stream) AvStreamGetParser() *CodecParserContext {
	return (*CodecParserContext)(C.av_stream_get_parser((*C.struct_AVStream)(s)))
}
예제 #2
0
파일: avformat.go 프로젝트: hyhy01/goav
//struct AVCodecParserContext * av_stream_get_parser (const AVStream *s)
func Av_stream_get_parser(s *AVStream) *AVCodecParserContext {
	return (*AVCodecParserContext)(C.av_stream_get_parser((*C.struct_AVStream)(s)))
}