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.

163 lines
5.3KB

  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 "libavutil/log.h"
  24. #include "avcodec.h"
  25. #include "internal.h"
  26. #include "mathops.h"
  27. #define AES3_HEADER_LEN 4
  28. static int s302m_parse_frame_header(AVCodecContext *avctx, const uint8_t *buf,
  29. int buf_size)
  30. {
  31. uint32_t h;
  32. int frame_size, channels, bits;
  33. if (buf_size <= AES3_HEADER_LEN) {
  34. av_log(avctx, AV_LOG_ERROR, "frame is too short\n");
  35. return AVERROR_INVALIDDATA;
  36. }
  37. /*
  38. * AES3 header :
  39. * size: 16
  40. * number channels 2
  41. * channel_id 8
  42. * bits per samples 2
  43. * alignments 4
  44. */
  45. h = AV_RB32(buf);
  46. frame_size = (h >> 16) & 0xffff;
  47. channels = ((h >> 14) & 0x0003) * 2 + 2;
  48. bits = ((h >> 4) & 0x0003) * 4 + 16;
  49. if (AES3_HEADER_LEN + frame_size != buf_size || bits > 24) {
  50. av_log(avctx, AV_LOG_ERROR, "frame has invalid header\n");
  51. return AVERROR_INVALIDDATA;
  52. }
  53. /* Set output properties */
  54. avctx->bits_per_raw_sample = bits;
  55. if (bits > 16)
  56. avctx->sample_fmt = AV_SAMPLE_FMT_S32;
  57. else
  58. avctx->sample_fmt = AV_SAMPLE_FMT_S16;
  59. avctx->channels = channels;
  60. switch(channels) {
  61. case 2:
  62. avctx->channel_layout = AV_CH_LAYOUT_STEREO;
  63. break;
  64. case 4:
  65. avctx->channel_layout = AV_CH_LAYOUT_QUAD;
  66. break;
  67. case 6:
  68. avctx->channel_layout = AV_CH_LAYOUT_5POINT1_BACK;
  69. break;
  70. case 8:
  71. avctx->channel_layout = AV_CH_LAYOUT_5POINT1_BACK | AV_CH_LAYOUT_STEREO_DOWNMIX;
  72. }
  73. avctx->bit_rate = 48000 * avctx->channels * (avctx->bits_per_raw_sample + 4) +
  74. 32 * (48000 / (buf_size * 8 /
  75. (avctx->channels *
  76. (avctx->bits_per_raw_sample + 4))));
  77. return frame_size;
  78. }
  79. static int s302m_decode_frame(AVCodecContext *avctx, void *data,
  80. int *got_frame_ptr, AVPacket *avpkt)
  81. {
  82. AVFrame *frame = data;
  83. const uint8_t *buf = avpkt->data;
  84. int buf_size = avpkt->size;
  85. int block_size, ret;
  86. int frame_size = s302m_parse_frame_header(avctx, buf, buf_size);
  87. if (frame_size < 0)
  88. return frame_size;
  89. buf_size -= AES3_HEADER_LEN;
  90. buf += AES3_HEADER_LEN;
  91. /* get output buffer */
  92. block_size = (avctx->bits_per_raw_sample + 4) / 4;
  93. frame->nb_samples = 2 * (buf_size / block_size) / avctx->channels;
  94. if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
  95. return ret;
  96. buf_size = (frame->nb_samples * avctx->channels / 2) * block_size;
  97. if (avctx->bits_per_raw_sample == 24) {
  98. uint32_t *o = (uint32_t *)frame->data[0];
  99. for (; buf_size > 6; buf_size -= 7) {
  100. *o++ = (ff_reverse[buf[2]] << 24) |
  101. (ff_reverse[buf[1]] << 16) |
  102. (ff_reverse[buf[0]] << 8);
  103. *o++ = (ff_reverse[buf[6] & 0xf0] << 28) |
  104. (ff_reverse[buf[5]] << 20) |
  105. (ff_reverse[buf[4]] << 12) |
  106. (ff_reverse[buf[3] & 0x0f] << 4);
  107. buf += 7;
  108. }
  109. } else if (avctx->bits_per_raw_sample == 20) {
  110. uint32_t *o = (uint32_t *)frame->data[0];
  111. for (; buf_size > 5; buf_size -= 6) {
  112. *o++ = (ff_reverse[buf[2] & 0xf0] << 28) |
  113. (ff_reverse[buf[1]] << 20) |
  114. (ff_reverse[buf[0]] << 12);
  115. *o++ = (ff_reverse[buf[5] & 0xf0] << 28) |
  116. (ff_reverse[buf[4]] << 20) |
  117. (ff_reverse[buf[3]] << 12);
  118. buf += 6;
  119. }
  120. } else {
  121. uint16_t *o = (uint16_t *)frame->data[0];
  122. for (; buf_size > 4; buf_size -= 5) {
  123. *o++ = (ff_reverse[buf[1]] << 8) |
  124. ff_reverse[buf[0]];
  125. *o++ = (ff_reverse[buf[4] & 0xf0] << 12) |
  126. (ff_reverse[buf[3]] << 4) |
  127. (ff_reverse[buf[2]] >> 4);
  128. buf += 5;
  129. }
  130. }
  131. avctx->sample_rate = 48000;
  132. *got_frame_ptr = 1;
  133. return avpkt->size;
  134. }
  135. AVCodec ff_s302m_decoder = {
  136. .name = "s302m",
  137. .long_name = NULL_IF_CONFIG_SMALL("SMPTE 302M"),
  138. .type = AVMEDIA_TYPE_AUDIO,
  139. .id = AV_CODEC_ID_S302M,
  140. .decode = s302m_decode_frame,
  141. .capabilities = CODEC_CAP_DR1,
  142. };