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.

181 lines
5.8KB

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