[FFmpeg-cvslog] examples/encode_video: add log
Stefano Sabatini
git at videolan.org
Wed May 31 16:47:31 EEST 2017
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Tue May 23 11:50:40 2017 +0200| [002dbc5a1f2a6008acd29bd7cfa6733a745224bf] | committer: Stefano Sabatini
examples/encode_video: add log
This helps to visualize how the send/receive API works.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=002dbc5a1f2a6008acd29bd7cfa6733a745224bf
---
doc/examples/encode_video.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/doc/examples/encode_video.c b/doc/examples/encode_video.c
index d2075c12bf..107bea2992 100644
--- a/doc/examples/encode_video.c
+++ b/doc/examples/encode_video.c
@@ -42,6 +42,9 @@ static void encode(AVCodecContext *enc_ctx, AVFrame *frame, AVPacket *pkt,
int ret;
/* send the frame to the encoder */
+ if (frame)
+ printf("Send frame %3"PRId64"\n", frame->pts);
+
ret = avcodec_send_frame(enc_ctx, frame);
if (ret < 0) {
fprintf(stderr, "Error sending a frame for encoding\n");
@@ -57,7 +60,7 @@ static void encode(AVCodecContext *enc_ctx, AVFrame *frame, AVPacket *pkt,
exit(1);
}
- printf("Write frame %3"PRId64" (size=%5d)\n", pkt->pts, pkt->size);
+ printf("Write packet %3"PRId64" (size=%5d)\n", pkt->pts, pkt->size);
fwrite(pkt->data, 1, pkt->size, outfile);
av_packet_unref(pkt);
}
More information about the ffmpeg-cvslog
mailing list