Example #1
0
File: context.go Project: 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)))
}
Example #2
0
//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)))
}