Made all examples more consistent regarding unreferencing packets/frames

This commit is contained in:
Quentin Renard
2024-11-14 13:50:35 +01:00
parent b15d5d0e04
commit 6eb04b4fd9
10 changed files with 414 additions and 280 deletions

View File

@@ -42,11 +42,11 @@ func main() {
return
}
// Alloc packet
// Allocate packet
pkt := astiav.AllocPacket()
defer pkt.Free()
// Alloc input format context
// Allocate input format context
inputFormatContext := astiav.AllocFormatContext()
if inputFormatContext == nil {
log.Fatal(errors.New("main: input format context is nil"))
@@ -76,7 +76,7 @@ func main() {
// Create stream
s := &stream{}
// Alloc packet
// Allocate packet
s.bitStreamPkt = astiav.AllocPacket()
defer s.bitStreamPkt.Free()
@@ -86,7 +86,7 @@ func main() {
log.Fatal(errors.New("main: bit stream filter is nil"))
}
// Alloc bit stream filter context
// Allocate bit stream filter context
var err error
if s.bitStreamFilterContext, err = astiav.AllocBitStreamFilterContext(bsf); err != nil {
log.Fatal(fmt.Errorf("main: allocating bit stream filter context failed: %w", err))
@@ -112,24 +112,33 @@ func main() {
// Loop through packets
for {
// We use a closure to ease unreferencing the packet
if stop := func() bool {
// Read frame
if err := inputFormatContext.ReadFrame(pkt); err != nil {
if errors.Is(err, astiav.ErrEof) {
break
return true
}
log.Fatal(fmt.Errorf("main: reading frame failed: %w", err))
}
// Make sure to unreference the packet
defer pkt.Unref()
// Get stream
s, ok := streams[pkt.StreamIndex()]
if !ok {
continue
return false
}
// Filter bit stream
if err := filterBitStream(pkt, s); err != nil {
log.Fatal(fmt.Errorf("main: filtering bit stream failed: %w", err))
}
return false
}(); stop {
break
}
}
// Loop through streams
@@ -152,19 +161,27 @@ func filterBitStream(pkt *astiav.Packet, s *stream) error {
// Loop
for {
// We use a closure to ease unreferencing the packet
if stop, err := func() (bool, error) {
// Receive packet
if err := s.bitStreamFilterContext.ReceivePacket(s.bitStreamPkt); err != nil {
if errors.Is(err, astiav.ErrEof) || errors.Is(err, astiav.ErrEagain) {
break
return true, nil
}
return fmt.Errorf("main: receiving packet failed: %w", err)
return false, fmt.Errorf("main: receiving packet failed: %w", err)
}
// Make sure to unreference the packet
defer s.bitStreamPkt.Unref()
// Do something with packet
log.Printf("new filtered packet: stream %d - pts: %d", s.bitStreamPkt.StreamIndex(), s.bitStreamPkt.Pts())
// Unref packet
s.bitStreamPkt.Unref()
return false, nil
}(); err != nil {
return err
} else if stop {
break
}
}
return nil
}

View File

@@ -37,11 +37,11 @@ func main() {
return
}
// Alloc packet
// Allocate packet
pkt := astiav.AllocPacket()
defer pkt.Free()
// Alloc input format context
// Allocate input format context
inputFormatContext := astiav.AllocFormatContext()
if inputFormatContext == nil {
log.Fatal(errors.New("main: input format context is nil"))
@@ -55,7 +55,7 @@ func main() {
}
defer f.Close()
// Alloc io context
// Allocate io context
ioContext, err := astiav.AllocIOContext(
4096,
false,
@@ -88,16 +88,25 @@ func main() {
// Loop through packets
for {
// We use a closure to ease unreferencing the packet
if stop := func() bool {
// Read frame
if err := inputFormatContext.ReadFrame(pkt); err != nil {
if errors.Is(err, astiav.ErrEof) {
break
return true
}
log.Fatal(fmt.Errorf("main: reading frame failed: %w", err))
}
// Make sure to unreference the packet
defer pkt.Unref()
// Do something with the packet
log.Printf("new packet: stream %d - pts: %d", pkt.StreamIndex(), pkt.Pts())
return false
}(); stop {
break
}
}
// Success

View File

@@ -42,15 +42,15 @@ func main() {
return
}
// Alloc packet
// Allocate packet
pkt := astiav.AllocPacket()
defer pkt.Free()
// Alloc frame
// Allocate frame
f := astiav.AllocFrame()
defer f.Free()
// Alloc input format context
// Allocate input format context
inputFormatContext := astiav.AllocFormatContext()
if inputFormatContext == nil {
log.Fatal(errors.New("main: input format context is nil"))
@@ -85,7 +85,7 @@ func main() {
log.Fatal(errors.New("main: codec is nil"))
}
// Alloc codec context
// Allocate codec context
if s.decCodecContext = astiav.AllocCodecContext(s.decCodec); s.decCodecContext == nil {
log.Fatal(errors.New("main: codec context is nil"))
}
@@ -105,20 +105,25 @@ func main() {
streams[is.Index()] = s
}
// Loop through packets
// Loop
for {
// We use a closure to ease unreferencing the packet
if stop := func() bool {
// Read frame
if err := inputFormatContext.ReadFrame(pkt); err != nil {
if errors.Is(err, astiav.ErrEof) {
break
return true
}
log.Fatal(fmt.Errorf("main: reading frame failed: %w", err))
}
// Make sure to unreference the packet
defer pkt.Unref()
// Get stream
s, ok := streams[pkt.StreamIndex()]
if !ok {
continue
return false
}
// Send packet
@@ -128,16 +133,29 @@ func main() {
// Loop
for {
// We use a closure to ease unreferencing the frame
if stop := func() bool {
// Receive frame
if err := s.decCodecContext.ReceiveFrame(f); err != nil {
if errors.Is(err, astiav.ErrEof) || errors.Is(err, astiav.ErrEagain) {
break
return true
}
log.Fatal(fmt.Errorf("main: receiving frame failed: %w", err))
}
// Make sure to unreference the frame
defer f.Unref()
// Log
log.Printf("new %s frame: stream %d - pts: %d", s.inputStream.CodecParameters().MediaType(), pkt.StreamIndex(), f.Pts())
return false
}(); stop {
break
}
}
return false
}(); stop {
break
}
}

View File

@@ -69,23 +69,28 @@ func main() {
log.Fatal(fmt.Errorf("main: initializing filter failed: %w", err))
}
// Alloc packet
// Allocate packet
pkt := astiav.AllocPacket()
c.Add(pkt.Free)
// Loop through packets
for {
// We use a closure to ease unreferencing the packet
if stop := func() bool {
// Read frame
if err := inputFormatContext.ReadFrame(pkt); err != nil {
if errors.Is(err, astiav.ErrEof) {
break
return true
}
log.Fatal(fmt.Errorf("main: reading frame failed: %w", err))
}
// Make sure to unreference the packet
defer pkt.Unref()
// Invalid stream
if pkt.StreamIndex() != s.inputStream.Index() {
continue
return false
}
// Send packet
@@ -95,18 +100,31 @@ func main() {
// Loop
for {
// We use a closure to ease unreferencing the frame
if stop := func() bool {
// Receive frame
if err := s.decCodecContext.ReceiveFrame(s.decFrame); err != nil {
if errors.Is(err, astiav.ErrEof) || errors.Is(err, astiav.ErrEagain) {
break
return true
}
log.Fatal(fmt.Errorf("main: receiving frame failed: %w", err))
}
// Make sure to unreference the frame
defer s.decFrame.Unref()
// Filter frame
if err := filterFrame(s.decFrame, s); err != nil {
log.Fatal(fmt.Errorf("main: filtering frame failed: %w", err))
}
return false
}(); stop {
break
}
}
return false
}(); stop {
break
}
}
@@ -120,7 +138,7 @@ func main() {
}
func openInputFile() (err error) {
// Alloc input format context
// Allocate input format context
if inputFormatContext = astiav.AllocFormatContext(); inputFormatContext == nil {
err = errors.New("main: input format context is nil")
return
@@ -159,7 +177,7 @@ func openInputFile() (err error) {
return
}
// Alloc codec context
// Allocate codec context
if s.decCodecContext = astiav.AllocCodecContext(s.decCodec); s.decCodecContext == nil {
err = errors.New("main: codec context is nil")
return
@@ -178,7 +196,7 @@ func openInputFile() (err error) {
return
}
// Alloc frame
// Allocate frame
s.decFrame = astiav.AllocFrame()
c.Add(s.decFrame.Free)
@@ -194,14 +212,14 @@ func openInputFile() (err error) {
}
func initFilter() (err error) {
// Alloc graph
// Allocate graph
if s.filterGraph = astiav.AllocFilterGraph(); s.filterGraph == nil {
err = errors.New("main: graph is nil")
return
}
c.Add(s.filterGraph.Free)
// Alloc outputs
// Allocate outputs
outputs := astiav.AllocFilterInOut()
if outputs == nil {
err = errors.New("main: outputs is nil")
@@ -209,7 +227,7 @@ func initFilter() (err error) {
}
c.Add(outputs.Free)
// Alloc inputs
// Allocate inputs
inputs := astiav.AllocFilterInOut()
if inputs == nil {
err = errors.New("main: inputs is nil")
@@ -270,7 +288,7 @@ func initFilter() (err error) {
return
}
// Alloc frame
// Allocate frame
s.filterFrame = astiav.AllocFrame()
c.Add(s.filterFrame.Free)
return
@@ -285,21 +303,28 @@ func filterFrame(f *astiav.Frame, s *stream) (err error) {
// Loop
for {
// Unref frame
s.filterFrame.Unref()
// We use a closure to ease unreferencing the frame
if stop, err := func() (bool, error) {
// Get frame
if err = s.buffersinkContext.GetFrame(s.filterFrame, astiav.NewBuffersinkFlags()); err != nil {
if err := s.buffersinkContext.GetFrame(s.filterFrame, astiav.NewBuffersinkFlags()); err != nil {
if errors.Is(err, astiav.ErrEof) || errors.Is(err, astiav.ErrEagain) {
err = nil
break
return true, nil
}
err = fmt.Errorf("main: getting frame failed: %w", err)
return
return false, fmt.Errorf("main: getting frame failed: %w", err)
}
// Make sure to unrefernce the frame
defer s.filterFrame.Unref()
// Do something with filtered frame
log.Printf("new filtered frame: %dx%d\n", s.filterFrame.Width(), s.filterFrame.Height())
return false, nil
}(); err != nil {
return err
} else if stop {
break
}
}
return
}

View File

@@ -28,7 +28,7 @@ func main() {
*/
// Alloc frame
// Allocate frame
audioFrame := astiav.AllocFrame()
defer audioFrame.Free()
@@ -38,13 +38,13 @@ func main() {
audioFrame.SetSampleFormat(astiav.SampleFormatFlt)
audioFrame.SetSampleRate(48000)
// Alloc buffer
// Allocate buffer
align := 0
if err := audioFrame.AllocBuffer(align); err != nil {
log.Fatal(fmt.Errorf("main: allocating buffer failed: %w", err))
}
// Alloc samples
// Allocate samples
if err := audioFrame.AllocSamples(align); err != nil {
log.Fatal(fmt.Errorf("main: allocating image failed: %w", err))
}
@@ -71,7 +71,7 @@ func main() {
*/
// Alloc frame
// Allocate frame
videoFrame := astiav.AllocFrame()
defer videoFrame.Free()
@@ -80,13 +80,13 @@ func main() {
videoFrame.SetPixelFormat(astiav.PixelFormatRgba)
videoFrame.SetWidth(256)
// Alloc buffer
// Allocate buffer
align = 1
if err := videoFrame.AllocBuffer(align); err != nil {
log.Fatal(fmt.Errorf("main: allocating buffer failed: %w", err))
}
// Alloc image
// Allocate image
if err := videoFrame.AllocImage(align); err != nil {
log.Fatal(fmt.Errorf("main: allocating image failed: %w", err))
}

View File

@@ -53,19 +53,19 @@ func main() {
log.Fatal(errors.New("main: hardware device not found"))
}
// Alloc packet
// Allocate packet
pkt := astiav.AllocPacket()
defer pkt.Free()
// Alloc hardware frame
// Allocate hardware frame
hardwareFrame := astiav.AllocFrame()
defer hardwareFrame.Free()
// Alloc software frame
// Allocate software frame
softwareFrame := astiav.AllocFrame()
defer softwareFrame.Free()
// Alloc input format context
// Allocate input format context
inputFormatContext := astiav.AllocFormatContext()
if inputFormatContext == nil {
log.Fatal(errors.New("main: input format context is nil"))
@@ -106,7 +106,7 @@ func main() {
log.Fatal(errors.New("main: codec is nil"))
}
// Alloc codec context
// Allocate codec context
if s.decCodecContext = astiav.AllocCodecContext(s.decCodec); s.decCodecContext == nil {
log.Fatal(errors.New("main: codec context is nil"))
}
@@ -160,18 +160,23 @@ func main() {
// Loop through packets
for {
// We use a closure to ease unreferencing the packet
if stop := func() bool {
// Read frame
if err := inputFormatContext.ReadFrame(pkt); err != nil {
if errors.Is(err, astiav.ErrEof) {
break
return true
}
log.Fatal(fmt.Errorf("main: reading frame failed: %w", err))
}
// Make sure to unreference the packet
defer pkt.Unref()
// Get stream
s, ok := streams[pkt.StreamIndex()]
if !ok {
continue
return false
}
// Send packet
@@ -181,14 +186,19 @@ func main() {
// Loop
for {
// We use a closure to ease unreferencing frames
if stop := func() bool {
// Receive frame
if err := s.decCodecContext.ReceiveFrame(hardwareFrame); err != nil {
if errors.Is(err, astiav.ErrEof) || errors.Is(err, astiav.ErrEagain) {
break
return true
}
log.Fatal(fmt.Errorf("main: receiving frame failed: %w", err))
}
// Make sure to unreference hardware frame
defer hardwareFrame.Unref()
// Get final frame
var finalFrame *astiav.Frame
if hardwareFrame.PixelFormat() == s.hardwarePixelFormat {
@@ -197,6 +207,9 @@ func main() {
log.Fatal(fmt.Errorf("main: transferring hardware data failed: %w", err))
}
// Make sure to unreference software frame
defer softwareFrame.Unref()
// Update pts
softwareFrame.SetPts(hardwareFrame.Pts())
@@ -209,6 +222,14 @@ func main() {
// Do something with decoded frame
log.Printf("new frame: stream %d - pts: %d - transferred: %v", pkt.StreamIndex(), finalFrame.Pts(), hardwareFrame.PixelFormat() == s.hardwarePixelFormat)
return false
}(); stop {
break
}
}
return false
}(); stop {
break
}
}

View File

@@ -156,15 +156,24 @@ func main() {
// Loop
for {
// We use a closure to ease unreferencing the packet
if stop := func() bool {
// Receive packet
if err = encCodecContext.ReceivePacket(pkt); err != nil {
if errors.Is(err, astiav.ErrEof) || errors.Is(err, astiav.ErrEagain) {
break
return true
}
log.Fatal(fmt.Errorf("main: receiving packet failed: %w", err))
}
// Make sure to unreference packet
defer pkt.Unref()
// Log
log.Println("new packet")
return false
}(); stop {
break
}
}
}

View File

@@ -37,11 +37,11 @@ func main() {
return
}
// Alloc packet
// Allocate packet
pkt := astiav.AllocPacket()
defer pkt.Free()
// Alloc input format context
// Allocate input format context
inputFormatContext := astiav.AllocFormatContext()
if inputFormatContext == nil {
log.Fatal(errors.New("main: input format context is nil"))
@@ -59,7 +59,7 @@ func main() {
log.Fatal(fmt.Errorf("main: finding stream info failed: %w", err))
}
// Alloc output format context
// Allocate output format context
outputFormatContext, err := astiav.AllocOutputFormatContext(nil, "", *output)
if err != nil {
log.Fatal(fmt.Errorf("main: allocating output format context failed: %w", err))
@@ -120,26 +120,29 @@ func main() {
// Loop through packets
for {
// We use a closure to ease unreferencing packet
if stop := func() bool {
// Read frame
if err = inputFormatContext.ReadFrame(pkt); err != nil {
if errors.Is(err, astiav.ErrEof) {
break
return true
}
log.Fatal(fmt.Errorf("main: reading frame failed: %w", err))
}
// Make sure to unreference packet
defer pkt.Unref()
// Get input stream
inputStream, ok := inputStreams[pkt.StreamIndex()]
if !ok {
pkt.Unref()
continue
return false
}
// Get output stream
outputStream, ok := outputStreams[pkt.StreamIndex()]
if !ok {
pkt.Unref()
continue
return false
}
// Update packet
@@ -151,6 +154,10 @@ func main() {
if err = outputFormatContext.WriteInterleavedFrame(pkt); err != nil {
log.Fatal(fmt.Errorf("main: writing interleaved frame failed: %w", err))
}
return false
}(); stop {
break
}
}
// Write trailer

View File

@@ -79,24 +79,29 @@ func main() {
log.Fatal(fmt.Errorf("main: initializing filters failed: %w", err))
}
// Alloc packet
// Allocate packet
pkt := astiav.AllocPacket()
c.Add(pkt.Free)
// Loop through packets
for {
// We use a closure to ease unreferencing the packet
if stop := func() bool {
// Read frame
if err := inputFormatContext.ReadFrame(pkt); err != nil {
if errors.Is(err, astiav.ErrEof) {
break
return true
}
log.Fatal(fmt.Errorf("main: reading frame failed: %w", err))
}
// Make sure to unreference the packet
defer pkt.Unref()
// Get stream
s, ok := streams[pkt.StreamIndex()]
if !ok {
continue
return false
}
// Update packet
@@ -109,18 +114,31 @@ func main() {
// Loop
for {
// We use a closure to ease unreferencing the frame
if stop := func() bool {
// Receive frame
if err := s.decCodecContext.ReceiveFrame(s.decFrame); err != nil {
if errors.Is(err, astiav.ErrEof) || errors.Is(err, astiav.ErrEagain) {
break
return true
}
log.Fatal(fmt.Errorf("main: receiving frame failed: %w", err))
}
// Make sure to unreference the frame
defer s.decFrame.Unref()
// Filter, encode and write frame
if err := filterEncodeWriteFrame(s.decFrame, s); err != nil {
log.Fatal(fmt.Errorf("main: filtering, encoding and writing frame failed: %w", err))
}
return false
}(); stop {
break
}
}
return false
}(); stop {
break
}
}
@@ -147,7 +165,7 @@ func main() {
}
func openInputFile() (err error) {
// Alloc input format context
// Allocate input format context
if inputFormatContext = astiav.AllocFormatContext(); inputFormatContext == nil {
err = errors.New("main: input format context is nil")
return
@@ -184,7 +202,7 @@ func openInputFile() (err error) {
return
}
// Alloc codec context
// Allocate codec context
if s.decCodecContext = astiav.AllocCodecContext(s.decCodec); s.decCodecContext == nil {
err = errors.New("main: codec context is nil")
return
@@ -208,7 +226,7 @@ func openInputFile() (err error) {
return
}
// Alloc frame
// Allocate frame
s.decFrame = astiav.AllocFrame()
c.Add(s.decFrame.Free)
@@ -219,7 +237,7 @@ func openInputFile() (err error) {
}
func openOutputFile() (err error) {
// Alloc output format context
// Allocate output format context
if outputFormatContext, err = astiav.AllocOutputFormatContext(nil, "", *output); err != nil {
err = fmt.Errorf("main: allocating output format context failed: %w", err)
return
@@ -255,7 +273,7 @@ func openOutputFile() (err error) {
return
}
// Alloc codec context
// Allocate codec context
if s.encCodecContext = astiav.AllocCodecContext(s.encCodec); s.encCodecContext == nil {
err = errors.New("main: codec context is nil")
return
@@ -334,14 +352,14 @@ func openOutputFile() (err error) {
func initFilters() (err error) {
// Loop through output streams
for _, s := range streams {
// Alloc graph
// Allocate graph
if s.filterGraph = astiav.AllocFilterGraph(); s.filterGraph == nil {
err = errors.New("main: graph is nil")
return
}
c.Add(s.filterGraph.Free)
// Alloc outputs
// Allocate outputs
outputs := astiav.AllocFilterInOut()
if outputs == nil {
err = errors.New("main: outputs is nil")
@@ -349,7 +367,7 @@ func initFilters() (err error) {
}
c.Add(outputs.Free)
// Alloc inputs
// Allocate inputs
inputs := astiav.AllocFilterInOut()
if inputs == nil {
err = errors.New("main: inputs is nil")
@@ -428,11 +446,11 @@ func initFilters() (err error) {
return
}
// Alloc frame
// Allocate frame
s.filterFrame = astiav.AllocFrame()
c.Add(s.filterFrame.Free)
// Alloc packet
// Allocate packet
s.encPkt = astiav.AllocPacket()
c.Add(s.encPkt.Free)
}
@@ -448,35 +466,37 @@ func filterEncodeWriteFrame(f *astiav.Frame, s *stream) (err error) {
// Loop
for {
// Unref frame
s.filterFrame.Unref()
// We use a closure to unreference the frame
if stop, err := func() (bool, error) {
// Get frame
if err = s.buffersinkContext.GetFrame(s.filterFrame, astiav.NewBuffersinkFlags()); err != nil {
if err := s.buffersinkContext.GetFrame(s.filterFrame, astiav.NewBuffersinkFlags()); err != nil {
if errors.Is(err, astiav.ErrEof) || errors.Is(err, astiav.ErrEagain) {
err = nil
break
return true, nil
}
err = fmt.Errorf("main: getting frame failed: %w", err)
return
return false, fmt.Errorf("main: getting frame failed: %w", err)
}
// Make sure to unreference the frame
defer s.filterFrame.Unref()
// Reset picture type
s.filterFrame.SetPictureType(astiav.PictureTypeNone)
// Encode and write frame
if err = encodeWriteFrame(s.filterFrame, s); err != nil {
err = fmt.Errorf("main: encoding and writing frame failed: %w", err)
return
if err := encodeWriteFrame(s.filterFrame, s); err != nil {
return false, fmt.Errorf("main: encoding and writing frame failed: %w", err)
}
return false, nil
}(); err != nil {
return err
} else if stop {
break
}
}
return
}
func encodeWriteFrame(f *astiav.Frame, s *stream) (err error) {
// Unref packet
s.encPkt.Unref()
// Send frame
if err = s.encCodecContext.SendFrame(f); err != nil {
err = fmt.Errorf("main: sending frame failed: %w", err)
@@ -485,24 +505,32 @@ func encodeWriteFrame(f *astiav.Frame, s *stream) (err error) {
// Loop
for {
// We use a closure to ease unreferencing the packet
if stop, err := func() (bool, error) {
// Receive packet
if err = s.encCodecContext.ReceivePacket(s.encPkt); err != nil {
if err := s.encCodecContext.ReceivePacket(s.encPkt); err != nil {
if errors.Is(err, astiav.ErrEof) || errors.Is(err, astiav.ErrEagain) {
err = nil
break
return true, nil
}
err = fmt.Errorf("main: receiving packet failed: %w", err)
return
return false, fmt.Errorf("main: receiving packet failed: %w", err)
}
// Make sure to unreference packet
defer s.encPkt.Unref()
// Update pkt
s.encPkt.SetStreamIndex(s.outputStream.Index())
s.encPkt.RescaleTs(s.encCodecContext.TimeBase(), s.outputStream.TimeBase())
// Write frame
if err = outputFormatContext.WriteInterleavedFrame(s.encPkt); err != nil {
err = fmt.Errorf("main: writing frame failed: %w", err)
return
if err := outputFormatContext.WriteInterleavedFrame(s.encPkt); err != nil {
return false, fmt.Errorf("main: writing frame failed: %w", err)
}
return false, nil
}(); err != nil {
return err
} else if stop {
break
}
}
return

View File

@@ -42,7 +42,7 @@ func AllocIOContext(bufferSize int, writable bool, readFunc IOContextReadFunc, s
return
}
// Alloc buffer
// Allocate buffer
buffer := C.av_malloc(C.size_t(bufferSize))
if buffer == nil {
err = errors.New("astiav: allocating buffer failed")
@@ -88,7 +88,7 @@ func AllocIOContext(bufferSize int, writable bool, readFunc IOContextReadFunc, s
wf = C.int(1)
}
// Alloc io context
// Allocate io context
cic := C.avio_alloc_context((*C.uchar)(buffer), C.int(bufferSize), wf, handlerID, cReadFunc, cWriteFunc, cSeekFunc)
if cic == nil {
err = errors.New("astiav: allocating io context failed: %w")
@@ -171,7 +171,7 @@ func (ic *IOContext) Read(b []byte) (n int, err error) {
return
}
// Alloc buffer
// Allocate buffer
buf := C.av_malloc(C.size_t(len(b)))
if buf == nil {
err = errors.New("astiav: allocating buffer failed")