diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-07-21 17:14:15 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-07-21 17:14:15 +0000 |
commit | e2f48c05e9a88f39579d331a48851726a9c46a57 (patch) | |
tree | c44cfa0f21d8c15146e40976ed789032b48ed064 /libavfilter | |
parent | b8dddebf3e341631d02328144e8dd9e75091fc69 (diff) | |
download | ffmpeg-e2f48c05e9a88f39579d331a48851726a9c46a57.tar.gz |
Add an informational trace in init().
Originally committed as revision 24386 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vsrc_buffer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/vsrc_buffer.c b/libavfilter/vsrc_buffer.c index c48f04af58..bb3c210d83 100644 --- a/libavfilter/vsrc_buffer.c +++ b/libavfilter/vsrc_buffer.c @@ -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; } |