vf_showinfo.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. typedef struct {
  32. unsigned int frame;
  33. } ShowInfoContext;
  34. static av_cold int init(AVFilterContext *ctx, const char *args)
  35. {
  36. ShowInfoContext *showinfo = ctx->priv;
  37. showinfo->frame = 0;
  38. return 0;
  39. }
  40. static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *frame)
  41. {
  42. AVFilterContext *ctx = inlink->dst;
  43. ShowInfoContext *showinfo = ctx->priv;
  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; plane < 4 && frame->data[plane]; plane++) {
  48. int64_t linesize = av_image_get_linesize(frame->format, frame->video->w, plane);
  49. uint8_t *data = frame->data[plane];
  50. int h = plane == 1 || plane == 2 ? inlink->h >> vsub : inlink->h;
  51. if (linesize < 0)
  52. return linesize;
  53. for (i = 0; i < h; i++) {
  54. plane_checksum[plane] = av_adler32_update(plane_checksum[plane], data, linesize);
  55. checksum = av_adler32_update(checksum, data, linesize);
  56. data += frame->linesize[plane];
  57. }
  58. }
  59. av_log(ctx, AV_LOG_INFO,
  60. "n:%d pts:%s pts_time:%s pos:%"PRId64" "
  61. "fmt:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c "
  62. "checksum:%08X plane_checksum:[%08X",
  63. showinfo->frame,
  64. av_ts2str(frame->pts), av_ts2timestr(frame->pts, &inlink->time_base), frame->pos,
  65. desc->name,
  66. frame->video->sample_aspect_ratio.num, frame->video->sample_aspect_ratio.den,
  67. frame->video->w, frame->video->h,
  68. !frame->video->interlaced ? 'P' : /* Progressive */
  69. frame->video->top_field_first ? 'T' : 'B', /* Top / Bottom */
  70. frame->video->key_frame,
  71. av_get_picture_type_char(frame->video->pict_type),
  72. checksum, plane_checksum[0]);
  73. for (plane = 1; plane < 4 && frame->data[plane]; plane++)
  74. av_log(ctx, AV_LOG_INFO, " %08X", plane_checksum[plane]);
  75. av_log(ctx, AV_LOG_INFO, "]\n");
  76. showinfo->frame++;
  77. return ff_filter_frame(inlink->dst->outputs[0], frame);
  78. }
  79. static const AVFilterPad avfilter_vf_showinfo_inputs[] = {
  80. {
  81. .name = "default",
  82. .type = AVMEDIA_TYPE_VIDEO,
  83. .get_video_buffer = ff_null_get_video_buffer,
  84. .filter_frame = filter_frame,
  85. .min_perms = AV_PERM_READ,
  86. },
  87. { NULL }
  88. };
  89. static const AVFilterPad avfilter_vf_showinfo_outputs[] = {
  90. {
  91. .name = "default",
  92. .type = AVMEDIA_TYPE_VIDEO
  93. },
  94. { NULL }
  95. };
  96. AVFilter avfilter_vf_showinfo = {
  97. .name = "showinfo",
  98. .description = NULL_IF_CONFIG_SMALL("Show textual information for each video frame."),
  99. .priv_size = sizeof(ShowInfoContext),
  100. .init = init,
  101. .inputs = avfilter_vf_showinfo_inputs,
  102. .outputs = avfilter_vf_showinfo_outputs,
  103. };