From bcd63baee9119ebebae25bb6b0d58abe0b8544fa Mon Sep 17 00:00:00 2001 From: "Baik S. Hyun" Date: Wed, 30 Jun 2021 11:30:17 +0900 Subject: [PATCH] comment out dbg msg --- cgo/ffmpeg/ffmpeg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cgo/ffmpeg/ffmpeg.c b/cgo/ffmpeg/ffmpeg.c index 0737fc1..c48090a 100644 --- a/cgo/ffmpeg/ffmpeg.c +++ b/cgo/ffmpeg/ffmpeg.c @@ -16,8 +16,8 @@ int decode(AVCodecContext *avctx, AVFrame *frame, uint8_t *data, int size, int * *got_frame = 0; - printf("avctx: %p, data: %p, size: %d\n", avctx, data, size); - printf("avctx->internal: %p->%p\n", avctx, avctx->internal); + //printf("avctx: %p, data: %p, size: %d\n", avctx, data, size); + //printf("avctx->internal: %p->%p\n", avctx, avctx->internal); ret = avcodec_send_packet(avctx, &pkt);