diff options
author | Aman Gupta <aman@tmm1.net> | 2017-07-03 11:07:36 -0700 |
---|---|---|
committer | Matthieu Bouron <matthieu.bouron@gmail.com> | 2017-07-03 23:38:06 +0200 |
commit | 6d4a686d45218fd9ac312fd3f3056680ce169d40 (patch) | |
tree | e56448385745633e7de7300cff886b074e3fda85 | |
parent | 0a24d7ca831b85db18593e5f18d765adb40e5cd9 (diff) | |
download | ffmpeg-6d4a686d45218fd9ac312fd3f3056680ce169d40.tar.gz |
lavc/mediacodec: add missing newline on warning
Signed-off-by: Matthieu Bouron <matthieu.bouron@gmail.com>
-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 1263188d34..f88b2cde54 100644 --- a/libavcodec/mediacodecdec_common.c +++ b/libavcodec/mediacodecdec_common.c @@ -478,7 +478,7 @@ int ff_mediacodec_dec_init(AVCodecContext *avctx, MediaCodecDecContext *s, profile = ff_AMediaCodecProfile_getProfileFromAVCodecContext(avctx); if (profile < 0) { - av_log(avctx, AV_LOG_WARNING, "Unsupported or unknown profile"); + av_log(avctx, AV_LOG_WARNING, "Unsupported or unknown profile\n"); } s->codec_name = ff_AMediaCodecList_getCodecNameByType(mime, profile, 0, avctx); |