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.

81 lines
2.3KB

  1. /*
  2. * codec2 utility functions
  3. * Copyright (c) 2017 Tomas Härdin
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <string.h>
  22. #include "internal.h"
  23. #include "libavcodec/codec2utils.h"
  24. int avpriv_codec2_mode_bit_rate(void *logctx, int mode)
  25. {
  26. int frame_size = avpriv_codec2_mode_frame_size(logctx, mode);
  27. int block_align = avpriv_codec2_mode_block_align(logctx, mode);
  28. if (frame_size <= 0 || block_align <= 0) {
  29. return 0;
  30. }
  31. return 8 * 8000 * block_align / frame_size;
  32. }
  33. int avpriv_codec2_mode_frame_size(void *logctx, int mode)
  34. {
  35. int frame_size_table[AVPRIV_CODEC2_MODE_MAX+1] = {
  36. 160, // 3200
  37. 160, // 2400
  38. 320, // 1600
  39. 320, // 1400
  40. 320, // 1300
  41. 320, // 1200
  42. 320, // 700
  43. 320, // 700B
  44. 320, // 700C
  45. };
  46. if (mode < 0 || mode > AVPRIV_CODEC2_MODE_MAX) {
  47. av_log(logctx, AV_LOG_ERROR, "unknown codec2 mode %i, can't find frame_size\n", mode);
  48. return 0;
  49. } else {
  50. return frame_size_table[mode];
  51. }
  52. }
  53. int avpriv_codec2_mode_block_align(void *logctx, int mode)
  54. {
  55. int block_align_table[AVPRIV_CODEC2_MODE_MAX+1] = {
  56. 8, // 3200
  57. 6, // 2400
  58. 8, // 1600
  59. 7, // 1400
  60. 7, // 1300
  61. 6, // 1200
  62. 4, // 700
  63. 4, // 700B
  64. 4, // 700C
  65. };
  66. if (mode < 0 || mode > AVPRIV_CODEC2_MODE_MAX) {
  67. av_log(logctx, AV_LOG_ERROR, "unknown codec2 mode %i, can't find block_align\n", mode);
  68. return 0;
  69. } else {
  70. return block_align_table[mode];
  71. }
  72. }