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.

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