Browse Source

vsrc_buffer: improve reporting in case of format/size change

tags/n0.8
Stefano Sabatini 15 years ago
parent
commit
0f1ef8a316
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      libavfilter/vsrc_buffer.c

+ 4
- 2
libavfilter/vsrc_buffer.c View File

@@ -62,8 +62,10 @@ int av_vsrc_buffer_add_frame2(AVFilterContext *buffer_filter, AVFrame *frame,
AVFilterContext *scale= buffer_filter->outputs[0]->dst;
AVFilterLink *link;

av_log(buffer_filter, AV_LOG_INFO, "Changing filter graph input to accept %dx%d %d (%d %d)\n",
width,height,pix_fmt, c->pix_fmt, scale && scale->outputs ? scale->outputs[0]->format : -123);
av_log(buffer_filter, AV_LOG_INFO,
"Buffer video input changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s\n",
c->w, c->h, av_pix_fmt_descriptors[c->pix_fmt].name,
width, height, av_pix_fmt_descriptors[pix_fmt].name);

if(!scale || strcmp(scale->filter->name,"scale")){
AVFilter *f= avfilter_get_by_name("scale");


Loading…
Cancel
Save