summaryrefslogtreecommitdiff
path: root/libavcodec/vp9_superframe_bsf.c
diff options
context:
space:
mode:
authorFu Linjie <linjie.fu@intel.com>2019-05-16 11:04:31 -0400
committerMark Thompson <sw@jkqxz.net>2019-05-21 00:07:13 +0100
commit154a730bdcae92deca21168f54df91babc6a2d88 (patch)
tree4d343721570f6f6262c6214c9dd8ac0bcb633098 /libavcodec/vp9_superframe_bsf.c
parente1839283bc9a660f65a0e828ca044d926cbaf5dc (diff)
downloadffmpeg-154a730bdcae92deca21168f54df91babc6a2d88.tar.gz
lavc/vp9_superframe_bsf: avoid error messages in one line
Add "\n" to avoid continuous error messages in one line. Signed-off-by: Fu Linjie <linjie.fu@intel.com>
Diffstat (limited to 'libavcodec/vp9_superframe_bsf.c')
-rw-r--r--libavcodec/vp9_superframe_bsf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vp9_superframe_bsf.c b/libavcodec/vp9_superframe_bsf.c
index ea6750750b..23933d4136 100644
--- a/libavcodec/vp9_superframe_bsf.c
+++ b/libavcodec/vp9_superframe_bsf.c
@@ -133,7 +133,7 @@ static int vp9_superframe_filter(AVBSFContext *ctx, AVPacket *out)
if (uses_superframe_syntax && s->n_cache > 0) {
av_log(ctx, AV_LOG_ERROR,
- "Mixing of superframe syntax and naked VP9 frames not supported");
+ "Mixing of superframe syntax and naked VP9 frames not supported\n");
res = AVERROR(ENOSYS);
goto done;
} else if ((!invisible || uses_superframe_syntax) && !s->n_cache) {
@@ -142,7 +142,7 @@ static int vp9_superframe_filter(AVBSFContext *ctx, AVPacket *out)
goto done;
} else if (s->n_cache + 1 >= MAX_CACHE) {
av_log(ctx, AV_LOG_ERROR,
- "Too many invisible frames");
+ "Too many invisible frames\n");
res = AVERROR_INVALIDDATA;
goto done;
}