From 8ac9773f82aca73b841d0f252523f1468debf65e Mon Sep 17 00:00:00 2001 From: "Baik S. Hyun" Date: Sun, 14 Aug 2022 08:45:26 +0900 Subject: [PATCH] =?UTF-8?q?=EB=94=94=EB=B2=84=EA=B9=85=20=EB=A9=94?= =?UTF-8?q?=EC=84=B8=EC=A7=80=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cgo/ffmpeg/audio.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgo/ffmpeg/audio.go b/cgo/ffmpeg/audio.go index b2b900a..2307408 100644 --- a/cgo/ffmpeg/audio.go +++ b/cgo/ffmpeg/audio.go @@ -401,7 +401,7 @@ func (self *AudioEncoder) Encode(frame av.AudioFrame) (pkts [][]byte, err error) var pkt []byte if frame.SampleFormat != self.SampleFormat || frame.ChannelLayout != self.ChannelLayout || frame.SampleRate != self.SampleRate { - fmt.Printf("%+v\n", self) + //fmt.Printf("%+v\n", self) if frame, err = self.resample(frame); err != nil { return }