]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_fieldorder.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavfilter / vf_fieldorder.c
index 0f8df15b1a51b9dc08535687ff39383962d5d0ef..4f657358d4e002fe7d1fadd40820d169c998a5ff 100644 (file)
@@ -38,7 +38,7 @@ typedef struct
     int          line_size[4]; ///< bytes of pixel data per line for each plane
 } FieldOrderContext;
 
-static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
+static av_cold int init(AVFilterContext *ctx, const char *args)
 {
     FieldOrderContext *fieldorder = ctx->priv;
 
@@ -58,7 +58,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
         return AVERROR(EINVAL);
     }
 
-    av_log(ctx, AV_LOG_INFO, "output field order: %s\n",
+    av_log(ctx, AV_LOG_VERBOSE, "output field order: %s\n",
             fieldorder->dst_tff ? tff : bff);
 
     return 0;