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.

126 lines
3.4KB

  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * Libav is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with Libav; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. /**
  19. * @file
  20. * replaygain tags parsing
  21. */
  22. #include <stdint.h>
  23. #include <stdlib.h>
  24. #include <string.h>
  25. #include "libavutil/avstring.h"
  26. #include "libavutil/dict.h"
  27. #include "libavutil/intreadwrite.h"
  28. #include "libavutil/mathematics.h"
  29. #include "libavutil/mem.h"
  30. #include "libavutil/replaygain.h"
  31. #include "avformat.h"
  32. #include "replaygain.h"
  33. static int32_t parse_value(const char *value, int32_t min)
  34. {
  35. char *fraction;
  36. int scale = 10000;
  37. int32_t mb = 0;
  38. int sign = 1;
  39. int db;
  40. if (!value)
  41. return min;
  42. value += strspn(value, " \t");
  43. if (*value == '-')
  44. sign = -1;
  45. db = strtol(value, &fraction, 0);
  46. if (*fraction++ == '.') {
  47. while (av_isdigit(*fraction) && scale) {
  48. mb += scale * (*fraction - '0');
  49. scale /= 10;
  50. fraction++;
  51. }
  52. }
  53. if (abs(db) > (INT32_MAX - mb) / 100000)
  54. return min;
  55. return db * 100000 + sign * mb;
  56. }
  57. static int replaygain_export(AVStream *st,
  58. const uint8_t *track_gain, const uint8_t *track_peak,
  59. const uint8_t *album_gain, const uint8_t *album_peak)
  60. {
  61. AVPacketSideData *sd, *tmp;
  62. AVReplayGain *replaygain;
  63. int32_t tg, ag;
  64. uint32_t tp, ap;
  65. tg = parse_value(track_gain, INT32_MIN);
  66. ag = parse_value(album_gain, INT32_MIN);
  67. tp = parse_value(track_peak, 0);
  68. ap = parse_value(album_peak, 0);
  69. if (tg == INT32_MIN && ag == INT32_MIN)
  70. return 0;
  71. replaygain = av_mallocz(sizeof(*replaygain));
  72. if (!replaygain)
  73. return AVERROR(ENOMEM);
  74. tmp = av_realloc_array(st->side_data, st->nb_side_data + 1, sizeof(*tmp));
  75. if (!tmp) {
  76. av_freep(&replaygain);
  77. return AVERROR(ENOMEM);
  78. }
  79. st->side_data = tmp;
  80. st->nb_side_data++;
  81. sd = &st->side_data[st->nb_side_data - 1];
  82. sd->type = AV_PKT_DATA_REPLAYGAIN;
  83. sd->data = (uint8_t*)replaygain;
  84. sd->size = sizeof(*replaygain);
  85. replaygain->track_gain = tg;
  86. replaygain->track_peak = tp;
  87. replaygain->album_gain = ag;
  88. replaygain->album_peak = ap;
  89. return 0;
  90. }
  91. int ff_replaygain_export(AVStream *st, AVDictionary *metadata)
  92. {
  93. const AVDictionaryEntry *tg, *tp, *ag, *ap;
  94. tg = av_dict_get(metadata, "REPLAYGAIN_TRACK_GAIN", NULL, 0);
  95. tp = av_dict_get(metadata, "REPLAYGAIN_TRACK_PEAK", NULL, 0);
  96. ag = av_dict_get(metadata, "REPLAYGAIN_ALBUM_GAIN", NULL, 0);
  97. ap = av_dict_get(metadata, "REPLAYGAIN_ALBUM_PEAK", NULL, 0);
  98. return replaygain_export(st,
  99. tg ? tg->value : NULL,
  100. tp ? tp->value : NULL,
  101. ag ? ag->value : NULL,
  102. ap ? ap->value : NULL);
  103. }