diff options
author | Aman Gupta <aman@tmm1.net> | 2018-08-05 12:31:07 -0700 |
---|---|---|
committer | Aman Gupta <aman@tmm1.net> | 2018-08-05 12:31:13 -0700 |
commit | e77a3e996f3b7c625400d86ea04ae3bf21a60eef (patch) | |
tree | 3293fffa745e2113d64448a43091aeeea6655a2c /libavcodec | |
parent | 1940c27c8272843f5139a25758fb92b1b1858cbe (diff) | |
download | ffmpeg-e77a3e996f3b7c625400d86ea04ae3bf21a60eef.tar.gz |
avcodec/mediacodecdec: fix spurious newline in trace logging
Signed-off-by: Aman Gupta <aman@tmm1.net>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/mediacodecdec_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mediacodecdec_common.c b/libavcodec/mediacodecdec_common.c index f235dae71b..7c2661f672 100644 --- a/libavcodec/mediacodecdec_common.c +++ b/libavcodec/mediacodecdec_common.c @@ -312,7 +312,7 @@ FF_ENABLE_DEPRECATION_WARNINGS av_log(avctx, AV_LOG_TRACE, "Frame: width=%d stride=%d height=%d slice-height=%d " - "crop-top=%d crop-bottom=%d crop-left=%d crop-right=%d encoder=%s\n" + "crop-top=%d crop-bottom=%d crop-left=%d crop-right=%d encoder=%s " "destination linesizes=%d,%d,%d\n" , avctx->width, s->stride, avctx->height, s->slice_height, s->crop_top, s->crop_bottom, s->crop_left, s->crop_right, s->codec_name, |