Browse Source

lavfi/smarblur: add missing newline at end of verbose message

tags/n2.0
Stefano Sabatini 13 years ago
parent
commit
8695d9de47
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_smartblur.c

+ 1
- 1
libavfilter/vf_smartblur.c View File

@@ -99,7 +99,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args)

av_log(ctx, AV_LOG_VERBOSE,
"luma_radius:%f luma_strength:%f luma_threshold:%d "
"chroma_radius:%f chroma_strength:%f chroma_threshold:%d ",
"chroma_radius:%f chroma_strength:%f chroma_threshold:%d\n",
sblur->luma.radius, sblur->luma.strength, sblur->luma.threshold,
sblur->chroma.radius, sblur->chroma.strength, sblur->chroma.threshold);



Loading…
Cancel
Save