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.

180 lines
6.6KB

  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 void update_sample_stats(const uint8_t *src, int len, int64_t *sum, int64_t *sum2)
  59. {
  60. int i;
  61. for (i = 0; i < len; i++) {
  62. *sum += src[i];
  63. *sum2 += src[i] * src[i];
  64. }
  65. }
  66. static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
  67. {
  68. AVFilterContext *ctx = inlink->dst;
  69. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  70. uint32_t plane_checksum[4] = {0}, checksum = 0;
  71. int64_t sum[4] = {0}, sum2[4] = {0};
  72. int32_t pixelcount[4] = {0};
  73. int i, plane, vsub = desc->log2_chroma_h;
  74. for (plane = 0; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++) {
  75. int64_t linesize = av_image_get_linesize(frame->format, frame->width, plane);
  76. uint8_t *data = frame->data[plane];
  77. int h = plane == 1 || plane == 2 ? FF_CEIL_RSHIFT(inlink->h, vsub) : inlink->h;
  78. if (linesize < 0)
  79. return linesize;
  80. for (i = 0; i < h; i++) {
  81. plane_checksum[plane] = av_adler32_update(plane_checksum[plane], data, linesize);
  82. checksum = av_adler32_update(checksum, data, linesize);
  83. update_sample_stats(data, linesize, sum+plane, sum2+plane);
  84. pixelcount[plane] += linesize;
  85. data += frame->linesize[plane];
  86. }
  87. }
  88. av_log(ctx, AV_LOG_INFO,
  89. "n:%"PRId64" pts:%s pts_time:%s pos:%"PRId64" "
  90. "fmt:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c "
  91. "checksum:%08"PRIX32" plane_checksum:[%08"PRIX32,
  92. inlink->frame_count,
  93. av_ts2str(frame->pts), av_ts2timestr(frame->pts, &inlink->time_base), av_frame_get_pkt_pos(frame),
  94. desc->name,
  95. frame->sample_aspect_ratio.num, frame->sample_aspect_ratio.den,
  96. frame->width, frame->height,
  97. !frame->interlaced_frame ? 'P' : /* Progressive */
  98. frame->top_field_first ? 'T' : 'B', /* Top / Bottom */
  99. frame->key_frame,
  100. av_get_picture_type_char(frame->pict_type),
  101. checksum, plane_checksum[0]);
  102. for (plane = 1; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++)
  103. av_log(ctx, AV_LOG_INFO, " %08"PRIX32, plane_checksum[plane]);
  104. av_log(ctx, AV_LOG_INFO, "] mean:[");
  105. for (plane = 0; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++)
  106. av_log(ctx, AV_LOG_INFO, "%"PRId64" ", (sum[plane] + pixelcount[plane]/2) / pixelcount[plane]);
  107. av_log(ctx, AV_LOG_INFO, "\b] stdev:[");
  108. for (plane = 0; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++)
  109. av_log(ctx, AV_LOG_INFO, "%3.1f ",
  110. sqrt((sum2[plane] - sum[plane]*(double)sum[plane]/pixelcount[plane])/pixelcount[plane]));
  111. av_log(ctx, AV_LOG_INFO, "\b]\n");
  112. for (i = 0; i < frame->nb_side_data; i++) {
  113. AVFrameSideData *sd = frame->side_data[i];
  114. av_log(ctx, AV_LOG_INFO, " side data - ");
  115. switch (sd->type) {
  116. case AV_FRAME_DATA_PANSCAN:
  117. av_log(ctx, AV_LOG_INFO, "pan/scan");
  118. break;
  119. case AV_FRAME_DATA_A53_CC:
  120. av_log(ctx, AV_LOG_INFO, "A/53 closed captions (%d bytes)", sd->size);
  121. break;
  122. case AV_FRAME_DATA_STEREO3D:
  123. dump_stereo3d(ctx, sd);
  124. break;
  125. default:
  126. av_log(ctx, AV_LOG_WARNING, "unknown side data type %d (%d bytes)",
  127. sd->type, sd->size);
  128. break;
  129. }
  130. av_log(ctx, AV_LOG_INFO, "\n");
  131. }
  132. return ff_filter_frame(inlink->dst->outputs[0], frame);
  133. }
  134. static const AVFilterPad avfilter_vf_showinfo_inputs[] = {
  135. {
  136. .name = "default",
  137. .type = AVMEDIA_TYPE_VIDEO,
  138. .filter_frame = filter_frame,
  139. },
  140. { NULL }
  141. };
  142. static const AVFilterPad avfilter_vf_showinfo_outputs[] = {
  143. {
  144. .name = "default",
  145. .type = AVMEDIA_TYPE_VIDEO
  146. },
  147. { NULL }
  148. };
  149. AVFilter ff_vf_showinfo = {
  150. .name = "showinfo",
  151. .description = NULL_IF_CONFIG_SMALL("Show textual information for each video frame."),
  152. .inputs = avfilter_vf_showinfo_inputs,
  153. .outputs = avfilter_vf_showinfo_outputs,
  154. };