lavfi-showfiltfmts.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * Copyright (c) 2009 Stefano Sabatini
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "libavformat/avformat.h"
  21. #include "libavutil/pixdesc.h"
  22. #include "libavutil/samplefmt.h"
  23. #include "libavfilter/avfilter.h"
  24. static void print_formats(AVFilterContext *filter_ctx)
  25. {
  26. int i, j;
  27. #define PRINT_FMTS(inout, outin, INOUT) \
  28. for (i = 0; i < filter_ctx->inout##put_count; i++) { \
  29. if (filter_ctx->inout##puts[i]->type == AVMEDIA_TYPE_VIDEO) { \
  30. AVFilterFormats *fmts = \
  31. filter_ctx->inout##puts[i]->outin##_formats; \
  32. for (j = 0; j < fmts->format_count; j++) \
  33. if(av_get_pix_fmt_name(fmts->formats[j])) \
  34. printf(#INOUT "PUT[%d] %s: fmt:%s\n", \
  35. i, filter_ctx->filter->inout##puts[i].name, \
  36. av_get_pix_fmt_name(fmts->formats[j])); \
  37. } else if (filter_ctx->inout##puts[i]->type == AVMEDIA_TYPE_AUDIO) { \
  38. AVFilterFormats *fmts; \
  39. \
  40. fmts = filter_ctx->inout##puts[i]->outin##_formats; \
  41. for (j = 0; j < fmts->format_count; j++) \
  42. printf(#INOUT "PUT[%d] %s: fmt:%s\n", \
  43. i, filter_ctx->filter->inout##puts[i].name, \
  44. av_get_sample_fmt_name(fmts->formats[j])); \
  45. \
  46. fmts = filter_ctx->inout##puts[i]->outin##_chlayouts; \
  47. for (j = 0; j < fmts->format_count; j++) { \
  48. char buf[256]; \
  49. av_get_channel_layout_string(buf, sizeof(buf), -1, \
  50. fmts->formats[j]); \
  51. printf(#INOUT "PUT[%d] %s: chlayout:%s\n", \
  52. i, filter_ctx->filter->inout##puts[i].name, buf); \
  53. } \
  54. \
  55. fmts = filter_ctx->inout##puts[i]->outin##_packing; \
  56. for (j = 0; j < fmts->format_count; j++) { \
  57. printf(#INOUT "PUT[%d] %s: packing:%s\n", \
  58. i, filter_ctx->filter->inout##puts[i].name, \
  59. fmts->formats[j] == AVFILTER_PACKED ? \
  60. "packed" : "planar"); \
  61. } \
  62. } \
  63. } \
  64. PRINT_FMTS(in, out, IN);
  65. PRINT_FMTS(out, in, OUT);
  66. }
  67. int main(int argc, char **argv)
  68. {
  69. AVFilter *filter;
  70. AVFilterContext *filter_ctx;
  71. const char *filter_name;
  72. const char *filter_args = NULL;
  73. int i;
  74. av_log_set_level(AV_LOG_DEBUG);
  75. if (!argv[1]) {
  76. fprintf(stderr, "Missing filter name as argument\n");
  77. return 1;
  78. }
  79. filter_name = argv[1];
  80. if (argv[2])
  81. filter_args = argv[2];
  82. avfilter_register_all();
  83. /* get a corresponding filter and open it */
  84. if (!(filter = avfilter_get_by_name(filter_name))) {
  85. fprintf(stderr, "Unrecognized filter with name '%s'\n", filter_name);
  86. return 1;
  87. }
  88. if (avfilter_open(&filter_ctx, filter, NULL) < 0) {
  89. fprintf(stderr, "Inpossible to open filter with name '%s'\n",
  90. filter_name);
  91. return 1;
  92. }
  93. if (avfilter_init_filter(filter_ctx, filter_args, NULL) < 0) {
  94. fprintf(stderr, "Impossible to init filter '%s' with arguments '%s'\n",
  95. filter_name, filter_args);
  96. return 1;
  97. }
  98. /* create a link for each of the input pads */
  99. for (i = 0; i < filter_ctx->input_count; i++) {
  100. AVFilterLink *link = av_mallocz(sizeof(AVFilterLink));
  101. link->type = filter_ctx->filter->inputs[i].type;
  102. filter_ctx->inputs[i] = link;
  103. }
  104. for (i = 0; i < filter_ctx->output_count; i++) {
  105. AVFilterLink *link = av_mallocz(sizeof(AVFilterLink));
  106. link->type = filter_ctx->filter->outputs[i].type;
  107. filter_ctx->outputs[i] = link;
  108. }
  109. if (filter->query_formats)
  110. filter->query_formats(filter_ctx);
  111. else
  112. avfilter_default_query_formats(filter_ctx);
  113. print_formats(filter_ctx);
  114. avfilter_free(filter_ctx);
  115. fflush(stdout);
  116. return 0;
  117. }