X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fvp9_superframe_bsf.c;h=23933d41365a180434530ccdf42d09909d97271b;hb=1707dbdf49b22021b0845482806b881093534f2f;hp=ea6750750b0a49bd5830fe3a9c91685880cc7778;hpb=ee96ab2db507b95a694f10b152481cf71842de28;p=ffmpeg diff --git a/libavcodec/vp9_superframe_bsf.c b/libavcodec/vp9_superframe_bsf.c index ea6750750b0..23933d41365 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; }