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.

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