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.

152 lines
5.0KB

  1. /*
  2. * SMPTE 302M decoder
  3. * Copyright (c) 2008 Laurent Aimar <fenrir@videolan.org>
  4. * Copyright (c) 2009 Baptiste Coudurier <baptiste.coudurier@gmail.com>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "libavutil/intreadwrite.h"
  23. #include "avcodec.h"
  24. #define AES3_HEADER_LEN 4
  25. static int s302m_parse_frame_header(AVCodecContext *avctx, const uint8_t *buf,
  26. int buf_size)
  27. {
  28. uint32_t h;
  29. int frame_size, channels, id, bits;
  30. if (buf_size <= AES3_HEADER_LEN) {
  31. av_log(avctx, AV_LOG_ERROR, "frame is too short\n");
  32. return AVERROR_INVALIDDATA;
  33. }
  34. /*
  35. * AES3 header :
  36. * size: 16
  37. * number channels 2
  38. * channel_id 8
  39. * bits per samples 2
  40. * alignments 4
  41. */
  42. h = AV_RB32(buf);
  43. frame_size = (h >> 16) & 0xffff;
  44. channels = ((h >> 14) & 0x0003) * 2 + 2;
  45. id = (h >> 6) & 0x00ff;
  46. bits = ((h >> 4) & 0x0003) * 4 + 16;
  47. if (AES3_HEADER_LEN + frame_size != buf_size || bits > 24) {
  48. av_log(avctx, AV_LOG_ERROR, "frame has invalid header\n");
  49. return AVERROR_INVALIDDATA;
  50. }
  51. /* Set output properties */
  52. avctx->bits_per_coded_sample = bits;
  53. if (bits > 16)
  54. avctx->sample_fmt = SAMPLE_FMT_S32;
  55. else
  56. avctx->sample_fmt = SAMPLE_FMT_S16;
  57. avctx->channels = channels;
  58. switch(channels) {
  59. case 2:
  60. avctx->channel_layout = AV_CH_LAYOUT_STEREO;
  61. break;
  62. case 4:
  63. avctx->channel_layout = AV_CH_LAYOUT_QUAD;
  64. break;
  65. case 8:
  66. avctx->channel_layout = AV_CH_LAYOUT_5POINT1_BACK | AV_CH_LAYOUT_STEREO_DOWNMIX;
  67. }
  68. avctx->sample_rate = 48000;
  69. avctx->bit_rate = 48000 * avctx->channels * (avctx->bits_per_coded_sample + 4) +
  70. 32 * (48000 / (buf_size * 8 /
  71. (avctx->channels *
  72. (avctx->bits_per_coded_sample + 4))));
  73. return frame_size;
  74. }
  75. static int s302m_decode_frame(AVCodecContext *avctx, void *data,
  76. int *data_size, AVPacket *avpkt)
  77. {
  78. const uint8_t *buf = avpkt->data;
  79. int buf_size = avpkt->size;
  80. int frame_size = s302m_parse_frame_header(avctx, buf, buf_size);
  81. if (frame_size < 0)
  82. return frame_size;
  83. buf_size -= AES3_HEADER_LEN;
  84. buf += AES3_HEADER_LEN;
  85. if (*data_size < 4 * buf_size * 8 / (avctx->bits_per_coded_sample + 4))
  86. return -1;
  87. if (avctx->bits_per_coded_sample == 24) {
  88. uint32_t *o = data;
  89. for (; buf_size > 6; buf_size -= 7) {
  90. *o++ = (av_reverse[buf[2]] << 24) |
  91. (av_reverse[buf[1]] << 16) |
  92. (av_reverse[buf[0]] << 8);
  93. *o++ = (av_reverse[buf[6] & 0xf0] << 28) |
  94. (av_reverse[buf[5]] << 20) |
  95. (av_reverse[buf[4]] << 12) |
  96. (av_reverse[buf[3] & 0x0f] << 8);
  97. buf += 7;
  98. }
  99. *data_size = (uint8_t*) o - (uint8_t*) data;
  100. } else if (avctx->bits_per_coded_sample == 20) {
  101. uint32_t *o = data;
  102. for (; buf_size > 5; buf_size -= 6) {
  103. *o++ = (av_reverse[buf[2] & 0xf0] << 28) |
  104. (av_reverse[buf[1]] << 20) |
  105. (av_reverse[buf[0]] << 12);
  106. *o++ = (av_reverse[buf[5] & 0xf0] << 28) |
  107. (av_reverse[buf[4]] << 20) |
  108. (av_reverse[buf[3]] << 12);
  109. buf += 6;
  110. }
  111. *data_size = (uint8_t*) o - (uint8_t*) data;
  112. } else {
  113. uint16_t *o = data;
  114. for (; buf_size > 4; buf_size -= 5) {
  115. *o++ = (av_reverse[buf[1]] << 8) |
  116. av_reverse[buf[0]];
  117. *o++ = (av_reverse[buf[4] & 0xf0] << 12) |
  118. (av_reverse[buf[3]] << 4) |
  119. av_reverse[buf[2] & 0x0f];
  120. buf += 5;
  121. }
  122. *data_size = (uint8_t*) o - (uint8_t*) data;
  123. }
  124. return buf - avpkt->data;
  125. }
  126. AVCodec ff_s302m_decoder = {
  127. .name = "s302m",
  128. .type = AVMEDIA_TYPE_AUDIO,
  129. .id = CODEC_ID_S302M,
  130. .priv_data_size = 0,
  131. .decode = s302m_decode_frame,
  132. .long_name = NULL_IF_CONFIG_SMALL("SMPTE 302M"),
  133. };