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.

153 lines
4.6KB

  1. /*
  2. * FLAC common code
  3. * Copyright (c) 2009 Justin Ruggles
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/crc.h"
  22. #include "flac.h"
  23. #include "flacdata.h"
  24. static const int8_t sample_size_table[] = { 0, 8, 12, 0, 16, 20, 24, 0 };
  25. static int64_t get_utf8(GetBitContext *gb)
  26. {
  27. int64_t val;
  28. GET_UTF8(val, get_bits(gb, 8), return -1;)
  29. return val;
  30. }
  31. int ff_flac_decode_frame_header(AVCodecContext *avctx, GetBitContext *gb,
  32. FLACFrameInfo *fi, int log_level_offset)
  33. {
  34. int bs_code, sr_code, bps_code;
  35. /* frame sync code */
  36. if ((get_bits(gb, 15) & 0x7FFF) != 0x7FFC) {
  37. av_log(avctx, AV_LOG_ERROR + log_level_offset, "invalid sync code\n");
  38. return -1;
  39. }
  40. /* variable block size stream code */
  41. fi->is_var_size = get_bits1(gb);
  42. /* block size and sample rate codes */
  43. bs_code = get_bits(gb, 4);
  44. sr_code = get_bits(gb, 4);
  45. /* channels and decorrelation */
  46. fi->ch_mode = get_bits(gb, 4);
  47. if (fi->ch_mode < FLAC_MAX_CHANNELS) {
  48. fi->channels = fi->ch_mode + 1;
  49. fi->ch_mode = FLAC_CHMODE_INDEPENDENT;
  50. } else if (fi->ch_mode < FLAC_MAX_CHANNELS + FLAC_CHMODE_MID_SIDE) {
  51. fi->channels = 2;
  52. fi->ch_mode -= FLAC_MAX_CHANNELS - 1;
  53. } else {
  54. av_log(avctx, AV_LOG_ERROR + log_level_offset,
  55. "invalid channel mode: %d\n", fi->ch_mode);
  56. return -1;
  57. }
  58. /* bits per sample */
  59. bps_code = get_bits(gb, 3);
  60. if (bps_code == 3 || bps_code == 7) {
  61. av_log(avctx, AV_LOG_ERROR + log_level_offset,
  62. "invalid sample size code (%d)\n",
  63. bps_code);
  64. return -1;
  65. }
  66. fi->bps = sample_size_table[bps_code];
  67. /* reserved bit */
  68. if (get_bits1(gb)) {
  69. av_log(avctx, AV_LOG_ERROR + log_level_offset,
  70. "broken stream, invalid padding\n");
  71. return -1;
  72. }
  73. /* sample or frame count */
  74. fi->frame_or_sample_num = get_utf8(gb);
  75. if (fi->frame_or_sample_num < 0) {
  76. av_log(avctx, AV_LOG_ERROR + log_level_offset,
  77. "sample/frame number invalid; utf8 fscked\n");
  78. return -1;
  79. }
  80. /* blocksize */
  81. if (bs_code == 0) {
  82. av_log(avctx, AV_LOG_ERROR + log_level_offset,
  83. "reserved blocksize code: 0\n");
  84. return -1;
  85. } else if (bs_code == 6) {
  86. fi->blocksize = get_bits(gb, 8) + 1;
  87. } else if (bs_code == 7) {
  88. fi->blocksize = get_bits(gb, 16) + 1;
  89. } else {
  90. fi->blocksize = ff_flac_blocksize_table[bs_code];
  91. }
  92. /* sample rate */
  93. if (sr_code < 12) {
  94. fi->samplerate = ff_flac_sample_rate_table[sr_code];
  95. } else if (sr_code == 12) {
  96. fi->samplerate = get_bits(gb, 8) * 1000;
  97. } else if (sr_code == 13) {
  98. fi->samplerate = get_bits(gb, 16);
  99. } else if (sr_code == 14) {
  100. fi->samplerate = get_bits(gb, 16) * 10;
  101. } else {
  102. av_log(avctx, AV_LOG_ERROR + log_level_offset,
  103. "illegal sample rate code %d\n",
  104. sr_code);
  105. return -1;
  106. }
  107. /* header CRC-8 check */
  108. skip_bits(gb, 8);
  109. if (av_crc(av_crc_get_table(AV_CRC_8_ATM), 0, gb->buffer,
  110. get_bits_count(gb)/8)) {
  111. av_log(avctx, AV_LOG_ERROR + log_level_offset,
  112. "header crc mismatch\n");
  113. return -1;
  114. }
  115. return 0;
  116. }
  117. int ff_flac_get_max_frame_size(int blocksize, int ch, int bps)
  118. {
  119. /* Technically, there is no limit to FLAC frame size, but an encoder
  120. should not write a frame that is larger than if verbatim encoding mode
  121. were to be used. */
  122. int count;
  123. count = 16; /* frame header */
  124. count += ch * ((7+bps+7)/8); /* subframe headers */
  125. if (ch == 2) {
  126. /* for stereo, need to account for using decorrelation */
  127. count += (( 2*bps+1) * blocksize + 7) / 8;
  128. } else {
  129. count += ( ch*bps * blocksize + 7) / 8;
  130. }
  131. count += 2; /* frame footer */
  132. return count;
  133. }