diff options
author | Rick Kern <kernrj@gmail.com> | 2016-06-16 21:22:13 -0400 |
---|---|---|
committer | Rick Kern <kernrj@gmail.com> | 2016-06-16 21:22:13 -0400 |
commit | 8b069b1cd516bca60aeec612ab1d47e1d77ffb68 (patch) | |
tree | 09d61742778dd9c58602335b87a48a8e53cabc14 /libavcodec | |
parent | 2584299ae68813e68dd8918911d3190d524eb4cc (diff) | |
download | ffmpeg-8b069b1cd516bca60aeec612ab1d47e1d77ffb68.tar.gz |
lavc/videotoolboxenc: remove unnecessary logging
Signed-off-by: Rick Kern <kernrj@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/videotoolboxenc.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/videotoolboxenc.c b/libavcodec/videotoolboxenc.c index d07419f733..4345ca37b2 100644 --- a/libavcodec/videotoolboxenc.c +++ b/libavcodec/videotoolboxenc.c @@ -1871,14 +1871,10 @@ static int vtenc_populate_extradata(AVCodecContext *avctx, goto pe_cleanup; } - av_log(avctx, AV_LOG_INFO, "Completing\n"); - //Populates extradata - output frames are flushed and param sets are available. status = VTCompressionSessionCompleteFrames(vtctx->session, kCMTimeIndefinite); - - av_log(avctx, AV_LOG_INFO, "Completed: %d\n", status); if (status) goto pe_cleanup; @@ -1902,8 +1898,6 @@ pe_cleanup: av_frame_unref(frame); av_frame_free(&frame); - av_log(avctx, AV_LOG_INFO, "status %d ed %p size %d\n", status, avctx->extradata, avctx->extradata_size); - av_assert0(status != 0 || (avctx->extradata && avctx->extradata_size > 0)); return status; |