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.

405 lines
12KB

  1. /*
  2. * WMA compatible encoder
  3. * Copyright (c) 2007 Michael Niedermayer
  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 "wma.h"
  23. #undef NDEBUG
  24. #include <assert.h>
  25. static int encode_init(AVCodecContext * avctx){
  26. WMACodecContext *s = avctx->priv_data;
  27. int i, flags1, flags2;
  28. uint8_t *extradata;
  29. s->avctx = avctx;
  30. if(avctx->channels > MAX_CHANNELS)
  31. return -1;
  32. /* extract flag infos */
  33. flags1 = 0;
  34. flags2 = 1;
  35. if (avctx->codec->id == CODEC_ID_WMAV1) {
  36. extradata= av_malloc(4);
  37. avctx->extradata_size= 4;
  38. extradata[0] = flags1;
  39. extradata[1] = flags1>>8;
  40. extradata[2] = flags2;
  41. extradata[3] = flags2>>8;
  42. } else if (avctx->codec->id == CODEC_ID_WMAV2) {
  43. extradata= av_mallocz(10);
  44. avctx->extradata_size= 10;
  45. extradata[0] = flags1;
  46. extradata[1] = flags1>>8;
  47. extradata[2] = flags1>>16;
  48. extradata[3] = flags1>>24;
  49. extradata[4] = flags2;
  50. extradata[5] = flags2>>8;
  51. }else
  52. assert(0);
  53. avctx->extradata= extradata;
  54. s->use_exp_vlc = flags2 & 0x0001;
  55. s->use_bit_reservoir = flags2 & 0x0002;
  56. s->use_variable_block_len = flags2 & 0x0004;
  57. ff_wma_init(avctx, flags2);
  58. /* init MDCT */
  59. for(i = 0; i < s->nb_block_sizes; i++)
  60. ff_mdct_init(&s->mdct_ctx[i], s->frame_len_bits - i + 1, 0);
  61. avctx->block_align=
  62. s->block_align= avctx->bit_rate*(int64_t)s->frame_len / (avctx->sample_rate*8);
  63. //av_log(NULL, AV_LOG_ERROR, "%d %d %d %d\n", s->block_align, avctx->bit_rate, s->frame_len, avctx->sample_rate);
  64. avctx->frame_size= s->frame_len;
  65. return 0;
  66. }
  67. static void apply_window_and_mdct(AVCodecContext * avctx, signed short * audio, int len) {
  68. WMACodecContext *s = avctx->priv_data;
  69. int window_index= s->frame_len_bits - s->block_len_bits;
  70. int i, j, channel;
  71. const float * win = s->windows[window_index];
  72. int window_len = 1 << s->block_len_bits;
  73. float n = window_len/2;
  74. for (channel = 0; channel < avctx->channels; channel++) {
  75. memcpy(s->output, s->frame_out[channel], sizeof(float)*window_len);
  76. j = channel;
  77. for (i = 0; i < len; i++, j += avctx->channels){
  78. s->output[i+window_len] = audio[j] / n * win[i];
  79. s->frame_out[channel][i] = audio[j] / n * win[window_len - i - 1];
  80. }
  81. ff_mdct_calc(&s->mdct_ctx[window_index], s->coefs[channel], s->output, s->mdct_tmp);
  82. }
  83. }
  84. //FIXME use for decoding too
  85. static void init_exp(WMACodecContext *s, int ch, int *exp_param){
  86. int n;
  87. const uint16_t *ptr;
  88. float v, *q, max_scale, *q_end;
  89. ptr = s->exponent_bands[s->frame_len_bits - s->block_len_bits];
  90. q = s->exponents[ch];
  91. q_end = q + s->block_len;
  92. max_scale = 0;
  93. while (q < q_end) {
  94. /* XXX: use a table */
  95. v = pow(10, *exp_param++ * (1.0 / 16.0));
  96. max_scale= FFMAX(max_scale, v);
  97. n = *ptr++;
  98. do {
  99. *q++ = v;
  100. } while (--n);
  101. }
  102. s->max_exponent[ch] = max_scale;
  103. }
  104. static void encode_exp_vlc(WMACodecContext *s, int ch, const int *exp_param){
  105. int last_exp;
  106. const uint16_t *ptr;
  107. float *q, *q_end;
  108. ptr = s->exponent_bands[s->frame_len_bits - s->block_len_bits];
  109. q = s->exponents[ch];
  110. q_end = q + s->block_len;
  111. if (s->version == 1) {
  112. last_exp= *exp_param++;
  113. assert(last_exp-10 >= 0 && last_exp-10 < 32);
  114. put_bits(&s->pb, 5, last_exp - 10);
  115. q+= *ptr++;
  116. }else
  117. last_exp = 36;
  118. while (q < q_end) {
  119. int exp = *exp_param++;
  120. int code = exp - last_exp + 60;
  121. assert(code >= 0 && code < 120);
  122. put_bits(&s->pb, ff_wma_scale_huffbits[code], ff_wma_scale_huffcodes[code]);
  123. /* XXX: use a table */
  124. q+= *ptr++;
  125. last_exp= exp;
  126. }
  127. }
  128. static int encode_block(WMACodecContext *s, float (*src_coefs)[BLOCK_MAX_SIZE], int total_gain){
  129. int v, bsize, ch, coef_nb_bits, parse_exponents;
  130. float mdct_norm;
  131. int nb_coefs[MAX_CHANNELS];
  132. static const int fixed_exp[25]={20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20};
  133. //FIXME remove duplication relative to decoder
  134. if (s->use_variable_block_len) {
  135. assert(0); //FIXME not implemented
  136. }else{
  137. /* fixed block len */
  138. s->next_block_len_bits = s->frame_len_bits;
  139. s->prev_block_len_bits = s->frame_len_bits;
  140. s->block_len_bits = s->frame_len_bits;
  141. }
  142. s->block_len = 1 << s->block_len_bits;
  143. // assert((s->block_pos + s->block_len) <= s->frame_len);
  144. bsize = s->frame_len_bits - s->block_len_bits;
  145. //FIXME factor
  146. v = s->coefs_end[bsize] - s->coefs_start;
  147. for(ch = 0; ch < s->nb_channels; ch++)
  148. nb_coefs[ch] = v;
  149. {
  150. int n4 = s->block_len / 2;
  151. mdct_norm = 1.0 / (float)n4;
  152. if (s->version == 1) {
  153. mdct_norm *= sqrt(n4);
  154. }
  155. }
  156. if (s->nb_channels == 2) {
  157. put_bits(&s->pb, 1, s->ms_stereo= 1);
  158. }
  159. for(ch = 0; ch < s->nb_channels; ch++) {
  160. if (s->channel_coded[ch]= 1) { //FIXME
  161. init_exp(s, ch, fixed_exp);
  162. }
  163. }
  164. for(ch = 0; ch < s->nb_channels; ch++) {
  165. if (s->channel_coded[ch]) {
  166. int16_t *coefs1;
  167. float *coefs, *exponents, mult;
  168. int i, n;
  169. coefs1 = s->coefs1[ch];
  170. exponents = s->exponents[ch];
  171. mult = pow(10, total_gain * 0.05) / s->max_exponent[ch];
  172. mult *= mdct_norm;
  173. coefs = src_coefs[ch];
  174. if (s->use_noise_coding && 0) {
  175. assert(0); //FIXME not implemented
  176. } else {
  177. coefs += s->coefs_start;
  178. n = nb_coefs[ch];
  179. for(i = 0;i < n; i++){
  180. double t= *coefs++ / (exponents[i] * mult);
  181. if(t<-32768 || t>32767)
  182. return -1;
  183. coefs1[i] = lrint(t);
  184. }
  185. }
  186. }
  187. }
  188. v = 0;
  189. for(ch = 0; ch < s->nb_channels; ch++) {
  190. int a = s->channel_coded[ch];
  191. put_bits(&s->pb, 1, a);
  192. v |= a;
  193. }
  194. if (!v)
  195. return 1;
  196. for(v= total_gain-1; v>=127; v-= 127)
  197. put_bits(&s->pb, 7, 127);
  198. put_bits(&s->pb, 7, v);
  199. coef_nb_bits= ff_wma_total_gain_to_bits(total_gain);
  200. if (s->use_noise_coding) {
  201. for(ch = 0; ch < s->nb_channels; ch++) {
  202. if (s->channel_coded[ch]) {
  203. int i, n;
  204. n = s->exponent_high_sizes[bsize];
  205. for(i=0;i<n;i++) {
  206. put_bits(&s->pb, 1, s->high_band_coded[ch][i]= 0);
  207. if (0)
  208. nb_coefs[ch] -= s->exponent_high_bands[bsize][i];
  209. }
  210. }
  211. }
  212. }
  213. parse_exponents = 1;
  214. if (s->block_len_bits != s->frame_len_bits) {
  215. put_bits(&s->pb, 1, parse_exponents);
  216. }
  217. if (parse_exponents) {
  218. for(ch = 0; ch < s->nb_channels; ch++) {
  219. if (s->channel_coded[ch]) {
  220. if (s->use_exp_vlc) {
  221. encode_exp_vlc(s, ch, fixed_exp);
  222. } else {
  223. assert(0); //FIXME not implemented
  224. // encode_exp_lsp(s, ch);
  225. }
  226. }
  227. }
  228. } else {
  229. assert(0); //FIXME not implemented
  230. }
  231. for(ch = 0; ch < s->nb_channels; ch++) {
  232. if (s->channel_coded[ch]) {
  233. int run, tindex;
  234. int16_t *ptr, *eptr;
  235. tindex = (ch == 1 && s->ms_stereo);
  236. ptr = &s->coefs1[ch][0];
  237. eptr = ptr + nb_coefs[ch];
  238. run=0;
  239. for(;ptr < eptr; ptr++){
  240. if(*ptr){
  241. int level= *ptr;
  242. int abs_level= FFABS(level);
  243. int code= 0;
  244. if(abs_level <= s->coef_vlcs[tindex]->max_level){
  245. if(run < s->coef_vlcs[tindex]->levels[abs_level-1])
  246. code= run + s->int_table[tindex][abs_level-1];
  247. }
  248. assert(code < s->coef_vlcs[tindex]->n);
  249. put_bits(&s->pb, s->coef_vlcs[tindex]->huffbits[code], s->coef_vlcs[tindex]->huffcodes[code]);
  250. if(code == 0){
  251. if(1<<coef_nb_bits <= abs_level)
  252. return -1;
  253. put_bits(&s->pb, coef_nb_bits, abs_level);
  254. put_bits(&s->pb, s->frame_len_bits, run);
  255. }
  256. put_bits(&s->pb, 1, level < 0); //FIXME the sign is fliped somewhere
  257. run=0;
  258. }else{
  259. run++;
  260. }
  261. }
  262. if(run)
  263. put_bits(&s->pb, s->coef_vlcs[tindex]->huffbits[1], s->coef_vlcs[tindex]->huffcodes[1]);
  264. }
  265. if (s->version == 1 && s->nb_channels >= 2) {
  266. align_put_bits(&s->pb);
  267. }
  268. }
  269. return 0;
  270. }
  271. static int encode_frame(WMACodecContext *s, float (*src_coefs)[BLOCK_MAX_SIZE], uint8_t *buf, int buf_size, int total_gain){
  272. init_put_bits(&s->pb, buf, buf_size);
  273. if (s->use_bit_reservoir) {
  274. assert(0);//FIXME not implemented
  275. }else{
  276. if(encode_block(s, src_coefs, total_gain) < 0)
  277. return INT_MAX;
  278. }
  279. align_put_bits(&s->pb);
  280. return put_bits_count(&s->pb)/8 - s->block_align;
  281. }
  282. static int encode_superframe(AVCodecContext *avctx,
  283. unsigned char *buf, int buf_size, void *data){
  284. WMACodecContext *s = avctx->priv_data;
  285. short *samples = data;
  286. int i, total_gain, best;
  287. s->block_len_bits= s->frame_len_bits; //required by non variable block len
  288. s->block_len = 1 << s->block_len_bits;
  289. apply_window_and_mdct(avctx, samples, avctx->frame_size);
  290. if (s->ms_stereo) {
  291. float a, b;
  292. int i;
  293. for(i = 0; i < s->block_len; i++) {
  294. a = s->coefs[0][i]*0.5;
  295. b = s->coefs[1][i]*0.5;
  296. s->coefs[0][i] = a + b;
  297. s->coefs[1][i] = a - b;
  298. }
  299. }
  300. #if 1
  301. total_gain= 128;
  302. for(i=64; i; i>>=1){
  303. int error= encode_frame(s, s->coefs, buf, buf_size, total_gain-i);
  304. if(error<0)
  305. total_gain-= i;
  306. }
  307. #else
  308. total_gain= 90;
  309. best= encode_frame(s, s->coefs, buf, buf_size, total_gain);
  310. for(i=32; i; i>>=1){
  311. int scoreL= encode_frame(s, s->coefs, buf, buf_size, total_gain-i);
  312. int scoreR= encode_frame(s, s->coefs, buf, buf_size, total_gain+i);
  313. av_log(NULL, AV_LOG_ERROR, "%d %d %d (%d)\n", scoreL, best, scoreR, total_gain);
  314. if(scoreL < FFMIN(best, scoreR)){
  315. best = scoreL;
  316. total_gain -= i;
  317. }else if(scoreR < best){
  318. best = scoreR;
  319. total_gain += i;
  320. }
  321. }
  322. #endif
  323. encode_frame(s, s->coefs, buf, buf_size, total_gain);
  324. assert((put_bits_count(&s->pb) & 7) == 0);
  325. i= s->block_align - (put_bits_count(&s->pb)+7)/8;
  326. assert(i>=0);
  327. while(i--)
  328. put_bits(&s->pb, 8, 'N');
  329. flush_put_bits(&s->pb);
  330. return pbBufPtr(&s->pb) - s->pb.buf;
  331. }
  332. AVCodec wmav1_encoder =
  333. {
  334. "wmav1",
  335. CODEC_TYPE_AUDIO,
  336. CODEC_ID_WMAV1,
  337. sizeof(WMACodecContext),
  338. encode_init,
  339. encode_superframe,
  340. ff_wma_end,
  341. };
  342. AVCodec wmav2_encoder =
  343. {
  344. "wmav2",
  345. CODEC_TYPE_AUDIO,
  346. CODEC_ID_WMAV2,
  347. sizeof(WMACodecContext),
  348. encode_init,
  349. encode_superframe,
  350. ff_wma_end,
  351. };