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.

244 lines
8.3KB

  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/display.h"
  26. #include "libavutil/imgutils.h"
  27. #include "libavutil/internal.h"
  28. #include "libavutil/pixdesc.h"
  29. #include "libavutil/spherical.h"
  30. #include "libavutil/stereo3d.h"
  31. #include "libavutil/timestamp.h"
  32. #include "avfilter.h"
  33. #include "internal.h"
  34. #include "video.h"
  35. static void dump_spherical(AVFilterContext *ctx, AVFrame *frame, AVFrameSideData *sd)
  36. {
  37. AVSphericalMapping *spherical = (AVSphericalMapping *)sd->data;
  38. double yaw, pitch, roll;
  39. av_log(ctx, AV_LOG_INFO, "spherical information: ");
  40. if (sd->size < sizeof(*spherical)) {
  41. av_log(ctx, AV_LOG_INFO, "invalid data");
  42. return;
  43. }
  44. if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR)
  45. av_log(ctx, AV_LOG_INFO, "equirectangular ");
  46. else if (spherical->projection == AV_SPHERICAL_CUBEMAP)
  47. av_log(ctx, AV_LOG_INFO, "cubemap ");
  48. else if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR_TILE)
  49. av_log(ctx, AV_LOG_INFO, "tiled equirectangular ");
  50. else {
  51. av_log(ctx, AV_LOG_WARNING, "unknown");
  52. return;
  53. }
  54. yaw = ((double)spherical->yaw) / (1 << 16);
  55. pitch = ((double)spherical->pitch) / (1 << 16);
  56. roll = ((double)spherical->roll) / (1 << 16);
  57. av_log(ctx, AV_LOG_INFO, "(%f/%f/%f) ", yaw, pitch, roll);
  58. if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR_TILE) {
  59. size_t l, t, r, b;
  60. av_spherical_tile_bounds(spherical, frame->width, frame->height,
  61. &l, &t, &r, &b);
  62. av_log(ctx, AV_LOG_INFO,
  63. "[%"SIZE_SPECIFIER", %"SIZE_SPECIFIER", %"SIZE_SPECIFIER", %"SIZE_SPECIFIER"] ",
  64. l, t, r, b);
  65. } else if (spherical->projection == AV_SPHERICAL_CUBEMAP) {
  66. av_log(ctx, AV_LOG_INFO, "[pad %"PRIu32"] ", spherical->padding);
  67. }
  68. }
  69. static void dump_stereo3d(AVFilterContext *ctx, AVFrameSideData *sd)
  70. {
  71. AVStereo3D *stereo;
  72. av_log(ctx, AV_LOG_INFO, "stereoscopic information: ");
  73. if (sd->size < sizeof(*stereo)) {
  74. av_log(ctx, AV_LOG_INFO, "invalid data");
  75. return;
  76. }
  77. stereo = (AVStereo3D *)sd->data;
  78. av_log(ctx, AV_LOG_INFO, "type - %s", av_stereo3d_type_name(stereo->type));
  79. if (stereo->flags & AV_STEREO3D_FLAG_INVERT)
  80. av_log(ctx, AV_LOG_INFO, " (inverted)");
  81. }
  82. static void update_sample_stats(const uint8_t *src, int len, int64_t *sum, int64_t *sum2)
  83. {
  84. int i;
  85. for (i = 0; i < len; i++) {
  86. *sum += src[i];
  87. *sum2 += src[i] * src[i];
  88. }
  89. }
  90. static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
  91. {
  92. AVFilterContext *ctx = inlink->dst;
  93. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  94. uint32_t plane_checksum[4] = {0}, checksum = 0;
  95. int64_t sum[4] = {0}, sum2[4] = {0};
  96. int32_t pixelcount[4] = {0};
  97. int i, plane, vsub = desc->log2_chroma_h;
  98. for (plane = 0; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++) {
  99. uint8_t *data = frame->data[plane];
  100. int h = plane == 1 || plane == 2 ? AV_CEIL_RSHIFT(inlink->h, vsub) : inlink->h;
  101. int linesize = av_image_get_linesize(frame->format, frame->width, plane);
  102. if (linesize < 0)
  103. return linesize;
  104. for (i = 0; i < h; i++) {
  105. plane_checksum[plane] = av_adler32_update(plane_checksum[plane], data, linesize);
  106. checksum = av_adler32_update(checksum, data, linesize);
  107. update_sample_stats(data, linesize, sum+plane, sum2+plane);
  108. pixelcount[plane] += linesize;
  109. data += frame->linesize[plane];
  110. }
  111. }
  112. av_log(ctx, AV_LOG_INFO,
  113. "n:%4"PRId64" pts:%7s pts_time:%-7s pos:%9"PRId64" "
  114. "fmt:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c "
  115. "checksum:%08"PRIX32" plane_checksum:[%08"PRIX32,
  116. inlink->frame_count_out,
  117. av_ts2str(frame->pts), av_ts2timestr(frame->pts, &inlink->time_base), frame->pkt_pos,
  118. desc->name,
  119. frame->sample_aspect_ratio.num, frame->sample_aspect_ratio.den,
  120. frame->width, frame->height,
  121. !frame->interlaced_frame ? 'P' : /* Progressive */
  122. frame->top_field_first ? 'T' : 'B', /* Top / Bottom */
  123. frame->key_frame,
  124. av_get_picture_type_char(frame->pict_type),
  125. checksum, plane_checksum[0]);
  126. for (plane = 1; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++)
  127. av_log(ctx, AV_LOG_INFO, " %08"PRIX32, plane_checksum[plane]);
  128. av_log(ctx, AV_LOG_INFO, "] mean:[");
  129. for (plane = 0; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++)
  130. av_log(ctx, AV_LOG_INFO, "%"PRId64" ", (sum[plane] + pixelcount[plane]/2) / pixelcount[plane]);
  131. av_log(ctx, AV_LOG_INFO, "\b] stdev:[");
  132. for (plane = 0; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++)
  133. av_log(ctx, AV_LOG_INFO, "%3.1f ",
  134. sqrt((sum2[plane] - sum[plane]*(double)sum[plane]/pixelcount[plane])/pixelcount[plane]));
  135. av_log(ctx, AV_LOG_INFO, "\b]\n");
  136. for (i = 0; i < frame->nb_side_data; i++) {
  137. AVFrameSideData *sd = frame->side_data[i];
  138. av_log(ctx, AV_LOG_INFO, " side data - ");
  139. switch (sd->type) {
  140. case AV_FRAME_DATA_PANSCAN:
  141. av_log(ctx, AV_LOG_INFO, "pan/scan");
  142. break;
  143. case AV_FRAME_DATA_A53_CC:
  144. av_log(ctx, AV_LOG_INFO, "A/53 closed captions (%d bytes)", sd->size);
  145. break;
  146. case AV_FRAME_DATA_SPHERICAL:
  147. dump_spherical(ctx, frame, sd);
  148. break;
  149. case AV_FRAME_DATA_STEREO3D:
  150. dump_stereo3d(ctx, sd);
  151. break;
  152. case AV_FRAME_DATA_DISPLAYMATRIX:
  153. av_log(ctx, AV_LOG_INFO, "displaymatrix: rotation of %.2f degrees",
  154. av_display_rotation_get((int32_t *)sd->data));
  155. break;
  156. case AV_FRAME_DATA_AFD:
  157. av_log(ctx, AV_LOG_INFO, "afd: value of %"PRIu8, sd->data[0]);
  158. break;
  159. default:
  160. av_log(ctx, AV_LOG_WARNING, "unknown side data type %d (%d bytes)",
  161. sd->type, sd->size);
  162. break;
  163. }
  164. av_log(ctx, AV_LOG_INFO, "\n");
  165. }
  166. return ff_filter_frame(inlink->dst->outputs[0], frame);
  167. }
  168. static int config_props(AVFilterContext *ctx, AVFilterLink *link, int is_out)
  169. {
  170. av_log(ctx, AV_LOG_INFO, "config %s time_base: %d/%d, frame_rate: %d/%d\n",
  171. is_out ? "out" : "in",
  172. link->time_base.num, link->time_base.den,
  173. link->frame_rate.num, link->frame_rate.den);
  174. return 0;
  175. }
  176. static int config_props_in(AVFilterLink *link)
  177. {
  178. AVFilterContext *ctx = link->dst;
  179. return config_props(ctx, link, 0);
  180. }
  181. static int config_props_out(AVFilterLink *link)
  182. {
  183. AVFilterContext *ctx = link->src;
  184. return config_props(ctx, link, 1);
  185. }
  186. static const AVFilterPad avfilter_vf_showinfo_inputs[] = {
  187. {
  188. .name = "default",
  189. .type = AVMEDIA_TYPE_VIDEO,
  190. .filter_frame = filter_frame,
  191. .config_props = config_props_in,
  192. },
  193. { NULL }
  194. };
  195. static const AVFilterPad avfilter_vf_showinfo_outputs[] = {
  196. {
  197. .name = "default",
  198. .type = AVMEDIA_TYPE_VIDEO,
  199. .config_props = config_props_out,
  200. },
  201. { NULL }
  202. };
  203. AVFilter ff_vf_showinfo = {
  204. .name = "showinfo",
  205. .description = NULL_IF_CONFIG_SMALL("Show textual information for each video frame."),
  206. .inputs = avfilter_vf_showinfo_inputs,
  207. .outputs = avfilter_vf_showinfo_outputs,
  208. };