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.

100 lines
3.6KB

  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 fow 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. for (plane = 0; samplesref->data[plane] && plane < 8; plane++) {
  44. uint8_t *data = samplesref->data[plane];
  45. int linesize = samplesref->linesize[plane];
  46. plane_checksum[plane] = av_adler32_update(plane_checksum[plane],
  47. data, linesize);
  48. checksum = av_adler32_update(checksum, data, linesize);
  49. }
  50. av_get_channel_layout_string(chlayout_str, sizeof(chlayout_str), -1,
  51. samplesref->audio->channel_layout);
  52. av_log(ctx, AV_LOG_INFO,
  53. "n:%d pts:%"PRId64" pts_time:%f pos:%"PRId64" "
  54. "fmt:%s chlayout:%s nb_samples:%d rate:%d planar:%d "
  55. "checksum:%u plane_checksum[%u %u %u %u %u %u %u %u]\n",
  56. showinfo->frame,
  57. samplesref->pts, samplesref->pts * av_q2d(inlink->time_base),
  58. samplesref->pos,
  59. av_get_sample_fmt_name(samplesref->format),
  60. chlayout_str,
  61. samplesref->audio->nb_samples,
  62. samplesref->audio->sample_rate,
  63. samplesref->audio->planar,
  64. checksum,
  65. plane_checksum[0], plane_checksum[1], plane_checksum[2], plane_checksum[3],
  66. plane_checksum[4], plane_checksum[5], plane_checksum[6], plane_checksum[7]);
  67. showinfo->frame++;
  68. avfilter_filter_samples(inlink->dst->outputs[0], samplesref);
  69. }
  70. AVFilter avfilter_af_ashowinfo = {
  71. .name = "ashowinfo",
  72. .description = NULL_IF_CONFIG_SMALL("Show textual information for each audio frame."),
  73. .priv_size = sizeof(ShowInfoContext),
  74. .init = init,
  75. .inputs = (AVFilterPad[]) {{ .name = "default",
  76. .type = AVMEDIA_TYPE_AUDIO,
  77. .get_audio_buffer = avfilter_null_get_audio_buffer,
  78. .filter_samples = filter_samples,
  79. .min_perms = AV_PERM_READ, },
  80. { .name = NULL}},
  81. .outputs = (AVFilterPad[]) {{ .name = "default",
  82. .type = AVMEDIA_TYPE_AUDIO },
  83. { .name = NULL}},
  84. };