af_ashowinfo.c 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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 <inttypes.h>
  25. #include <stddef.h>
  26. #include "libavutil/adler32.h"
  27. #include "libavutil/attributes.h"
  28. #include "libavutil/channel_layout.h"
  29. #include "libavutil/common.h"
  30. #include "libavutil/downmix_info.h"
  31. #include "libavutil/intreadwrite.h"
  32. #include "libavutil/mem.h"
  33. #include "libavutil/replaygain.h"
  34. #include "libavutil/timestamp.h"
  35. #include "libavutil/samplefmt.h"
  36. #include "audio.h"
  37. #include "avfilter.h"
  38. #include "internal.h"
  39. typedef struct AShowInfoContext {
  40. /**
  41. * Scratch space for individual plane checksums for planar audio
  42. */
  43. uint32_t *plane_checksums;
  44. } AShowInfoContext;
  45. static av_cold void uninit(AVFilterContext *ctx)
  46. {
  47. AShowInfoContext *s = ctx->priv;
  48. av_freep(&s->plane_checksums);
  49. }
  50. static void dump_matrixenc(AVFilterContext *ctx, AVFrameSideData *sd)
  51. {
  52. enum AVMatrixEncoding enc;
  53. av_log(ctx, AV_LOG_INFO, "matrix encoding: ");
  54. if (sd->size < sizeof(enum AVMatrixEncoding)) {
  55. av_log(ctx, AV_LOG_INFO, "invalid data");
  56. return;
  57. }
  58. enc = *(enum AVMatrixEncoding *)sd->data;
  59. switch (enc) {
  60. case AV_MATRIX_ENCODING_NONE: av_log(ctx, AV_LOG_INFO, "none"); break;
  61. case AV_MATRIX_ENCODING_DOLBY: av_log(ctx, AV_LOG_INFO, "Dolby Surround"); break;
  62. case AV_MATRIX_ENCODING_DPLII: av_log(ctx, AV_LOG_INFO, "Dolby Pro Logic II"); break;
  63. case AV_MATRIX_ENCODING_DPLIIX: av_log(ctx, AV_LOG_INFO, "Dolby Pro Logic IIx"); break;
  64. case AV_MATRIX_ENCODING_DPLIIZ: av_log(ctx, AV_LOG_INFO, "Dolby Pro Logic IIz"); break;
  65. case AV_MATRIX_ENCODING_DOLBYEX: av_log(ctx, AV_LOG_INFO, "Dolby EX"); break;
  66. case AV_MATRIX_ENCODING_DOLBYHEADPHONE: av_log(ctx, AV_LOG_INFO, "Dolby Headphone"); break;
  67. default: av_log(ctx, AV_LOG_WARNING, "unknown"); break;
  68. }
  69. }
  70. static void dump_downmix(AVFilterContext *ctx, AVFrameSideData *sd)
  71. {
  72. AVDownmixInfo *di;
  73. av_log(ctx, AV_LOG_INFO, "downmix: ");
  74. if (sd->size < sizeof(*di)) {
  75. av_log(ctx, AV_LOG_INFO, "invalid data");
  76. return;
  77. }
  78. di = (AVDownmixInfo *)sd->data;
  79. av_log(ctx, AV_LOG_INFO, "preferred downmix type - ");
  80. switch (di->preferred_downmix_type) {
  81. case AV_DOWNMIX_TYPE_LORO: av_log(ctx, AV_LOG_INFO, "Lo/Ro"); break;
  82. case AV_DOWNMIX_TYPE_LTRT: av_log(ctx, AV_LOG_INFO, "Lt/Rt"); break;
  83. case AV_DOWNMIX_TYPE_DPLII: av_log(ctx, AV_LOG_INFO, "Dolby Pro Logic II"); break;
  84. default: av_log(ctx, AV_LOG_WARNING, "unknown"); break;
  85. }
  86. av_log(ctx, AV_LOG_INFO, " Mix levels: center %f (%f ltrt) - "
  87. "surround %f (%f ltrt) - lfe %f",
  88. di->center_mix_level, di->center_mix_level_ltrt,
  89. di->surround_mix_level, di->surround_mix_level_ltrt,
  90. di->lfe_mix_level);
  91. }
  92. static void print_gain(AVFilterContext *ctx, const char *str, int32_t gain)
  93. {
  94. av_log(ctx, AV_LOG_INFO, "%s - ", str);
  95. if (gain == INT32_MIN)
  96. av_log(ctx, AV_LOG_INFO, "unknown");
  97. else
  98. av_log(ctx, AV_LOG_INFO, "%f", gain / 100000.0f);
  99. av_log(ctx, AV_LOG_INFO, ", ");
  100. }
  101. static void print_peak(AVFilterContext *ctx, const char *str, uint32_t peak)
  102. {
  103. av_log(ctx, AV_LOG_INFO, "%s - ", str);
  104. if (!peak)
  105. av_log(ctx, AV_LOG_INFO, "unknown");
  106. else
  107. av_log(ctx, AV_LOG_INFO, "%f", (float)peak / UINT32_MAX);
  108. av_log(ctx, AV_LOG_INFO, ", ");
  109. }
  110. static void dump_replaygain(AVFilterContext *ctx, AVFrameSideData *sd)
  111. {
  112. AVReplayGain *rg;
  113. av_log(ctx, AV_LOG_INFO, "replaygain: ");
  114. if (sd->size < sizeof(*rg)) {
  115. av_log(ctx, AV_LOG_INFO, "invalid data");
  116. return;
  117. }
  118. rg = (AVReplayGain*)sd->data;
  119. print_gain(ctx, "track gain", rg->track_gain);
  120. print_peak(ctx, "track peak", rg->track_peak);
  121. print_gain(ctx, "album gain", rg->album_gain);
  122. print_peak(ctx, "album peak", rg->album_peak);
  123. }
  124. static void dump_unknown(AVFilterContext *ctx, AVFrameSideData *sd)
  125. {
  126. av_log(ctx, AV_LOG_INFO, "unknown side data type: %d, size %d bytes", sd->type, sd->size);
  127. }
  128. static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
  129. {
  130. AVFilterContext *ctx = inlink->dst;
  131. AShowInfoContext *s = ctx->priv;
  132. char chlayout_str[128];
  133. uint32_t checksum = 0;
  134. int channels = inlink->channels;
  135. int planar = av_sample_fmt_is_planar(buf->format);
  136. int block_align = av_get_bytes_per_sample(buf->format) * (planar ? 1 : channels);
  137. int data_size = buf->nb_samples * block_align;
  138. int planes = planar ? channels : 1;
  139. int i;
  140. void *tmp_ptr = av_realloc(s->plane_checksums, channels * sizeof(*s->plane_checksums));
  141. if (!tmp_ptr)
  142. return AVERROR(ENOMEM);
  143. s->plane_checksums = tmp_ptr;
  144. for (i = 0; i < planes; i++) {
  145. uint8_t *data = buf->extended_data[i];
  146. s->plane_checksums[i] = av_adler32_update(0, data, data_size);
  147. checksum = i ? av_adler32_update(checksum, data, data_size) :
  148. s->plane_checksums[0];
  149. }
  150. av_get_channel_layout_string(chlayout_str, sizeof(chlayout_str), -1,
  151. buf->channel_layout);
  152. av_log(ctx, AV_LOG_INFO,
  153. "n:%"PRId64" pts:%s pts_time:%s pos:%"PRId64" "
  154. "fmt:%s channels:%d chlayout:%s rate:%d nb_samples:%d "
  155. "checksum:%08"PRIX32" ",
  156. inlink->frame_count,
  157. av_ts2str(buf->pts), av_ts2timestr(buf->pts, &inlink->time_base),
  158. av_frame_get_pkt_pos(buf),
  159. av_get_sample_fmt_name(buf->format), av_frame_get_channels(buf), chlayout_str,
  160. buf->sample_rate, buf->nb_samples,
  161. checksum);
  162. av_log(ctx, AV_LOG_INFO, "plane_checksums: [ ");
  163. for (i = 0; i < planes; i++)
  164. av_log(ctx, AV_LOG_INFO, "%08"PRIX32" ", s->plane_checksums[i]);
  165. av_log(ctx, AV_LOG_INFO, "]\n");
  166. for (i = 0; i < buf->nb_side_data; i++) {
  167. AVFrameSideData *sd = buf->side_data[i];
  168. av_log(ctx, AV_LOG_INFO, " side data - ");
  169. switch (sd->type) {
  170. case AV_FRAME_DATA_MATRIXENCODING: dump_matrixenc (ctx, sd); break;
  171. case AV_FRAME_DATA_DOWNMIX_INFO: dump_downmix (ctx, sd); break;
  172. case AV_FRAME_DATA_REPLAYGAIN: dump_replaygain(ctx, sd); break;
  173. default: dump_unknown (ctx, sd); break;
  174. }
  175. av_log(ctx, AV_LOG_INFO, "\n");
  176. }
  177. return ff_filter_frame(inlink->dst->outputs[0], buf);
  178. }
  179. static const AVFilterPad inputs[] = {
  180. {
  181. .name = "default",
  182. .type = AVMEDIA_TYPE_AUDIO,
  183. .filter_frame = filter_frame,
  184. },
  185. { NULL }
  186. };
  187. static const AVFilterPad outputs[] = {
  188. {
  189. .name = "default",
  190. .type = AVMEDIA_TYPE_AUDIO,
  191. },
  192. { NULL }
  193. };
  194. AVFilter ff_af_ashowinfo = {
  195. .name = "ashowinfo",
  196. .description = NULL_IF_CONFIG_SMALL("Show textual information for each audio frame."),
  197. .priv_size = sizeof(AShowInfoContext),
  198. .uninit = uninit,
  199. .inputs = inputs,
  200. .outputs = outputs,
  201. };