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.

93 lines
3.5KB

  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 fow showing textual video frame information
  22. */
  23. #include "libavutil/adler32.h"
  24. #include "libavutil/imgutils.h"
  25. #include "libavutil/pixdesc.h"
  26. #include "avfilter.h"
  27. typedef struct {
  28. unsigned int frame;
  29. } ShowInfoContext;
  30. static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
  31. {
  32. ShowInfoContext *showinfo = ctx->priv;
  33. showinfo->frame = 0;
  34. return 0;
  35. }
  36. static void end_frame(AVFilterLink *inlink)
  37. {
  38. AVFilterContext *ctx = inlink->dst;
  39. ShowInfoContext *showinfo = ctx->priv;
  40. AVFilterBufferRef *picref = inlink->cur_buf;
  41. uint32_t plane_crc[4], crc = 0;
  42. int plane;
  43. for (plane = 0; plane < 4; plane++) {
  44. size_t linesize = av_image_get_linesize(picref->format, picref->video->w, plane);
  45. plane_crc[plane] = av_adler32_update(0 , picref->data[plane], linesize);
  46. crc = av_adler32_update(crc, picref->data[plane], linesize);
  47. }
  48. av_log(ctx, AV_LOG_INFO,
  49. "n:%d pts:%"PRId64" pts_time:%f pos:%"PRId64" "
  50. "fmt:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c "
  51. "crc:%u plane_crc:[%u %u %u %u]\n",
  52. showinfo->frame,
  53. picref->pts, picref ->pts * av_q2d(inlink->time_base), picref->pos,
  54. av_pix_fmt_descriptors[picref->format].name,
  55. picref->video->sample_aspect_ratio.num, picref->video->sample_aspect_ratio.den,
  56. picref->video->w, picref->video->h,
  57. !picref->video->interlaced ? 'P' : /* Progressive */
  58. picref->video->top_field_first ? 'T' : 'B', /* Top / Bottom */
  59. picref->video->key_frame,
  60. av_get_picture_type_char(picref->video->pict_type),
  61. crc, plane_crc[0], plane_crc[1], plane_crc[2], plane_crc[3]);
  62. showinfo->frame++;
  63. avfilter_end_frame(inlink->dst->outputs[0]);
  64. }
  65. AVFilter avfilter_vf_showinfo = {
  66. .name = "showinfo",
  67. .description = NULL_IF_CONFIG_SMALL("Show textual information for each video frame."),
  68. .priv_size = sizeof(ShowInfoContext),
  69. .init = init,
  70. .inputs = (AVFilterPad[]) {{ .name = "default",
  71. .type = AVMEDIA_TYPE_VIDEO,
  72. .get_video_buffer = avfilter_null_get_video_buffer,
  73. .start_frame = avfilter_null_start_frame,
  74. .end_frame = end_frame,
  75. .min_perms = AV_PERM_READ, },
  76. { .name = NULL}},
  77. .outputs = (AVFilterPad[]) {{ .name = "default",
  78. .type = AVMEDIA_TYPE_VIDEO },
  79. { .name = NULL}},
  80. };