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.

158 lines
5.7KB

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