af_ashowinfo.c 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  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_audio_service_type(AVFilterContext *ctx, AVFrameSideData *sd)
  125. {
  126. enum AVAudioServiceType *ast;
  127. av_log(ctx, AV_LOG_INFO, "audio service type: ");
  128. if (sd->size < sizeof(*ast)) {
  129. av_log(ctx, AV_LOG_INFO, "invalid data");
  130. return;
  131. }
  132. ast = (enum AVAudioServiceType*)sd->data;
  133. switch (*ast) {
  134. case AV_AUDIO_SERVICE_TYPE_MAIN: av_log(ctx, AV_LOG_INFO, "Main Audio Service"); break;
  135. case AV_AUDIO_SERVICE_TYPE_EFFECTS: av_log(ctx, AV_LOG_INFO, "Effects"); break;
  136. case AV_AUDIO_SERVICE_TYPE_VISUALLY_IMPAIRED: av_log(ctx, AV_LOG_INFO, "Visually Impaired"); break;
  137. case AV_AUDIO_SERVICE_TYPE_HEARING_IMPAIRED: av_log(ctx, AV_LOG_INFO, "Hearing Impaired"); break;
  138. case AV_AUDIO_SERVICE_TYPE_DIALOGUE: av_log(ctx, AV_LOG_INFO, "Dialogue"); break;
  139. case AV_AUDIO_SERVICE_TYPE_COMMENTARY: av_log(ctx, AV_LOG_INFO, "Commentary"); break;
  140. case AV_AUDIO_SERVICE_TYPE_EMERGENCY: av_log(ctx, AV_LOG_INFO, "Emergency"); break;
  141. case AV_AUDIO_SERVICE_TYPE_VOICE_OVER: av_log(ctx, AV_LOG_INFO, "Voice Over"); break;
  142. case AV_AUDIO_SERVICE_TYPE_KARAOKE: av_log(ctx, AV_LOG_INFO, "Karaoke"); break;
  143. default: av_log(ctx, AV_LOG_INFO, "unknown"); break;
  144. }
  145. }
  146. static void dump_unknown(AVFilterContext *ctx, AVFrameSideData *sd)
  147. {
  148. av_log(ctx, AV_LOG_INFO, "unknown side data type: %d, size %d bytes", sd->type, sd->size);
  149. }
  150. static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
  151. {
  152. AVFilterContext *ctx = inlink->dst;
  153. AShowInfoContext *s = ctx->priv;
  154. char chlayout_str[128];
  155. uint32_t checksum = 0;
  156. int channels = inlink->channels;
  157. int planar = av_sample_fmt_is_planar(buf->format);
  158. int block_align = av_get_bytes_per_sample(buf->format) * (planar ? 1 : channels);
  159. int data_size = buf->nb_samples * block_align;
  160. int planes = planar ? channels : 1;
  161. int i;
  162. void *tmp_ptr = av_realloc_array(s->plane_checksums, channels, sizeof(*s->plane_checksums));
  163. if (!tmp_ptr)
  164. return AVERROR(ENOMEM);
  165. s->plane_checksums = tmp_ptr;
  166. for (i = 0; i < planes; i++) {
  167. uint8_t *data = buf->extended_data[i];
  168. s->plane_checksums[i] = av_adler32_update(0, data, data_size);
  169. checksum = i ? av_adler32_update(checksum, data, data_size) :
  170. s->plane_checksums[0];
  171. }
  172. av_get_channel_layout_string(chlayout_str, sizeof(chlayout_str), -1,
  173. buf->channel_layout);
  174. av_log(ctx, AV_LOG_INFO,
  175. "n:%"PRId64" pts:%s pts_time:%s pos:%"PRId64" "
  176. "fmt:%s channels:%d chlayout:%s rate:%d nb_samples:%d "
  177. "checksum:%08"PRIX32" ",
  178. inlink->frame_count,
  179. av_ts2str(buf->pts), av_ts2timestr(buf->pts, &inlink->time_base),
  180. av_frame_get_pkt_pos(buf),
  181. av_get_sample_fmt_name(buf->format), av_frame_get_channels(buf), chlayout_str,
  182. buf->sample_rate, buf->nb_samples,
  183. checksum);
  184. av_log(ctx, AV_LOG_INFO, "plane_checksums: [ ");
  185. for (i = 0; i < planes; i++)
  186. av_log(ctx, AV_LOG_INFO, "%08"PRIX32" ", s->plane_checksums[i]);
  187. av_log(ctx, AV_LOG_INFO, "]\n");
  188. for (i = 0; i < buf->nb_side_data; i++) {
  189. AVFrameSideData *sd = buf->side_data[i];
  190. av_log(ctx, AV_LOG_INFO, " side data - ");
  191. switch (sd->type) {
  192. case AV_FRAME_DATA_MATRIXENCODING: dump_matrixenc (ctx, sd); break;
  193. case AV_FRAME_DATA_DOWNMIX_INFO: dump_downmix (ctx, sd); break;
  194. case AV_FRAME_DATA_REPLAYGAIN: dump_replaygain(ctx, sd); break;
  195. case AV_FRAME_DATA_AUDIO_SERVICE_TYPE: dump_audio_service_type(ctx, sd); break;
  196. default: dump_unknown (ctx, sd); break;
  197. }
  198. av_log(ctx, AV_LOG_INFO, "\n");
  199. }
  200. return ff_filter_frame(inlink->dst->outputs[0], buf);
  201. }
  202. static const AVFilterPad inputs[] = {
  203. {
  204. .name = "default",
  205. .type = AVMEDIA_TYPE_AUDIO,
  206. .filter_frame = filter_frame,
  207. },
  208. { NULL }
  209. };
  210. static const AVFilterPad outputs[] = {
  211. {
  212. .name = "default",
  213. .type = AVMEDIA_TYPE_AUDIO,
  214. },
  215. { NULL }
  216. };
  217. AVFilter ff_af_ashowinfo = {
  218. .name = "ashowinfo",
  219. .description = NULL_IF_CONFIG_SMALL("Show textual information for each audio frame."),
  220. .priv_size = sizeof(AShowInfoContext),
  221. .uninit = uninit,
  222. .inputs = inputs,
  223. .outputs = outputs,
  224. };