adxenc.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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 "libavutil/intreadwrite.h"
  22. #include "avcodec.h"
  23. #include "adx.h"
  24. /**
  25. * @file libavcodec/adxenc.c
  26. * SEGA CRI adx codecs.
  27. *
  28. * Reference documents:
  29. * http://ku-www.ss.titech.ac.jp/~yatsushi/adx.html
  30. * adx2wav & wav2adx http://www.geocities.co.jp/Playtown/2004/
  31. */
  32. /* 18 bytes <-> 32 samples */
  33. static void adx_encode(unsigned char *adx,const short *wav,PREV *prev)
  34. {
  35. int scale;
  36. int i;
  37. int s0,s1,s2,d;
  38. int max=0;
  39. int min=0;
  40. int data[32];
  41. s1 = prev->s1;
  42. s2 = prev->s2;
  43. for(i=0;i<32;i++) {
  44. s0 = wav[i];
  45. d = ((s0<<14) - SCALE1*s1 + SCALE2*s2)/BASEVOL;
  46. data[i]=d;
  47. if (max<d) max=d;
  48. if (min>d) min=d;
  49. s2 = s1;
  50. s1 = s0;
  51. }
  52. prev->s1 = s1;
  53. prev->s2 = s2;
  54. /* -8..+7 */
  55. if (max==0 && min==0) {
  56. memset(adx,0,18);
  57. return;
  58. }
  59. if (max/7>-min/8) scale = max/7;
  60. else scale = -min/8;
  61. if (scale==0) scale=1;
  62. AV_WB16(adx, scale);
  63. for(i=0;i<16;i++) {
  64. adx[i+2] = ((data[i*2]/scale)<<4) | ((data[i*2+1]/scale)&0xf);
  65. }
  66. }
  67. static int adx_encode_header(AVCodecContext *avctx,unsigned char *buf,size_t bufsize)
  68. {
  69. #if 0
  70. struct {
  71. uint32_t offset; /* 0x80000000 + sample start - 4 */
  72. unsigned char unknown1[3]; /* 03 12 04 */
  73. unsigned char channel; /* 1 or 2 */
  74. uint32_t freq;
  75. uint32_t size;
  76. uint32_t unknown2; /* 01 f4 03 00 */
  77. uint32_t unknown3; /* 00 00 00 00 */
  78. uint32_t unknown4; /* 00 00 00 00 */
  79. /* if loop
  80. unknown3 00 15 00 01
  81. unknown4 00 00 00 01
  82. long loop_start_sample;
  83. long loop_start_byte;
  84. long loop_end_sample;
  85. long loop_end_byte;
  86. long
  87. */
  88. } adxhdr; /* big endian */
  89. /* offset-6 "(c)CRI" */
  90. #endif
  91. AV_WB32(buf+0x00,0x80000000|0x20);
  92. AV_WB32(buf+0x04,0x03120400|avctx->channels);
  93. AV_WB32(buf+0x08,avctx->sample_rate);
  94. AV_WB32(buf+0x0c,0); /* FIXME: set after */
  95. AV_WB32(buf+0x10,0x01040300);
  96. AV_WB32(buf+0x14,0x00000000);
  97. AV_WB32(buf+0x18,0x00000000);
  98. memcpy(buf+0x1c,"\0\0(c)CRI",8);
  99. return 0x20+4;
  100. }
  101. static av_cold int adx_encode_init(AVCodecContext *avctx)
  102. {
  103. if (avctx->channels > 2)
  104. return -1; /* only stereo or mono =) */
  105. avctx->frame_size = 32;
  106. avctx->coded_frame= avcodec_alloc_frame();
  107. avctx->coded_frame->key_frame= 1;
  108. // avctx->bit_rate = avctx->sample_rate*avctx->channels*18*8/32;
  109. av_log(avctx, AV_LOG_DEBUG, "adx encode init\n");
  110. return 0;
  111. }
  112. static av_cold int adx_encode_close(AVCodecContext *avctx)
  113. {
  114. av_freep(&avctx->coded_frame);
  115. return 0;
  116. }
  117. static int adx_encode_frame(AVCodecContext *avctx,
  118. uint8_t *frame, int buf_size, void *data)
  119. {
  120. ADXContext *c = avctx->priv_data;
  121. const short *samples = data;
  122. unsigned char *dst = frame;
  123. int rest = avctx->frame_size;
  124. /*
  125. input data size =
  126. ffmpeg.c: do_audio_out()
  127. frame_bytes = enc->frame_size * 2 * enc->channels;
  128. */
  129. // printf("sz=%d ",buf_size); fflush(stdout);
  130. if (!c->header_parsed) {
  131. int hdrsize = adx_encode_header(avctx,dst,buf_size);
  132. dst+=hdrsize;
  133. c->header_parsed = 1;
  134. }
  135. if (avctx->channels==1) {
  136. while(rest>=32) {
  137. adx_encode(dst,samples,c->prev);
  138. dst+=18;
  139. samples+=32;
  140. rest-=32;
  141. }
  142. } else {
  143. while(rest>=32*2) {
  144. short tmpbuf[32*2];
  145. int i;
  146. for(i=0;i<32;i++) {
  147. tmpbuf[i] = samples[i*2];
  148. tmpbuf[i+32] = samples[i*2+1];
  149. }
  150. adx_encode(dst,tmpbuf,c->prev);
  151. adx_encode(dst+18,tmpbuf+32,c->prev+1);
  152. dst+=18*2;
  153. samples+=32*2;
  154. rest-=32*2;
  155. }
  156. }
  157. return dst-frame;
  158. }
  159. AVCodec adpcm_adx_encoder = {
  160. "adpcm_adx",
  161. CODEC_TYPE_AUDIO,
  162. CODEC_ID_ADPCM_ADX,
  163. sizeof(ADXContext),
  164. adx_encode_init,
  165. adx_encode_frame,
  166. adx_encode_close,
  167. NULL,
  168. .sample_fmts = (enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE},
  169. .long_name = NULL_IF_CONFIG_SMALL("SEGA CRI ADX ADPCM"),
  170. };