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.

104 lines
3.4KB

  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 int filter_frame(AVFilterLink *inlink, AVFrame *frame)
  34. {
  35. AVFilterContext *ctx = inlink->dst;
  36. ShowInfoContext *showinfo = ctx->priv;
  37. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  38. uint32_t plane_checksum[4] = {0}, checksum = 0;
  39. int i, plane, vsub = desc->log2_chroma_h;
  40. for (plane = 0; frame->data[plane] && plane < 4; plane++) {
  41. size_t linesize = av_image_get_linesize(frame->format, frame->width, plane);
  42. uint8_t *data = frame->data[plane];
  43. int h = plane == 1 || plane == 2 ? inlink->h >> vsub : inlink->h;
  44. for (i = 0; i < h; i++) {
  45. plane_checksum[plane] = av_adler32_update(plane_checksum[plane], data, linesize);
  46. checksum = av_adler32_update(checksum, data, linesize);
  47. data += frame->linesize[plane];
  48. }
  49. }
  50. av_log(ctx, AV_LOG_INFO,
  51. "n:%d pts:%"PRId64" pts_time:%f "
  52. "fmt:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c "
  53. "checksum:%u plane_checksum:[%u %u %u %u]\n",
  54. showinfo->frame,
  55. frame->pts, frame->pts * av_q2d(inlink->time_base),
  56. desc->name,
  57. frame->sample_aspect_ratio.num, frame->sample_aspect_ratio.den,
  58. frame->width, frame->height,
  59. !frame->interlaced_frame ? 'P' : /* Progressive */
  60. frame->top_field_first ? 'T' : 'B', /* Top / Bottom */
  61. frame->key_frame,
  62. av_get_picture_type_char(frame->pict_type),
  63. checksum, plane_checksum[0], plane_checksum[1], plane_checksum[2], plane_checksum[3]);
  64. showinfo->frame++;
  65. return ff_filter_frame(inlink->dst->outputs[0], frame);
  66. }
  67. static const AVFilterPad avfilter_vf_showinfo_inputs[] = {
  68. {
  69. .name = "default",
  70. .type = AVMEDIA_TYPE_VIDEO,
  71. .get_video_buffer = ff_null_get_video_buffer,
  72. .filter_frame = filter_frame,
  73. },
  74. { NULL }
  75. };
  76. static const AVFilterPad avfilter_vf_showinfo_outputs[] = {
  77. {
  78. .name = "default",
  79. .type = AVMEDIA_TYPE_VIDEO
  80. },
  81. { NULL }
  82. };
  83. AVFilter ff_vf_showinfo = {
  84. .name = "showinfo",
  85. .description = NULL_IF_CONFIG_SMALL("Show textual information for each video frame."),
  86. .priv_size = sizeof(ShowInfoContext),
  87. .inputs = avfilter_vf_showinfo_inputs,
  88. .outputs = avfilter_vf_showinfo_outputs,
  89. };