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.

166 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 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 "avcodec.h"
  24. #define AES3_HEADER_LEN 4
  25. typedef struct S302MDecodeContext {
  26. AVFrame frame;
  27. } S302MDecodeContext;
  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_coded_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. avctx->sample_rate = 48000;
  61. avctx->bit_rate = 48000 * avctx->channels * (avctx->bits_per_coded_sample + 4) +
  62. 32 * (48000 / (buf_size * 8 /
  63. (avctx->channels *
  64. (avctx->bits_per_coded_sample + 4))));
  65. return frame_size;
  66. }
  67. static int s302m_decode_frame(AVCodecContext *avctx, void *data,
  68. int *got_frame_ptr, AVPacket *avpkt)
  69. {
  70. S302MDecodeContext *s = avctx->priv_data;
  71. const uint8_t *buf = avpkt->data;
  72. int buf_size = avpkt->size;
  73. int block_size, ret;
  74. int frame_size = s302m_parse_frame_header(avctx, buf, buf_size);
  75. if (frame_size < 0)
  76. return frame_size;
  77. buf_size -= AES3_HEADER_LEN;
  78. buf += AES3_HEADER_LEN;
  79. /* get output buffer */
  80. block_size = (avctx->bits_per_coded_sample + 4) / 4;
  81. s->frame.nb_samples = 2 * (buf_size / block_size) / avctx->channels;
  82. if ((ret = avctx->get_buffer(avctx, &s->frame)) < 0) {
  83. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  84. return ret;
  85. }
  86. buf_size = (s->frame.nb_samples * avctx->channels / 2) * block_size;
  87. if (avctx->bits_per_coded_sample == 24) {
  88. uint32_t *o = (uint32_t *)s->frame.data[0];
  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] << 4);
  97. buf += 7;
  98. }
  99. } else if (avctx->bits_per_coded_sample == 20) {
  100. uint32_t *o = (uint32_t *)s->frame.data[0];
  101. for (; buf_size > 5; buf_size -= 6) {
  102. *o++ = (av_reverse[buf[2] & 0xf0] << 28) |
  103. (av_reverse[buf[1]] << 20) |
  104. (av_reverse[buf[0]] << 12);
  105. *o++ = (av_reverse[buf[5] & 0xf0] << 28) |
  106. (av_reverse[buf[4]] << 20) |
  107. (av_reverse[buf[3]] << 12);
  108. buf += 6;
  109. }
  110. } else {
  111. uint16_t *o = (uint16_t *)s->frame.data[0];
  112. for (; buf_size > 4; buf_size -= 5) {
  113. *o++ = (av_reverse[buf[1]] << 8) |
  114. av_reverse[buf[0]];
  115. *o++ = (av_reverse[buf[4] & 0xf0] << 12) |
  116. (av_reverse[buf[3]] << 4) |
  117. (av_reverse[buf[2]] >> 4);
  118. buf += 5;
  119. }
  120. }
  121. *got_frame_ptr = 1;
  122. *(AVFrame *)data = s->frame;
  123. return avpkt->size;
  124. }
  125. static int s302m_decode_init(AVCodecContext *avctx)
  126. {
  127. S302MDecodeContext *s = avctx->priv_data;
  128. avcodec_get_frame_defaults(&s->frame);
  129. avctx->coded_frame = &s->frame;
  130. return 0;
  131. }
  132. AVCodec ff_s302m_decoder = {
  133. .name = "s302m",
  134. .type = AVMEDIA_TYPE_AUDIO,
  135. .id = CODEC_ID_S302M,
  136. .priv_data_size = sizeof(S302MDecodeContext),
  137. .init = s302m_decode_init,
  138. .decode = s302m_decode_frame,
  139. .capabilities = CODEC_CAP_DR1,
  140. .long_name = NULL_IF_CONFIG_SMALL("SMPTE 302M"),
  141. };