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.

177 lines
4.5KB

  1. /*
  2. * ADX ADPCM codecs
  3. * Copyright (c) 2001,2003 BERO
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "avcodec.h"
  22. #include "adx.h"
  23. /**
  24. * @file adx.c
  25. * SEGA CRI adx codecs.
  26. *
  27. * Reference documents:
  28. * http://ku-www.ss.titech.ac.jp/~yatsushi/adx.html
  29. * adx2wav & wav2adx http://www.geocities.co.jp/Playtown/2004/
  30. */
  31. static av_cold int adx_decode_init(AVCodecContext *avctx)
  32. {
  33. avctx->sample_fmt = SAMPLE_FMT_S16;
  34. return 0;
  35. }
  36. /* 18 bytes <-> 32 samples */
  37. static void adx_decode(short *out,const unsigned char *in,PREV *prev)
  38. {
  39. int scale = AV_RB16(in);
  40. int i;
  41. int s0,s1,s2,d;
  42. // printf("%x ",scale);
  43. in+=2;
  44. s1 = prev->s1;
  45. s2 = prev->s2;
  46. for(i=0;i<16;i++) {
  47. d = in[i];
  48. // d>>=4; if (d&8) d-=16;
  49. d = ((signed char)d >> 4);
  50. s0 = (BASEVOL*d*scale + SCALE1*s1 - SCALE2*s2)>>14;
  51. s2 = s1;
  52. s1 = av_clip_int16(s0);
  53. *out++=s1;
  54. d = in[i];
  55. //d&=15; if (d&8) d-=16;
  56. d = ((signed char)(d<<4) >> 4);
  57. s0 = (BASEVOL*d*scale + SCALE1*s1 - SCALE2*s2)>>14;
  58. s2 = s1;
  59. s1 = av_clip_int16(s0);
  60. *out++=s1;
  61. }
  62. prev->s1 = s1;
  63. prev->s2 = s2;
  64. }
  65. static void adx_decode_stereo(short *out,const unsigned char *in,PREV *prev)
  66. {
  67. short tmp[32*2];
  68. int i;
  69. adx_decode(tmp ,in ,prev);
  70. adx_decode(tmp+32,in+18,prev+1);
  71. for(i=0;i<32;i++) {
  72. out[i*2] = tmp[i];
  73. out[i*2+1] = tmp[i+32];
  74. }
  75. }
  76. /* return data offset or 0 */
  77. static int adx_decode_header(AVCodecContext *avctx,const unsigned char *buf,size_t bufsize)
  78. {
  79. int offset;
  80. if (buf[0]!=0x80) return 0;
  81. offset = (AV_RB32(buf)^0x80000000)+4;
  82. if (bufsize<offset || memcmp(buf+offset-6,"(c)CRI",6)) return 0;
  83. avctx->channels = buf[7];
  84. avctx->sample_rate = AV_RB32(buf+8);
  85. avctx->bit_rate = avctx->sample_rate*avctx->channels*18*8/32;
  86. return offset;
  87. }
  88. static int adx_decode_frame(AVCodecContext *avctx,
  89. void *data, int *data_size,
  90. const uint8_t *buf0, int buf_size)
  91. {
  92. ADXContext *c = avctx->priv_data;
  93. short *samples = data;
  94. const uint8_t *buf = buf0;
  95. int rest = buf_size;
  96. if (!c->header_parsed) {
  97. int hdrsize = adx_decode_header(avctx,buf,rest);
  98. if (hdrsize==0) return -1;
  99. c->header_parsed = 1;
  100. buf += hdrsize;
  101. rest -= hdrsize;
  102. }
  103. /* 18 bytes of data are expanded into 32*2 bytes of audio,
  104. so guard against buffer overflows */
  105. if(rest/18 > *data_size/64)
  106. rest = (*data_size/64) * 18;
  107. if (c->in_temp) {
  108. int copysize = 18*avctx->channels - c->in_temp;
  109. memcpy(c->dec_temp+c->in_temp,buf,copysize);
  110. rest -= copysize;
  111. buf += copysize;
  112. if (avctx->channels==1) {
  113. adx_decode(samples,c->dec_temp,c->prev);
  114. samples += 32;
  115. } else {
  116. adx_decode_stereo(samples,c->dec_temp,c->prev);
  117. samples += 32*2;
  118. }
  119. }
  120. //
  121. if (avctx->channels==1) {
  122. while(rest>=18) {
  123. adx_decode(samples,buf,c->prev);
  124. rest-=18;
  125. buf+=18;
  126. samples+=32;
  127. }
  128. } else {
  129. while(rest>=18*2) {
  130. adx_decode_stereo(samples,buf,c->prev);
  131. rest-=18*2;
  132. buf+=18*2;
  133. samples+=32*2;
  134. }
  135. }
  136. //
  137. c->in_temp = rest;
  138. if (rest) {
  139. memcpy(c->dec_temp,buf,rest);
  140. buf+=rest;
  141. }
  142. *data_size = (uint8_t*)samples - (uint8_t*)data;
  143. // printf("%d:%d ",buf-buf0,*data_size); fflush(stdout);
  144. return buf-buf0;
  145. }
  146. AVCodec adpcm_adx_decoder = {
  147. "adpcm_adx",
  148. CODEC_TYPE_AUDIO,
  149. CODEC_ID_ADPCM_ADX,
  150. sizeof(ADXContext),
  151. adx_decode_init,
  152. NULL,
  153. NULL,
  154. adx_decode_frame,
  155. .long_name = NULL_IF_CONFIG_SMALL("SEGA CRI ADX"),
  156. };