示例#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)))
}