vf_showinfo.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * Copyright (c) 2011 Stefano Sabatini
  3. * This file is part of FFmpeg.
  4. *
  5. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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 "libavutil/timestamp.h"
  28. #include "avfilter.h"
  29. #include "internal.h"
  30. #include "video.h"
  31. static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
  32. {
  33. AVFilterContext *ctx = inlink->dst;
  34. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  35. uint32_t plane_checksum[4] = {0}, checksum = 0;
  36. int i, plane, vsub = desc->log2_chroma_h;
  37. for (plane = 0; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++) {
  38. int64_t linesize = av_image_get_linesize(frame->format, frame->width, plane);
  39. uint8_t *data = frame->data[plane];
  40. int h = plane == 1 || plane == 2 ? FF_CEIL_RSHIFT(inlink->h, vsub) : inlink->h;
  41. if (linesize < 0)
  42. return linesize;
  43. for (i = 0; i < h; i++) {
  44. plane_checksum[plane] = av_adler32_update(plane_checksum[plane], data, linesize);
  45. checksum = av_adler32_update(checksum, data, linesize);
  46. data += frame->linesize[plane];
  47. }
  48. }
  49. av_log(ctx, AV_LOG_INFO,
  50. "n:%"PRId64" pts:%s pts_time:%s pos:%"PRId64" "
  51. "fmt:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c "
  52. "checksum:%08X plane_checksum:[%08X",
  53. inlink->frame_count,
  54. av_ts2str(frame->pts), av_ts2timestr(frame->pts, &inlink->time_base), av_frame_get_pkt_pos(frame),
  55. desc->name,
  56. frame->sample_aspect_ratio.num, frame->sample_aspect_ratio.den,
  57. frame->width, frame->height,
  58. !frame->interlaced_frame ? 'P' : /* Progressive */
  59. frame->top_field_first ? 'T' : 'B', /* Top / Bottom */
  60. frame->key_frame,
  61. av_get_picture_type_char(frame->pict_type),
  62. checksum, plane_checksum[0]);
  63. for (plane = 1; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++)
  64. av_log(ctx, AV_LOG_INFO, " %08X", plane_checksum[plane]);
  65. av_log(ctx, AV_LOG_INFO, "]\n");
  66. return ff_filter_frame(inlink->dst->outputs[0], frame);
  67. }
  68. static const AVFilterPad avfilter_vf_showinfo_inputs[] = {
  69. {
  70. .name = "default",
  71. .type = AVMEDIA_TYPE_VIDEO,
  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. .inputs = avfilter_vf_showinfo_inputs,
  87. .outputs = avfilter_vf_showinfo_outputs,
  88. };