Commit c61f84bf authored by Måns Rullgård's avatar Måns Rullgård

showfiltfmts: set media type of links to that of corresponding pad

Originally committed as revision 24721 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5a6fbf4c
......@@ -60,11 +60,13 @@ int main(int argc, char **argv)
/* create a link for each of the input pads */
for (i = 0; i < filter_ctx->input_count; i++) {
AVFilterLink *link = av_malloc(sizeof(AVFilterLink));
AVFilterLink *link = av_mallocz(sizeof(AVFilterLink));
link->type = filter_ctx->filter->inputs[i].type;
filter_ctx->inputs[i] = link;
}
for (i = 0; i < filter_ctx->output_count; i++) {
AVFilterLink *link = av_malloc(sizeof(AVFilterLink));
AVFilterLink *link = av_mallocz(sizeof(AVFilterLink));
link->type = filter_ctx->filter->inputs[i].type;
filter_ctx->outputs[i] = link;
}
......
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