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.

161 lines
5.7KB

  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 <inttypes.h>
  24. #include "libavutil/adler32.h"
  25. #include "libavutil/imgutils.h"
  26. #include "libavutil/internal.h"
  27. #include "libavutil/pixdesc.h"
  28. #include "libavutil/stereo3d.h"
  29. #include "avfilter.h"
  30. #include "internal.h"
  31. #include "video.h"
  32. typedef struct ShowInfoContext {
  33. unsigned int frame;
  34. } ShowInfoContext;
  35. static void dump_stereo3d(AVFilterContext *ctx, AVFrameSideData *sd)
  36. {
  37. AVStereo3D *stereo;
  38. av_log(ctx, AV_LOG_INFO, "stereoscopic information: ");
  39. if (sd->size < sizeof(*stereo)) {
  40. av_log(ctx, AV_LOG_INFO, "invalid data");
  41. return;
  42. }
  43. stereo = (AVStereo3D *)sd->data;
  44. av_log(ctx, AV_LOG_INFO, "type - ");
  45. switch (stereo->type) {
  46. case AV_STEREO3D_2D: av_log(ctx, AV_LOG_INFO, "2D"); break;
  47. case AV_STEREO3D_SIDEBYSIDE: av_log(ctx, AV_LOG_INFO, "side by side"); break;
  48. case AV_STEREO3D_TOPBOTTOM: av_log(ctx, AV_LOG_INFO, "top and bottom"); break;
  49. case AV_STEREO3D_FRAMESEQUENCE: av_log(ctx, AV_LOG_INFO, "frame alternate"); break;
  50. case AV_STEREO3D_CHECKERBOARD: av_log(ctx, AV_LOG_INFO, "checkerboard"); break;
  51. case AV_STEREO3D_LINES: av_log(ctx, AV_LOG_INFO, "interleaved lines"); break;
  52. case AV_STEREO3D_COLUMNS: av_log(ctx, AV_LOG_INFO, "interleaved columns"); break;
  53. case AV_STEREO3D_SIDEBYSIDE_QUINCUNX: av_log(ctx, AV_LOG_INFO, "side by side "
  54. "(quincunx subsampling)"); break;
  55. default: av_log(ctx, AV_LOG_WARNING, "unknown"); break;
  56. }
  57. if (stereo->flags & AV_STEREO3D_FLAG_INVERT)
  58. av_log(ctx, AV_LOG_INFO, " (inverted)");
  59. }
  60. static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
  61. {
  62. AVFilterContext *ctx = inlink->dst;
  63. ShowInfoContext *showinfo = ctx->priv;
  64. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  65. uint32_t plane_checksum[4] = {0}, checksum = 0;
  66. int i, plane, vsub = desc->log2_chroma_h;
  67. for (plane = 0; frame->data[plane] && plane < 4; plane++) {
  68. size_t linesize = av_image_get_linesize(frame->format, frame->width, plane);
  69. uint8_t *data = frame->data[plane];
  70. int h = plane == 1 || plane == 2 ? inlink->h >> vsub : inlink->h;
  71. for (i = 0; i < h; i++) {
  72. plane_checksum[plane] = av_adler32_update(plane_checksum[plane], data, linesize);
  73. checksum = av_adler32_update(checksum, data, linesize);
  74. data += frame->linesize[plane];
  75. }
  76. }
  77. av_log(ctx, AV_LOG_INFO,
  78. "n:%d pts:%"PRId64" pts_time:%f "
  79. "fmt:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c "
  80. "checksum:%"PRIu32" plane_checksum:[%"PRIu32" %"PRIu32" %"PRIu32" %"PRIu32"]\n",
  81. showinfo->frame,
  82. frame->pts, frame->pts * av_q2d(inlink->time_base),
  83. desc->name,
  84. frame->sample_aspect_ratio.num, frame->sample_aspect_ratio.den,
  85. frame->width, frame->height,
  86. !frame->interlaced_frame ? 'P' : /* Progressive */
  87. frame->top_field_first ? 'T' : 'B', /* Top / Bottom */
  88. frame->key_frame,
  89. av_get_picture_type_char(frame->pict_type),
  90. checksum, plane_checksum[0], plane_checksum[1], plane_checksum[2], plane_checksum[3]);
  91. for (i = 0; i < frame->nb_side_data; i++) {
  92. AVFrameSideData *sd = frame->side_data[i];
  93. av_log(ctx, AV_LOG_INFO, " side data - ");
  94. switch (sd->type) {
  95. case AV_FRAME_DATA_PANSCAN:
  96. av_log(ctx, AV_LOG_INFO, "pan/scan");
  97. break;
  98. case AV_FRAME_DATA_A53_CC:
  99. av_log(ctx, AV_LOG_INFO, "A/53 closed captions (%d bytes)", sd->size);
  100. break;
  101. case AV_FRAME_DATA_STEREO3D:
  102. dump_stereo3d(ctx, sd);
  103. break;
  104. default:
  105. av_log(ctx, AV_LOG_WARNING, "unknown side data type %d (%d bytes)",
  106. sd->type, sd->size);
  107. break;
  108. }
  109. av_log(ctx, AV_LOG_INFO, "\n");
  110. }
  111. showinfo->frame++;
  112. return ff_filter_frame(inlink->dst->outputs[0], frame);
  113. }
  114. static const AVFilterPad avfilter_vf_showinfo_inputs[] = {
  115. {
  116. .name = "default",
  117. .type = AVMEDIA_TYPE_VIDEO,
  118. .get_video_buffer = ff_null_get_video_buffer,
  119. .filter_frame = filter_frame,
  120. },
  121. { NULL }
  122. };
  123. static const AVFilterPad avfilter_vf_showinfo_outputs[] = {
  124. {
  125. .name = "default",
  126. .type = AVMEDIA_TYPE_VIDEO
  127. },
  128. { NULL }
  129. };
  130. AVFilter ff_vf_showinfo = {
  131. .name = "showinfo",
  132. .description = NULL_IF_CONFIG_SMALL("Show textual information for each video frame."),
  133. .priv_size = sizeof(ShowInfoContext),
  134. .inputs = avfilter_vf_showinfo_inputs,
  135. .outputs = avfilter_vf_showinfo_outputs,
  136. };