video analysis2.0拆分,ffmpeg封装go接口库
zhangmeng
2019-09-16 602b3b2a792d65e49dba07920b100b5feb39d36f
goffmpeg.go
@@ -108,13 +108,13 @@
}
// DecodeJPEG decode jpeg file
func (h *GoFFMPEG) DecodeJPEG(input string) ([]byte, int, int) {
func DecodeJPEG(input string) ([]byte, int, int) {
   in := C.CString(input)
   defer C.free(unsafe.Pointer(in))
   var width C.int
   var height C.int
   p := C.wrap_fn_decode_jpeg(h.ffmpeg, in, &width, &height)
   p := C.wrap_fn_decode_jpeg(in, &width, &height)
   defer C.free(p)
   if width > 0 && height > 0 {
@@ -126,6 +126,87 @@
   return nil, 0, 0
}
// FireRecorder fire recorder
func (h *GoFFMPEG) FireRecorder(sid string, id int64) {
   csid := C.CString(sid)
   defer C.free(unsafe.Pointer(csid))
   C.wrap_fn_fire_recorder(h.ffmpeg, csid, C.long(id))
}
// BuildRecorder build recorder
func (h *GoFFMPEG) BuildRecorder(sid, output string, mind, maxd int) {
   out := C.CString(output)
   defer C.free(unsafe.Pointer(out))
   csid := C.CString(sid)
   defer C.free(unsafe.Pointer(csid))
   C.wrap_fn_recorder(h.ffmpeg, csid, out, C.int(mind), C.int(maxd))
}
// GetInfoRecorder info
func (h *GoFFMPEG) GetInfoRecorder() (string, int, string) {
   var i C.int = -1
   var id *C.char
   var idl C.int
   var p *C.char
   var pl C.int
   C.wrap_fn_info_recorder(h.ffmpeg, &i, &id, &idl, &p, &pl)
   // if p == nil {
   //    return -1, ""
   // }
   gID := C.GoString(id)
   C.free(unsafe.Pointer(id))
   path := C.GoString(p)
   C.free(unsafe.Pointer(p))
   // fmt.Println("Go get info : ", path, " len: ", l)
   return gID, int(i), path
}
// BuildDecoder build decoder
func (h *GoFFMPEG) BuildDecoder() {
   C.wrap_fn_decoder(h.ffmpeg)
}
// GetPicDecoder get pic from decoder
func (h *GoFFMPEG) GetPicDecoder() ([]byte, int, int, int64) {
   var width C.int
   var height C.int
   var fid C.long
   p := C.wrap_fn_decoder_pic(h.ffmpeg, &width, &height, &fid)
   if width == 0 && height == 0 {
      return nil, 0, 0, 0
   }
   defer C.free(unsafe.Pointer(p))
   d := C.GoBytes(p, width*height*3)
   wid := int(width)
   hei := int(height)
   gfid := int64(fid)
   return d, wid, hei, gfid
}
//GetAVPacket get AVPacket
func (h *GoFFMPEG) GetAVPacket() ([]byte, int, int) {
   var key C.int
   var size C.int
   p := C.wrap_fn_get_avpacket(h.ffmpeg, &size, &key)
   if size <= 0 {
      return nil, 0, -1
   }
   defer C.free(unsafe.Pointer(p))
   d := C.GoBytes(p, size)
   s := int(size)
   k := int(key)
   return d, s, k
}
///////////////for encoder
// GoEncoder encoder