graphdump.c 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /*
  2. * Filter graphs to bad ASCII-art
  3. * Copyright (c) 2012 Nicolas George
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <string.h>
  22. #include "libavutil/bprint.h"
  23. #include "libavutil/pixdesc.h"
  24. #include "avfilter.h"
  25. #include "avfiltergraph.h"
  26. static int print_link_prop(AVBPrint *buf, AVFilterLink *link)
  27. {
  28. char *format;
  29. char layout[64];
  30. if (!buf)
  31. buf = &(AVBPrint){ 0 }; /* dummy buffer */
  32. switch (link->type) {
  33. case AVMEDIA_TYPE_VIDEO:
  34. format = av_x_if_null(av_get_pix_fmt_name(link->format), "?");
  35. av_bprintf(buf, "[%dx%d %d:%d %s]", link->w, link->h,
  36. link->sample_aspect_ratio.num,
  37. link->sample_aspect_ratio.den,
  38. format);
  39. break;
  40. case AVMEDIA_TYPE_AUDIO:
  41. av_get_channel_layout_string(layout, sizeof(layout),
  42. -1, link->channel_layout);
  43. format = av_x_if_null(av_get_sample_fmt_name(link->format), "?");
  44. av_bprintf(buf, "[%dHz %s:%s]",
  45. (int)link->sample_rate, format, layout);
  46. break;
  47. default:
  48. av_bprintf(buf, "?");
  49. break;
  50. }
  51. return buf->len;
  52. }
  53. static void avfilter_graph_dump_to_buf(AVBPrint *buf, AVFilterGraph *graph)
  54. {
  55. unsigned i, j, x, e;
  56. for (i = 0; i < graph->filter_count; i++) {
  57. AVFilterContext *filter = graph->filters[i];
  58. unsigned max_src_name = 0, max_dst_name = 0;
  59. unsigned max_in_name = 0, max_out_name = 0;
  60. unsigned max_in_fmt = 0, max_out_fmt = 0;
  61. unsigned width, height, in_indent;
  62. unsigned lname = strlen(filter->name);
  63. unsigned ltype = strlen(filter->filter->name);
  64. for (j = 0; j < filter->input_count; j++) {
  65. AVFilterLink *l = filter->inputs[j];
  66. unsigned ln = strlen(l->src->name) + 1 + strlen(l->srcpad->name);
  67. max_src_name = FFMAX(max_src_name, ln);
  68. max_in_name = FFMAX(max_in_name, strlen(l->dstpad->name));
  69. max_in_fmt = FFMAX(max_in_fmt, print_link_prop(NULL, l));
  70. }
  71. for (j = 0; j < filter->output_count; j++) {
  72. AVFilterLink *l = filter->outputs[j];
  73. unsigned ln = strlen(l->dst->name) + 1 + strlen(l->dstpad->name);
  74. max_dst_name = FFMAX(max_dst_name, ln);
  75. max_out_name = FFMAX(max_out_name, strlen(l->srcpad->name));
  76. max_out_fmt = FFMAX(max_out_fmt, print_link_prop(NULL, l));
  77. }
  78. in_indent = max_src_name + max_in_name + max_in_fmt;
  79. in_indent += in_indent ? 4 : 0;
  80. width = FFMAX(lname + 2, ltype + 4);
  81. height = FFMAX3(2, filter->input_count, filter->output_count);
  82. av_bprint_chars(buf, ' ', in_indent);
  83. av_bprintf(buf, "+");
  84. av_bprint_chars(buf, '-', width);
  85. av_bprintf(buf, "+\n");
  86. for (j = 0; j < height; j++) {
  87. unsigned in_no = j - (height - filter->input_count ) / 2;
  88. unsigned out_no = j - (height - filter->output_count) / 2;
  89. /* Input link */
  90. if (in_no < filter->input_count) {
  91. AVFilterLink *l = filter->inputs[in_no];
  92. e = buf->len + max_src_name + 2;
  93. av_bprintf(buf, "%s:%s", l->src->name, l->srcpad->name);
  94. av_bprint_chars(buf, '-', e - buf->len);
  95. e = buf->len + max_in_fmt + 2 +
  96. max_in_name - strlen(l->dstpad->name);
  97. print_link_prop(buf, l);
  98. av_bprint_chars(buf, '-', e - buf->len);
  99. av_bprintf(buf, "%s", l->dstpad->name);
  100. } else {
  101. av_bprint_chars(buf, ' ', in_indent);
  102. }
  103. /* Filter */
  104. av_bprintf(buf, "|");
  105. if (j == (height - 2) / 2) {
  106. x = (width - lname) / 2;
  107. av_bprintf(buf, "%*s%-*s", x, "", width - x, filter->name);
  108. } else if (j == (height - 2) / 2 + 1) {
  109. x = (width - ltype - 2) / 2;
  110. av_bprintf(buf, "%*s(%s)%*s", x, "", filter->filter->name,
  111. width - ltype - 2 - x, "");
  112. } else {
  113. av_bprint_chars(buf, ' ', width);
  114. }
  115. av_bprintf(buf, "|");
  116. /* Output link */
  117. if (out_no < filter->output_count) {
  118. AVFilterLink *l = filter->outputs[out_no];
  119. unsigned ln = strlen(l->dst->name) + 1 +
  120. strlen(l->dstpad->name);
  121. e = buf->len + max_out_name + 2;
  122. av_bprintf(buf, "%s", l->srcpad->name);
  123. av_bprint_chars(buf, '-', e - buf->len);
  124. e = buf->len + max_out_fmt + 2 +
  125. max_dst_name - ln;
  126. print_link_prop(buf, l);
  127. av_bprint_chars(buf, '-', e - buf->len);
  128. av_bprintf(buf, "%s:%s", l->dst->name, l->dstpad->name);
  129. }
  130. av_bprintf(buf, "\n");
  131. }
  132. av_bprint_chars(buf, ' ', in_indent);
  133. av_bprintf(buf, "+");
  134. av_bprint_chars(buf, '-', width);
  135. av_bprintf(buf, "+\n");
  136. av_bprintf(buf, "\n");
  137. }
  138. }
  139. char *avfilter_graph_dump(AVFilterGraph *graph, const char *options)
  140. {
  141. AVBPrint buf;
  142. char *dump;
  143. av_bprint_init(&buf, 0, 0);
  144. avfilter_graph_dump_to_buf(&buf, graph);
  145. av_bprint_init(&buf, buf.len + 1, buf.len + 1);
  146. avfilter_graph_dump_to_buf(&buf, graph);
  147. av_bprint_finalize(&buf, &dump);
  148. return dump;
  149. }