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.

167 lines
5.4KB

  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 Libav.
  7. *
  8. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "libavutil/common.h"
  23. #include "libavutil/intreadwrite.h"
  24. #include "avcodec.h"
  25. #define AES3_HEADER_LEN 4
  26. typedef struct S302MDecodeContext {
  27. AVFrame frame;
  28. } S302MDecodeContext;
  29. static int s302m_parse_frame_header(AVCodecContext *avctx, const uint8_t *buf,
  30. int buf_size)
  31. {
  32. uint32_t h;
  33. int frame_size, channels, bits;
  34. if (buf_size <= AES3_HEADER_LEN) {
  35. av_log(avctx, AV_LOG_ERROR, "frame is too short\n");
  36. return AVERROR_INVALIDDATA;
  37. }
  38. /*
  39. * AES3 header :
  40. * size: 16
  41. * number channels 2
  42. * channel_id 8
  43. * bits per samples 2
  44. * alignments 4
  45. */
  46. h = AV_RB32(buf);
  47. frame_size = (h >> 16) & 0xffff;
  48. channels = ((h >> 14) & 0x0003) * 2 + 2;
  49. bits = ((h >> 4) & 0x0003) * 4 + 16;
  50. if (AES3_HEADER_LEN + frame_size != buf_size || bits > 24) {
  51. av_log(avctx, AV_LOG_ERROR, "frame has invalid header\n");
  52. return AVERROR_INVALIDDATA;
  53. }
  54. /* Set output properties */
  55. avctx->bits_per_coded_sample = bits;
  56. if (bits > 16)
  57. avctx->sample_fmt = AV_SAMPLE_FMT_S32;
  58. else
  59. avctx->sample_fmt = AV_SAMPLE_FMT_S16;
  60. avctx->channels = channels;
  61. avctx->sample_rate = 48000;
  62. avctx->bit_rate = 48000 * avctx->channels * (avctx->bits_per_coded_sample + 4) +
  63. 32 * (48000 / (buf_size * 8 /
  64. (avctx->channels *
  65. (avctx->bits_per_coded_sample + 4))));
  66. return frame_size;
  67. }
  68. static int s302m_decode_frame(AVCodecContext *avctx, void *data,
  69. int *got_frame_ptr, AVPacket *avpkt)
  70. {
  71. S302MDecodeContext *s = avctx->priv_data;
  72. const uint8_t *buf = avpkt->data;
  73. int buf_size = avpkt->size;
  74. int block_size, ret;
  75. int frame_size = s302m_parse_frame_header(avctx, buf, buf_size);
  76. if (frame_size < 0)
  77. return frame_size;
  78. buf_size -= AES3_HEADER_LEN;
  79. buf += AES3_HEADER_LEN;
  80. /* get output buffer */
  81. block_size = (avctx->bits_per_coded_sample + 4) / 4;
  82. s->frame.nb_samples = 2 * (buf_size / block_size) / avctx->channels;
  83. if ((ret = avctx->get_buffer(avctx, &s->frame)) < 0) {
  84. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  85. return ret;
  86. }
  87. buf_size = (s->frame.nb_samples * avctx->channels / 2) * block_size;
  88. if (avctx->bits_per_coded_sample == 24) {
  89. uint32_t *o = (uint32_t *)s->frame.data[0];
  90. for (; buf_size > 6; buf_size -= 7) {
  91. *o++ = (av_reverse[buf[2]] << 24) |
  92. (av_reverse[buf[1]] << 16) |
  93. (av_reverse[buf[0]] << 8);
  94. *o++ = (av_reverse[buf[6] & 0xf0] << 28) |
  95. (av_reverse[buf[5]] << 20) |
  96. (av_reverse[buf[4]] << 12) |
  97. (av_reverse[buf[3] & 0x0f] << 4);
  98. buf += 7;
  99. }
  100. } else if (avctx->bits_per_coded_sample == 20) {
  101. uint32_t *o = (uint32_t *)s->frame.data[0];
  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. } else {
  112. uint16_t *o = (uint16_t *)s->frame.data[0];
  113. for (; buf_size > 4; buf_size -= 5) {
  114. *o++ = (av_reverse[buf[1]] << 8) |
  115. av_reverse[buf[0]];
  116. *o++ = (av_reverse[buf[4] & 0xf0] << 12) |
  117. (av_reverse[buf[3]] << 4) |
  118. (av_reverse[buf[2]] >> 4);
  119. buf += 5;
  120. }
  121. }
  122. *got_frame_ptr = 1;
  123. *(AVFrame *)data = s->frame;
  124. return avpkt->size;
  125. }
  126. static int s302m_decode_init(AVCodecContext *avctx)
  127. {
  128. S302MDecodeContext *s = avctx->priv_data;
  129. avcodec_get_frame_defaults(&s->frame);
  130. avctx->coded_frame = &s->frame;
  131. return 0;
  132. }
  133. AVCodec ff_s302m_decoder = {
  134. .name = "s302m",
  135. .type = AVMEDIA_TYPE_AUDIO,
  136. .id = AV_CODEC_ID_S302M,
  137. .priv_data_size = sizeof(S302MDecodeContext),
  138. .init = s302m_decode_init,
  139. .decode = s302m_decode_frame,
  140. .capabilities = CODEC_CAP_DR1,
  141. .long_name = NULL_IF_CONFIG_SMALL("SMPTE 302M"),
  142. };