You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
3.8KB

  1. /*
  2. * Copyright (c) 2011 Stefano Sabatini
  3. * This file is part of Libav.
  4. *
  5. * Libav is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2.1 of the License, or (at your option) any later version.
  9. *
  10. * Libav is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with Libav; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. /**
  20. * @file
  21. * filter for showing textual video frame information
  22. */
  23. #include "libavutil/adler32.h"
  24. #include "libavutil/imgutils.h"
  25. #include "libavutil/internal.h"
  26. #include "libavutil/pixdesc.h"
  27. #include "avfilter.h"
  28. #include "internal.h"
  29. #include "video.h"
  30. typedef struct {
  31. unsigned int frame;
  32. } ShowInfoContext;
  33. static av_cold int init(AVFilterContext *ctx, const char *args)
  34. {
  35. ShowInfoContext *showinfo = ctx->priv;
  36. showinfo->frame = 0;
  37. return 0;
  38. }
  39. static int end_frame(AVFilterLink *inlink)
  40. {
  41. AVFilterContext *ctx = inlink->dst;
  42. ShowInfoContext *showinfo = ctx->priv;
  43. AVFilterBufferRef *picref = inlink->cur_buf;
  44. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  45. uint32_t plane_checksum[4] = {0}, checksum = 0;
  46. int i, plane, vsub = desc->log2_chroma_h;
  47. for (plane = 0; picref->data[plane] && plane < 4; plane++) {
  48. size_t linesize = av_image_get_linesize(picref->format, picref->video->w, plane);
  49. uint8_t *data = picref->data[plane];
  50. int h = plane == 1 || plane == 2 ? inlink->h >> vsub : inlink->h;
  51. for (i = 0; i < h; i++) {
  52. plane_checksum[plane] = av_adler32_update(plane_checksum[plane], data, linesize);
  53. checksum = av_adler32_update(checksum, data, linesize);
  54. data += picref->linesize[plane];
  55. }
  56. }
  57. av_log(ctx, AV_LOG_INFO,
  58. "n:%d pts:%"PRId64" pts_time:%f pos:%"PRId64" "
  59. "fmt:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c "
  60. "checksum:%u plane_checksum:[%u %u %u %u]\n",
  61. showinfo->frame,
  62. picref->pts, picref->pts * av_q2d(inlink->time_base), picref->pos,
  63. desc->name,
  64. picref->video->pixel_aspect.num, picref->video->pixel_aspect.den,
  65. picref->video->w, picref->video->h,
  66. !picref->video->interlaced ? 'P' : /* Progressive */
  67. picref->video->top_field_first ? 'T' : 'B', /* Top / Bottom */
  68. picref->video->key_frame,
  69. av_get_picture_type_char(picref->video->pict_type),
  70. checksum, plane_checksum[0], plane_checksum[1], plane_checksum[2], plane_checksum[3]);
  71. showinfo->frame++;
  72. return ff_end_frame(inlink->dst->outputs[0]);
  73. }
  74. static const AVFilterPad avfilter_vf_showinfo_inputs[] = {
  75. {
  76. .name = "default",
  77. .type = AVMEDIA_TYPE_VIDEO,
  78. .get_video_buffer = ff_null_get_video_buffer,
  79. .start_frame = ff_null_start_frame,
  80. .end_frame = end_frame,
  81. .min_perms = AV_PERM_READ,
  82. },
  83. { NULL }
  84. };
  85. static const AVFilterPad avfilter_vf_showinfo_outputs[] = {
  86. {
  87. .name = "default",
  88. .type = AVMEDIA_TYPE_VIDEO
  89. },
  90. { NULL }
  91. };
  92. AVFilter avfilter_vf_showinfo = {
  93. .name = "showinfo",
  94. .description = NULL_IF_CONFIG_SMALL("Show textual information for each video frame."),
  95. .priv_size = sizeof(ShowInfoContext),
  96. .init = init,
  97. .inputs = avfilter_vf_showinfo_inputs,
  98. .outputs = avfilter_vf_showinfo_outputs,
  99. };