Commit e2f48c05 authored by Stefano Sabatini's avatar Stefano Sabatini

Add an informational trace in init().

Originally committed as revision 24386 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b8dddebf
......@@ -25,6 +25,7 @@
#include "avfilter.h"
#include "vsrc_buffer.h"
#include "libavutil/pixdesc.h"
typedef struct {
int64_t pts;
......@@ -69,6 +70,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
return AVERROR(EINVAL);
}
av_log(ctx, AV_LOG_INFO, "w:%d h:%d pixfmt:%s\n", c->w, c->h, av_pix_fmt_descriptors[c->pix_fmt].name);
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment