From e26a494c82864d3cffb3226ea6034ddeb7d9abd2 Mon Sep 17 00:00:00 2001 From: "Baik S. Hyun" Date: Tue, 29 Jun 2021 14:09:25 +0900 Subject: [PATCH] add debug msg --- cgo/ffmpeg/ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgo/ffmpeg/ffmpeg.c b/cgo/ffmpeg/ffmpeg.c index 60413ef..4566d8c 100644 --- a/cgo/ffmpeg/ffmpeg.c +++ b/cgo/ffmpeg/ffmpeg.c @@ -17,7 +17,7 @@ int decode(AVCodecContext *avctx, AVFrame *frame, uint8_t *data, int size, int * *got_frame = 0; printf("avctx: %p\n", avctx); - printf("avctx->internal: %p\n", avctx->internal); + printf("avctx->internal: %p->%p\n", avctx, avctx->internal); ret = avcodec_send_packet(avctx, &pkt);