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.

582 lines
22KB

  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/bswap.h"
  25. #include "libavutil/adler32.h"
  26. #include "libavutil/display.h"
  27. #include "libavutil/imgutils.h"
  28. #include "libavutil/internal.h"
  29. #include "libavutil/hdr_dynamic_metadata.h"
  30. #include "libavutil/opt.h"
  31. #include "libavutil/pixdesc.h"
  32. #include "libavutil/spherical.h"
  33. #include "libavutil/stereo3d.h"
  34. #include "libavutil/timestamp.h"
  35. #include "libavutil/timecode.h"
  36. #include "libavutil/mastering_display_metadata.h"
  37. #include "libavutil/video_enc_params.h"
  38. #include "avfilter.h"
  39. #include "internal.h"
  40. #include "video.h"
  41. typedef struct ShowInfoContext {
  42. const AVClass *class;
  43. int calculate_checksums;
  44. } ShowInfoContext;
  45. #define OFFSET(x) offsetof(ShowInfoContext, x)
  46. #define VF AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
  47. static const AVOption showinfo_options[] = {
  48. { "checksum", "calculate checksums", OFFSET(calculate_checksums), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, VF },
  49. { NULL }
  50. };
  51. AVFILTER_DEFINE_CLASS(showinfo);
  52. static void dump_spherical(AVFilterContext *ctx, AVFrame *frame, const AVFrameSideData *sd)
  53. {
  54. const AVSphericalMapping *spherical = (const AVSphericalMapping *)sd->data;
  55. double yaw, pitch, roll;
  56. av_log(ctx, AV_LOG_INFO, "spherical information: ");
  57. if (sd->size < sizeof(*spherical)) {
  58. av_log(ctx, AV_LOG_ERROR, "invalid data\n");
  59. return;
  60. }
  61. if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR)
  62. av_log(ctx, AV_LOG_INFO, "equirectangular ");
  63. else if (spherical->projection == AV_SPHERICAL_CUBEMAP)
  64. av_log(ctx, AV_LOG_INFO, "cubemap ");
  65. else if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR_TILE)
  66. av_log(ctx, AV_LOG_INFO, "tiled equirectangular ");
  67. else {
  68. av_log(ctx, AV_LOG_WARNING, "unknown\n");
  69. return;
  70. }
  71. yaw = ((double)spherical->yaw) / (1 << 16);
  72. pitch = ((double)spherical->pitch) / (1 << 16);
  73. roll = ((double)spherical->roll) / (1 << 16);
  74. av_log(ctx, AV_LOG_INFO, "(%f/%f/%f) ", yaw, pitch, roll);
  75. if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR_TILE) {
  76. size_t l, t, r, b;
  77. av_spherical_tile_bounds(spherical, frame->width, frame->height,
  78. &l, &t, &r, &b);
  79. av_log(ctx, AV_LOG_INFO,
  80. "[%"SIZE_SPECIFIER", %"SIZE_SPECIFIER", %"SIZE_SPECIFIER", %"SIZE_SPECIFIER"] ",
  81. l, t, r, b);
  82. } else if (spherical->projection == AV_SPHERICAL_CUBEMAP) {
  83. av_log(ctx, AV_LOG_INFO, "[pad %"PRIu32"] ", spherical->padding);
  84. }
  85. }
  86. static void dump_stereo3d(AVFilterContext *ctx, const AVFrameSideData *sd)
  87. {
  88. const AVStereo3D *stereo;
  89. av_log(ctx, AV_LOG_INFO, "stereoscopic information: ");
  90. if (sd->size < sizeof(*stereo)) {
  91. av_log(ctx, AV_LOG_ERROR, "invalid data\n");
  92. return;
  93. }
  94. stereo = (const AVStereo3D *)sd->data;
  95. av_log(ctx, AV_LOG_INFO, "type - %s", av_stereo3d_type_name(stereo->type));
  96. if (stereo->flags & AV_STEREO3D_FLAG_INVERT)
  97. av_log(ctx, AV_LOG_INFO, " (inverted)");
  98. }
  99. static void dump_s12m_timecode(AVFilterContext *ctx, AVRational frame_rate, const AVFrameSideData *sd)
  100. {
  101. const uint32_t *tc = (const uint32_t *)sd->data;
  102. if ((sd->size != sizeof(uint32_t) * 4) || (tc[0] > 3)) {
  103. av_log(ctx, AV_LOG_ERROR, "invalid data\n");
  104. return;
  105. }
  106. for (int j = 1; j <= tc[0]; j++) {
  107. char tcbuf[AV_TIMECODE_STR_SIZE];
  108. av_timecode_make_smpte_tc_string2(tcbuf, frame_rate, tc[j], 0, 0);
  109. av_log(ctx, AV_LOG_INFO, "timecode - %s%s", tcbuf, j != tc[0] ? ", " : "");
  110. }
  111. }
  112. static void dump_roi(AVFilterContext *ctx, const AVFrameSideData *sd)
  113. {
  114. int nb_rois;
  115. const AVRegionOfInterest *roi;
  116. uint32_t roi_size;
  117. roi = (const AVRegionOfInterest *)sd->data;
  118. roi_size = roi->self_size;
  119. if (!roi_size || sd->size % roi_size != 0) {
  120. av_log(ctx, AV_LOG_ERROR, "Invalid AVRegionOfInterest.self_size.\n");
  121. return;
  122. }
  123. nb_rois = sd->size / roi_size;
  124. av_log(ctx, AV_LOG_INFO, "Regions Of Interest(RoI) information: ");
  125. for (int i = 0; i < nb_rois; i++) {
  126. roi = (const AVRegionOfInterest *)(sd->data + roi_size * i);
  127. av_log(ctx, AV_LOG_INFO, "index: %d, region: (%d, %d)/(%d, %d), qp offset: %d/%d.\n",
  128. i, roi->left, roi->top, roi->right, roi->bottom, roi->qoffset.num, roi->qoffset.den);
  129. }
  130. }
  131. static void dump_mastering_display(AVFilterContext *ctx, const AVFrameSideData *sd)
  132. {
  133. const AVMasteringDisplayMetadata *mastering_display;
  134. av_log(ctx, AV_LOG_INFO, "mastering display: ");
  135. if (sd->size < sizeof(*mastering_display)) {
  136. av_log(ctx, AV_LOG_ERROR, "invalid data\n");
  137. return;
  138. }
  139. mastering_display = (const AVMasteringDisplayMetadata *)sd->data;
  140. av_log(ctx, AV_LOG_INFO, "has_primaries:%d has_luminance:%d "
  141. "r(%5.4f,%5.4f) g(%5.4f,%5.4f) b(%5.4f %5.4f) wp(%5.4f, %5.4f) "
  142. "min_luminance=%f, max_luminance=%f",
  143. mastering_display->has_primaries, mastering_display->has_luminance,
  144. av_q2d(mastering_display->display_primaries[0][0]),
  145. av_q2d(mastering_display->display_primaries[0][1]),
  146. av_q2d(mastering_display->display_primaries[1][0]),
  147. av_q2d(mastering_display->display_primaries[1][1]),
  148. av_q2d(mastering_display->display_primaries[2][0]),
  149. av_q2d(mastering_display->display_primaries[2][1]),
  150. av_q2d(mastering_display->white_point[0]), av_q2d(mastering_display->white_point[1]),
  151. av_q2d(mastering_display->min_luminance), av_q2d(mastering_display->max_luminance));
  152. }
  153. static void dump_dynamic_hdr_plus(AVFilterContext *ctx, AVFrameSideData *sd)
  154. {
  155. AVDynamicHDRPlus *hdr_plus;
  156. av_log(ctx, AV_LOG_INFO, "HDR10+ metadata: ");
  157. if (sd->size < sizeof(*hdr_plus)) {
  158. av_log(ctx, AV_LOG_ERROR, "invalid data\n");
  159. return;
  160. }
  161. hdr_plus = (AVDynamicHDRPlus *)sd->data;
  162. av_log(ctx, AV_LOG_INFO, "application version: %d, ", hdr_plus->application_version);
  163. av_log(ctx, AV_LOG_INFO, "num_windows: %d, ", hdr_plus->num_windows);
  164. for (int w = 1; w < hdr_plus->num_windows; w++) {
  165. AVHDRPlusColorTransformParams *params = &hdr_plus->params[w];
  166. av_log(ctx, AV_LOG_INFO, "window %d { ", w);
  167. av_log(ctx, AV_LOG_INFO, "window_upper_left_corner: (%5.4f,%5.4f),",
  168. av_q2d(params->window_upper_left_corner_x),
  169. av_q2d(params->window_upper_left_corner_y));
  170. av_log(ctx, AV_LOG_INFO, "window_lower_right_corner: (%5.4f,%5.4f), ",
  171. av_q2d(params->window_lower_right_corner_x),
  172. av_q2d(params->window_lower_right_corner_y));
  173. av_log(ctx, AV_LOG_INFO, "window_upper_left_corner: (%5.4f, %5.4f), ",
  174. av_q2d(params->window_upper_left_corner_x),
  175. av_q2d(params->window_upper_left_corner_y));
  176. av_log(ctx, AV_LOG_INFO, "center_of_ellipse_x: (%d,%d), ",
  177. params->center_of_ellipse_x,
  178. params->center_of_ellipse_y);
  179. av_log(ctx, AV_LOG_INFO, "rotation_angle: %d, ",
  180. params->rotation_angle);
  181. av_log(ctx, AV_LOG_INFO, "semimajor_axis_internal_ellipse: %d, ",
  182. params->semimajor_axis_internal_ellipse);
  183. av_log(ctx, AV_LOG_INFO, "semimajor_axis_external_ellipse: %d, ",
  184. params->semimajor_axis_external_ellipse);
  185. av_log(ctx, AV_LOG_INFO, "semiminor_axis_external_ellipse: %d, ",
  186. params->semiminor_axis_external_ellipse);
  187. av_log(ctx, AV_LOG_INFO, "overlap_process_option: %d}, ",
  188. params->overlap_process_option);
  189. }
  190. av_log(ctx, AV_LOG_INFO, "targeted_system_display_maximum_luminance: %9.4f, ",
  191. av_q2d(hdr_plus->targeted_system_display_maximum_luminance));
  192. if (hdr_plus->targeted_system_display_actual_peak_luminance_flag) {
  193. av_log(ctx, AV_LOG_INFO, "targeted_system_display_actual_peak_luminance: {");
  194. for (int i = 0; i < hdr_plus->num_rows_targeted_system_display_actual_peak_luminance; i++) {
  195. av_log(ctx, AV_LOG_INFO, "(");
  196. for (int j = 0; j < hdr_plus->num_cols_targeted_system_display_actual_peak_luminance; j++) {
  197. av_log(ctx, AV_LOG_INFO, "%5.4f,",
  198. av_q2d(hdr_plus->targeted_system_display_actual_peak_luminance[i][j]));
  199. }
  200. av_log(ctx, AV_LOG_INFO, ")");
  201. }
  202. av_log(ctx, AV_LOG_INFO, "}, ");
  203. }
  204. for (int w = 0; w < hdr_plus->num_windows; w++) {
  205. AVHDRPlusColorTransformParams *params = &hdr_plus->params[w];
  206. av_log(ctx, AV_LOG_INFO, "window %d {maxscl: {", w);
  207. for (int i = 0; i < 3; i++) {
  208. av_log(ctx, AV_LOG_INFO, "%5.4f,",av_q2d(params->maxscl[i]));
  209. }
  210. av_log(ctx, AV_LOG_INFO, "} average_maxrgb: %5.4f, ",
  211. av_q2d(params->average_maxrgb));
  212. av_log(ctx, AV_LOG_INFO, "distribution_maxrgb: {");
  213. for (int i = 0; i < params->num_distribution_maxrgb_percentiles; i++) {
  214. av_log(ctx, AV_LOG_INFO, "(%d,%5.4f)",
  215. params->distribution_maxrgb[i].percentage,
  216. av_q2d(params->distribution_maxrgb[i].percentile));
  217. }
  218. av_log(ctx, AV_LOG_INFO, "} fraction_bright_pixels: %5.4f, ",
  219. av_q2d(params->fraction_bright_pixels));
  220. if (params->tone_mapping_flag) {
  221. av_log(ctx, AV_LOG_INFO, "knee_point: (%5.4f,%5.4f), ", av_q2d(params->knee_point_x), av_q2d(params->knee_point_y));
  222. av_log(ctx, AV_LOG_INFO, "bezier_curve_anchors: {");
  223. for (int i = 0; i < params->num_bezier_curve_anchors; i++) {
  224. av_log(ctx, AV_LOG_INFO, "%5.4f,",
  225. av_q2d(params->bezier_curve_anchors[i]));
  226. }
  227. av_log(ctx, AV_LOG_INFO, "} ");
  228. }
  229. if (params->color_saturation_mapping_flag) {
  230. av_log(ctx, AV_LOG_INFO, "color_saturation_weight: %5.4f",
  231. av_q2d(params->color_saturation_weight));
  232. }
  233. av_log(ctx, AV_LOG_INFO, "} ");
  234. }
  235. if (hdr_plus->mastering_display_actual_peak_luminance_flag) {
  236. av_log(ctx, AV_LOG_INFO, "mastering_display_actual_peak_luminance: {");
  237. for (int i = 0; i < hdr_plus->num_rows_mastering_display_actual_peak_luminance; i++) {
  238. av_log(ctx, AV_LOG_INFO, "(");
  239. for (int j = 0; j < hdr_plus->num_cols_mastering_display_actual_peak_luminance; j++) {
  240. av_log(ctx, AV_LOG_INFO, " %5.4f,",
  241. av_q2d(hdr_plus->mastering_display_actual_peak_luminance[i][j]));
  242. }
  243. av_log(ctx, AV_LOG_INFO, ")");
  244. }
  245. av_log(ctx, AV_LOG_INFO, "} ");
  246. }
  247. }
  248. static void dump_content_light_metadata(AVFilterContext *ctx, AVFrameSideData *sd)
  249. {
  250. const AVContentLightMetadata *metadata = (const AVContentLightMetadata *)sd->data;
  251. av_log(ctx, AV_LOG_INFO, "Content Light Level information: "
  252. "MaxCLL=%d, MaxFALL=%d",
  253. metadata->MaxCLL, metadata->MaxFALL);
  254. }
  255. static void dump_video_enc_params(AVFilterContext *ctx, const AVFrameSideData *sd)
  256. {
  257. const AVVideoEncParams *par = (const AVVideoEncParams *)sd->data;
  258. int plane, acdc;
  259. av_log(ctx, AV_LOG_INFO, "video encoding parameters: type %d; ", par->type);
  260. if (par->qp)
  261. av_log(ctx, AV_LOG_INFO, "qp=%d; ", par->qp);
  262. for (plane = 0; plane < FF_ARRAY_ELEMS(par->delta_qp); plane++)
  263. for (acdc = 0; acdc < FF_ARRAY_ELEMS(par->delta_qp[plane]); acdc++) {
  264. int delta_qp = par->delta_qp[plane][acdc];
  265. if (delta_qp)
  266. av_log(ctx, AV_LOG_INFO, "delta_qp[%d][%d]=%d; ",
  267. plane, acdc, delta_qp);
  268. }
  269. if (par->nb_blocks)
  270. av_log(ctx, AV_LOG_INFO, "%u blocks; ", par->nb_blocks);
  271. }
  272. static void dump_sei_unregistered_metadata(AVFilterContext *ctx, const AVFrameSideData *sd)
  273. {
  274. const int uuid_size = 16;
  275. const uint8_t *user_data = sd->data;
  276. int i;
  277. if (sd->size < uuid_size) {
  278. av_log(ctx, AV_LOG_ERROR, "invalid data(%d < UUID(%d-bytes))\n", sd->size, uuid_size);
  279. return;
  280. }
  281. av_log(ctx, AV_LOG_INFO, "User Data Unregistered:\n");
  282. av_log(ctx, AV_LOG_INFO, "UUID=");
  283. for (i = 0; i < uuid_size; i++) {
  284. av_log(ctx, AV_LOG_INFO, "%02x", user_data[i]);
  285. if (i == 3 || i == 5 || i == 7 || i == 9)
  286. av_log(ctx, AV_LOG_INFO, "-");
  287. }
  288. av_log(ctx, AV_LOG_INFO, "\n");
  289. av_log(ctx, AV_LOG_INFO, "User Data=");
  290. for (; i < sd->size; i++) {
  291. av_log(ctx, AV_LOG_INFO, "%02x", user_data[i]);
  292. }
  293. av_log(ctx, AV_LOG_INFO, "\n");
  294. }
  295. static void dump_color_property(AVFilterContext *ctx, AVFrame *frame)
  296. {
  297. const char *color_range_str = av_color_range_name(frame->color_range);
  298. const char *colorspace_str = av_color_space_name(frame->colorspace);
  299. const char *color_primaries_str = av_color_primaries_name(frame->color_primaries);
  300. const char *color_trc_str = av_color_transfer_name(frame->color_trc);
  301. if (!color_range_str || frame->color_range == AVCOL_RANGE_UNSPECIFIED) {
  302. av_log(ctx, AV_LOG_INFO, "color_range:unknown");
  303. } else {
  304. av_log(ctx, AV_LOG_INFO, "color_range:%s", color_range_str);
  305. }
  306. if (!colorspace_str || frame->colorspace == AVCOL_SPC_UNSPECIFIED) {
  307. av_log(ctx, AV_LOG_INFO, " color_space:unknown");
  308. } else {
  309. av_log(ctx, AV_LOG_INFO, " color_space:%s", colorspace_str);
  310. }
  311. if (!color_primaries_str || frame->color_primaries == AVCOL_PRI_UNSPECIFIED) {
  312. av_log(ctx, AV_LOG_INFO, " color_primaries:unknown");
  313. } else {
  314. av_log(ctx, AV_LOG_INFO, " color_primaries:%s", color_primaries_str);
  315. }
  316. if (!color_trc_str || frame->color_trc == AVCOL_TRC_UNSPECIFIED) {
  317. av_log(ctx, AV_LOG_INFO, " color_trc:unknown");
  318. } else {
  319. av_log(ctx, AV_LOG_INFO, " color_trc:%s", color_trc_str);
  320. }
  321. av_log(ctx, AV_LOG_INFO, "\n");
  322. }
  323. static void update_sample_stats_8(const uint8_t *src, int len, int64_t *sum, int64_t *sum2)
  324. {
  325. int i;
  326. for (i = 0; i < len; i++) {
  327. *sum += src[i];
  328. *sum2 += src[i] * src[i];
  329. }
  330. }
  331. static void update_sample_stats_16(int be, const uint8_t *src, int len, int64_t *sum, int64_t *sum2)
  332. {
  333. const uint16_t *src1 = (const uint16_t *)src;
  334. int i;
  335. for (i = 0; i < len / 2; i++) {
  336. if ((HAVE_BIGENDIAN && !be) || (!HAVE_BIGENDIAN && be)) {
  337. *sum += av_bswap16(src1[i]);
  338. *sum2 += (uint32_t)av_bswap16(src1[i]) * (uint32_t)av_bswap16(src1[i]);
  339. } else {
  340. *sum += src1[i];
  341. *sum2 += (uint32_t)src1[i] * (uint32_t)src1[i];
  342. }
  343. }
  344. }
  345. static void update_sample_stats(int depth, int be, const uint8_t *src, int len, int64_t *sum, int64_t *sum2)
  346. {
  347. if (depth <= 8)
  348. update_sample_stats_8(src, len, sum, sum2);
  349. else
  350. update_sample_stats_16(be, src, len, sum, sum2);
  351. }
  352. static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
  353. {
  354. AVFilterContext *ctx = inlink->dst;
  355. ShowInfoContext *s = ctx->priv;
  356. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  357. uint32_t plane_checksum[4] = {0}, checksum = 0;
  358. int64_t sum[4] = {0}, sum2[4] = {0};
  359. int32_t pixelcount[4] = {0};
  360. int bitdepth = desc->comp[0].depth;
  361. int be = desc->flags & AV_PIX_FMT_FLAG_BE;
  362. int i, plane, vsub = desc->log2_chroma_h;
  363. for (plane = 0; plane < 4 && s->calculate_checksums && frame->data[plane] && frame->linesize[plane]; plane++) {
  364. uint8_t *data = frame->data[plane];
  365. int h = plane == 1 || plane == 2 ? AV_CEIL_RSHIFT(inlink->h, vsub) : inlink->h;
  366. int linesize = av_image_get_linesize(frame->format, frame->width, plane);
  367. int width = linesize >> (bitdepth > 8);
  368. if (linesize < 0)
  369. return linesize;
  370. for (i = 0; i < h; i++) {
  371. plane_checksum[plane] = av_adler32_update(plane_checksum[plane], data, linesize);
  372. checksum = av_adler32_update(checksum, data, linesize);
  373. update_sample_stats(bitdepth, be, data, linesize, sum+plane, sum2+plane);
  374. pixelcount[plane] += width;
  375. data += frame->linesize[plane];
  376. }
  377. }
  378. av_log(ctx, AV_LOG_INFO,
  379. "n:%4"PRId64" pts:%7s pts_time:%-7s pos:%9"PRId64" "
  380. "fmt:%s sar:%d/%d s:%dx%d i:%c iskey:%d type:%c ",
  381. inlink->frame_count_out,
  382. av_ts2str(frame->pts), av_ts2timestr(frame->pts, &inlink->time_base), frame->pkt_pos,
  383. desc->name,
  384. frame->sample_aspect_ratio.num, frame->sample_aspect_ratio.den,
  385. frame->width, frame->height,
  386. !frame->interlaced_frame ? 'P' : /* Progressive */
  387. frame->top_field_first ? 'T' : 'B', /* Top / Bottom */
  388. frame->key_frame,
  389. av_get_picture_type_char(frame->pict_type));
  390. if (s->calculate_checksums) {
  391. av_log(ctx, AV_LOG_INFO,
  392. "checksum:%08"PRIX32" plane_checksum:[%08"PRIX32,
  393. checksum, plane_checksum[0]);
  394. for (plane = 1; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++)
  395. av_log(ctx, AV_LOG_INFO, " %08"PRIX32, plane_checksum[plane]);
  396. av_log(ctx, AV_LOG_INFO, "] mean:[");
  397. for (plane = 0; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++)
  398. av_log(ctx, AV_LOG_INFO, "%"PRId64" ", (sum[plane] + pixelcount[plane]/2) / pixelcount[plane]);
  399. av_log(ctx, AV_LOG_INFO, "\b] stdev:[");
  400. for (plane = 0; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++)
  401. av_log(ctx, AV_LOG_INFO, "%3.1f ",
  402. sqrt((sum2[plane] - sum[plane]*(double)sum[plane]/pixelcount[plane])/pixelcount[plane]));
  403. av_log(ctx, AV_LOG_INFO, "\b]");
  404. }
  405. av_log(ctx, AV_LOG_INFO, "\n");
  406. for (i = 0; i < frame->nb_side_data; i++) {
  407. AVFrameSideData *sd = frame->side_data[i];
  408. av_log(ctx, AV_LOG_INFO, " side data - ");
  409. switch (sd->type) {
  410. case AV_FRAME_DATA_PANSCAN:
  411. av_log(ctx, AV_LOG_INFO, "pan/scan");
  412. break;
  413. case AV_FRAME_DATA_A53_CC:
  414. av_log(ctx, AV_LOG_INFO, "A/53 closed captions (%d bytes)", sd->size);
  415. break;
  416. case AV_FRAME_DATA_SPHERICAL:
  417. dump_spherical(ctx, frame, sd);
  418. break;
  419. case AV_FRAME_DATA_STEREO3D:
  420. dump_stereo3d(ctx, sd);
  421. break;
  422. case AV_FRAME_DATA_S12M_TIMECODE: {
  423. dump_s12m_timecode(ctx, inlink->frame_rate, sd);
  424. break;
  425. }
  426. case AV_FRAME_DATA_DISPLAYMATRIX:
  427. av_log(ctx, AV_LOG_INFO, "displaymatrix: rotation of %.2f degrees",
  428. av_display_rotation_get((int32_t *)sd->data));
  429. break;
  430. case AV_FRAME_DATA_AFD:
  431. av_log(ctx, AV_LOG_INFO, "afd: value of %"PRIu8, sd->data[0]);
  432. break;
  433. case AV_FRAME_DATA_REGIONS_OF_INTEREST:
  434. dump_roi(ctx, sd);
  435. break;
  436. case AV_FRAME_DATA_MASTERING_DISPLAY_METADATA:
  437. dump_mastering_display(ctx, sd);
  438. break;
  439. case AV_FRAME_DATA_DYNAMIC_HDR_PLUS:
  440. dump_dynamic_hdr_plus(ctx, sd);
  441. break;
  442. case AV_FRAME_DATA_CONTENT_LIGHT_LEVEL:
  443. dump_content_light_metadata(ctx, sd);
  444. break;
  445. case AV_FRAME_DATA_GOP_TIMECODE: {
  446. char tcbuf[AV_TIMECODE_STR_SIZE];
  447. av_timecode_make_mpeg_tc_string(tcbuf, *(int64_t *)(sd->data));
  448. av_log(ctx, AV_LOG_INFO, "GOP timecode - %s", tcbuf);
  449. break;
  450. }
  451. case AV_FRAME_DATA_VIDEO_ENC_PARAMS:
  452. dump_video_enc_params(ctx, sd);
  453. break;
  454. case AV_FRAME_DATA_SEI_UNREGISTERED:
  455. dump_sei_unregistered_metadata(ctx, sd);
  456. break;
  457. default:
  458. av_log(ctx, AV_LOG_WARNING, "unknown side data type %d (%d bytes)\n",
  459. sd->type, sd->size);
  460. break;
  461. }
  462. av_log(ctx, AV_LOG_INFO, "\n");
  463. }
  464. dump_color_property(ctx, frame);
  465. return ff_filter_frame(inlink->dst->outputs[0], frame);
  466. }
  467. static int config_props(AVFilterContext *ctx, AVFilterLink *link, int is_out)
  468. {
  469. av_log(ctx, AV_LOG_INFO, "config %s time_base: %d/%d, frame_rate: %d/%d\n",
  470. is_out ? "out" : "in",
  471. link->time_base.num, link->time_base.den,
  472. link->frame_rate.num, link->frame_rate.den);
  473. return 0;
  474. }
  475. static int config_props_in(AVFilterLink *link)
  476. {
  477. AVFilterContext *ctx = link->dst;
  478. return config_props(ctx, link, 0);
  479. }
  480. static int config_props_out(AVFilterLink *link)
  481. {
  482. AVFilterContext *ctx = link->src;
  483. return config_props(ctx, link, 1);
  484. }
  485. static const AVFilterPad avfilter_vf_showinfo_inputs[] = {
  486. {
  487. .name = "default",
  488. .type = AVMEDIA_TYPE_VIDEO,
  489. .filter_frame = filter_frame,
  490. .config_props = config_props_in,
  491. },
  492. { NULL }
  493. };
  494. static const AVFilterPad avfilter_vf_showinfo_outputs[] = {
  495. {
  496. .name = "default",
  497. .type = AVMEDIA_TYPE_VIDEO,
  498. .config_props = config_props_out,
  499. },
  500. { NULL }
  501. };
  502. AVFilter ff_vf_showinfo = {
  503. .name = "showinfo",
  504. .description = NULL_IF_CONFIG_SMALL("Show textual information for each video frame."),
  505. .inputs = avfilter_vf_showinfo_inputs,
  506. .outputs = avfilter_vf_showinfo_outputs,
  507. .priv_size = sizeof(ShowInfoContext),
  508. .priv_class = &showinfo_class,
  509. };