af_ashowinfo.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * Copyright (c) 2011 Stefano Sabatini
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * filter for showing textual audio frame information
  23. */
  24. #include "libavutil/adler32.h"
  25. #include "libavutil/audioconvert.h"
  26. #include "avfilter.h"
  27. typedef struct {
  28. unsigned int frame;
  29. } ShowInfoContext;
  30. static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
  31. {
  32. ShowInfoContext *showinfo = ctx->priv;
  33. showinfo->frame = 0;
  34. return 0;
  35. }
  36. static void filter_samples(AVFilterLink *inlink, AVFilterBufferRef *samplesref)
  37. {
  38. AVFilterContext *ctx = inlink->dst;
  39. ShowInfoContext *showinfo = ctx->priv;
  40. uint32_t plane_checksum[8] = {0}, checksum = 0;
  41. char chlayout_str[128];
  42. int plane;
  43. int linesize =
  44. samplesref->audio->nb_samples *
  45. av_get_bytes_per_sample(samplesref->format);
  46. if (!samplesref->audio->planar) /* packed layout */
  47. linesize *= av_get_channel_layout_nb_channels(samplesref->audio->channel_layout);
  48. for (plane = 0; samplesref->data[plane] && plane < 8; plane++) {
  49. uint8_t *data = samplesref->data[plane];
  50. plane_checksum[plane] = av_adler32_update(plane_checksum[plane],
  51. data, linesize);
  52. checksum = av_adler32_update(checksum, data, linesize);
  53. }
  54. av_get_channel_layout_string(chlayout_str, sizeof(chlayout_str), -1,
  55. samplesref->audio->channel_layout);
  56. av_log(ctx, AV_LOG_INFO,
  57. "n:%d pts:%"PRId64" pts_time:%f pos:%"PRId64" "
  58. "fmt:%s chlayout:%s nb_samples:%d rate:%d planar:%d "
  59. "checksum:%08X plane_checksum[%08X %08X %08X %08X %08X %08X %08X %08X]\n",
  60. showinfo->frame,
  61. samplesref->pts, samplesref->pts * av_q2d(inlink->time_base),
  62. samplesref->pos,
  63. av_get_sample_fmt_name(samplesref->format),
  64. chlayout_str,
  65. samplesref->audio->nb_samples,
  66. samplesref->audio->sample_rate,
  67. samplesref->audio->planar,
  68. checksum,
  69. plane_checksum[0], plane_checksum[1], plane_checksum[2], plane_checksum[3],
  70. plane_checksum[4], plane_checksum[5], plane_checksum[6], plane_checksum[7]);
  71. showinfo->frame++;
  72. avfilter_filter_samples(inlink->dst->outputs[0], samplesref);
  73. }
  74. AVFilter avfilter_af_ashowinfo = {
  75. .name = "ashowinfo",
  76. .description = NULL_IF_CONFIG_SMALL("Show textual information for each audio frame."),
  77. .priv_size = sizeof(ShowInfoContext),
  78. .init = init,
  79. .inputs = (const AVFilterPad[]) {{ .name = "default",
  80. .type = AVMEDIA_TYPE_AUDIO,
  81. .get_audio_buffer = avfilter_null_get_audio_buffer,
  82. .filter_samples = filter_samples,
  83. .min_perms = AV_PERM_READ, },
  84. { .name = NULL}},
  85. .outputs = (const AVFilterPad[]) {{ .name = "default",
  86. .type = AVMEDIA_TYPE_AUDIO },
  87. { .name = NULL}},
  88. };