コード例 #1
0
ファイル: context.go プロジェクト: ovr/goav
//This function will cause global side data to be injected in the next packet of each stream as well as after any subsequent seek.
func (s *Context) AvFormatInjectGlobalSideData() {
	C.av_format_inject_global_side_data((*C.struct_AVFormatContext)(s))
}
コード例 #2
0
ファイル: avformat.go プロジェクト: hyhy01/goav
//void av_format_inject_global_side_data (AVFormatContext *s)
//This function will cause global side data to be injected in the next packet of each stream as well as after any subsequent seek.
func Av_format_inject_global_side_data(s *AVFormatContext) {
	C.av_format_inject_global_side_data((*C.struct_AVFormatContext)(s))
}