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.

106 lines
3.0KB

  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 "internal.h"
  33. #include "replaygain.h"
  34. static int32_t parse_value(const char *value, int32_t min)
  35. {
  36. char *fraction;
  37. int scale = 10000;
  38. int32_t mb = 0;
  39. int sign = 1;
  40. int db;
  41. if (!value)
  42. return min;
  43. value += strspn(value, " \t");
  44. if (*value == '-')
  45. sign = -1;
  46. db = strtol(value, &fraction, 0);
  47. if (*fraction++ == '.') {
  48. while (av_isdigit(*fraction) && scale) {
  49. mb += scale * (*fraction - '0');
  50. scale /= 10;
  51. fraction++;
  52. }
  53. }
  54. if (abs(db) > (INT32_MAX - mb) / 100000)
  55. return min;
  56. return db * 100000 + sign * mb;
  57. }
  58. int ff_replaygain_export_raw(AVStream *st, int32_t tg, uint32_t tp,
  59. int32_t ag, uint32_t ap)
  60. {
  61. AVReplayGain *replaygain;
  62. if (tg == INT32_MIN && ag == INT32_MIN)
  63. return 0;
  64. replaygain = (AVReplayGain*)av_stream_new_side_data(st, AV_PKT_DATA_REPLAYGAIN,
  65. sizeof(*replaygain));
  66. if (!replaygain)
  67. return AVERROR(ENOMEM);
  68. replaygain->track_gain = tg;
  69. replaygain->track_peak = tp;
  70. replaygain->album_gain = ag;
  71. replaygain->album_peak = ap;
  72. return 0;
  73. }
  74. int ff_replaygain_export(AVStream *st, AVDictionary *metadata)
  75. {
  76. const AVDictionaryEntry *tg, *tp, *ag, *ap;
  77. tg = av_dict_get(metadata, "REPLAYGAIN_TRACK_GAIN", NULL, 0);
  78. tp = av_dict_get(metadata, "REPLAYGAIN_TRACK_PEAK", NULL, 0);
  79. ag = av_dict_get(metadata, "REPLAYGAIN_ALBUM_GAIN", NULL, 0);
  80. ap = av_dict_get(metadata, "REPLAYGAIN_ALBUM_PEAK", NULL, 0);
  81. return ff_replaygain_export_raw(st,
  82. parse_value(tg ? tg->value : NULL, INT32_MIN),
  83. parse_value(tp ? tp->value : NULL, 0),
  84. parse_value(ag ? ag->value : NULL, INT32_MIN),
  85. parse_value(ap ? ap->value : NULL, 0));
  86. }