예제 #1
0
파일: context.go 프로젝트: ovr/goav
//Write a uncoded frame to an output media file.
func (s *Context) AvWriteUncodedFrame(si int, f *Frame) int {
	return int(C.av_write_uncoded_frame((*C.struct_AVFormatContext)(s), C.int(si), (*C.struct_AVFrame)(f)))
}
예제 #2
0
파일: avformat.go 프로젝트: hyhy01/goav
//int av_write_uncoded_frame (AVFormatContext *s, int stream_index, AVFrame *frame)
//Write a uncoded frame to an output media file.
func Av_write_uncoded_frame(s *AVFormatContext, si int, f *AVFrame) int {
	return int(C.av_write_uncoded_frame((*C.struct_AVFormatContext)(s), C.int(si), (*C.struct_AVFrame)(f)))
}