Newer
Older
monitord / lame-3.97 / libmp3lame / .svn / text-base / encoder.c.svn-base
@root root on 23 Jan 2012 19 KB Migration from SVN revision 455
  1. /*
  2. * LAME MP3 encoding engine
  3. *
  4. * Copyright (c) 1999 Mark Taylor
  5. * Copyright (c) 2000-2002 Takehiro Tominaga
  6. * Copyright (c) 2000-2005 Robert Hegemann
  7. * Copyright (c) 2001 Gabriel Bouvigne
  8. * Copyright (c) 2001 John Dahlstrom
  9. *
  10. * This library is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU Library General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2 of the License, or (at your option) any later version.
  14. *
  15. * This library is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * Library General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Library General Public
  21. * License along with this library; if not, write to the
  22. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  23. * Boston, MA 02111-1307, USA.
  24. */
  25.  
  26. /* $Id: encoder.c,v 1.90.2.1 2005/11/20 14:08:24 bouvigne Exp $ */
  27.  
  28. #ifdef HAVE_CONFIG_H
  29. #include <config.h>
  30. #endif
  31.  
  32. #include <assert.h>
  33.  
  34. #include "lame.h"
  35. #include "util.h"
  36. #include "newmdct.h"
  37. #include "psymodel.h"
  38. #include "quantize.h"
  39. #include "quantize_pvt.h"
  40. #include "bitstream.h"
  41. #include "VbrTag.h"
  42. #include "vbrquantize.h"
  43.  
  44. #ifdef WITH_DMALLOC
  45. #include <dmalloc.h>
  46. #endif
  47.  
  48.  
  49. /*
  50. * auto-adjust of ATH, useful for low volume
  51. * Gabriel Bouvigne 3 feb 2001
  52. *
  53. * modifies some values in
  54. * gfp->internal_flags->ATH
  55. * (gfc->ATH)
  56. */
  57. static void
  58. adjust_ATH(lame_internal_flags * const gfc)
  59. {
  60. FLOAT gr2_max, max_pow;
  61.  
  62. if (gfc->ATH->use_adjust == 0) {
  63. gfc->ATH->adjust = 1.0; /* no adjustment */
  64. return;
  65. }
  66.  
  67. /* jd - 2001 mar 12, 27, jun 30 */
  68. /* loudness based on equal loudness curve; */
  69. /* use granule with maximum combined loudness */
  70. max_pow = gfc->loudness_sq[0][0];
  71. gr2_max = gfc->loudness_sq[1][0];
  72. if (gfc->channels_out == 2) {
  73. max_pow += gfc->loudness_sq[0][1];
  74. gr2_max += gfc->loudness_sq[1][1];
  75. }
  76. else {
  77. max_pow += max_pow;
  78. gr2_max += gr2_max;
  79. }
  80. if (gfc->mode_gr == 2) {
  81. max_pow = Max(max_pow, gr2_max);
  82. }
  83. max_pow *= 0.5; /* max_pow approaches 1.0 for full band noise */
  84.  
  85. /* jd - 2001 mar 31, jun 30 */
  86. /* user tuning of ATH adjustment region */
  87. max_pow *= gfc->ATH->aa_sensitivity_p;
  88.  
  89. /* adjust ATH depending on range of maximum value
  90. */
  91.  
  92. /* jd - 2001 feb27, mar12,20, jun30, jul22 */
  93. /* continuous curves based on approximation */
  94. /* to GB's original values. */
  95. /* For an increase in approximate loudness, */
  96. /* set ATH adjust to adjust_limit immediately */
  97. /* after a delay of one frame. */
  98. /* For a loudness decrease, reduce ATH adjust */
  99. /* towards adjust_limit gradually. */
  100. /* max_pow is a loudness squared or a power. */
  101. if (max_pow > 0.03125) { /* ((1 - 0.000625)/ 31.98) from curve below */
  102. if (gfc->ATH->adjust >= 1.0) {
  103. gfc->ATH->adjust = 1.0;
  104. }
  105. else {
  106. /* preceding frame has lower ATH adjust; */
  107. /* ascend only to the preceding adjust_limit */
  108. /* in case there is leading low volume */
  109. if (gfc->ATH->adjust < gfc->ATH->adjust_limit) {
  110. gfc->ATH->adjust = gfc->ATH->adjust_limit;
  111. }
  112. }
  113. gfc->ATH->adjust_limit = 1.0;
  114. }
  115. else { /* adjustment curve */
  116. /* about 32 dB maximum adjust (0.000625) */
  117. FLOAT adj_lim_new = 31.98 * max_pow + 0.000625;
  118. if (gfc->ATH->adjust >= adj_lim_new) { /* descend gradually */
  119. gfc->ATH->adjust *= adj_lim_new * 0.075 + 0.925;
  120. if (gfc->ATH->adjust < adj_lim_new) { /* stop descent */
  121. gfc->ATH->adjust = adj_lim_new;
  122. }
  123. }
  124. else { /* ascend */
  125. if (gfc->ATH->adjust_limit >= adj_lim_new) {
  126. gfc->ATH->adjust = adj_lim_new;
  127. }
  128. else { /* preceding frame has lower ATH adjust; */
  129. /* ascend only to the preceding adjust_limit */
  130. if (gfc->ATH->adjust < gfc->ATH->adjust_limit) {
  131. gfc->ATH->adjust = gfc->ATH->adjust_limit;
  132. }
  133. }
  134. }
  135. gfc->ATH->adjust_limit = adj_lim_new;
  136. }
  137. }
  138.  
  139. /***********************************************************************
  140. *
  141. * some simple statistics
  142. *
  143. * bitrate index 0: free bitrate -> not allowed in VBR mode
  144. * : bitrates, kbps depending on MPEG version
  145. * bitrate index 15: forbidden
  146. *
  147. * mode_ext:
  148. * 0: LR
  149. * 1: LR-i
  150. * 2: MS
  151. * 3: MS-i
  152. *
  153. ***********************************************************************/
  154.  
  155. static void
  156. updateStats(lame_internal_flags * const gfc)
  157. {
  158. int gr, ch;
  159. assert(gfc->bitrate_index < 16u);
  160. assert(gfc->mode_ext < 4u);
  161.  
  162. /* count bitrate indices */
  163. gfc->bitrate_stereoMode_Hist[gfc->bitrate_index][4]++;
  164. gfc->bitrate_stereoMode_Hist[15][4]++;
  165.  
  166. /* count 'em for every mode extension in case of 2 channel encoding */
  167. if (gfc->channels_out == 2) {
  168. gfc->bitrate_stereoMode_Hist[gfc->bitrate_index][gfc->mode_ext]++;
  169. gfc->bitrate_stereoMode_Hist[15][gfc->mode_ext]++;
  170. }
  171. for (gr = 0; gr < gfc->mode_gr; ++gr) {
  172. for (ch = 0; ch < gfc->channels_out; ++ch) {
  173. int bt = gfc->l3_side.tt[gr][ch].block_type;
  174. int mf = gfc->l3_side.tt[gr][ch].mixed_block_flag;
  175. if (mf)
  176. bt = 4;
  177. gfc->bitrate_blockType_Hist[gfc->bitrate_index][bt]++;
  178. gfc->bitrate_blockType_Hist[gfc->bitrate_index][5]++;
  179. gfc->bitrate_blockType_Hist[15][bt]++;
  180. gfc->bitrate_blockType_Hist[15][5]++;
  181. }
  182. }
  183. }
  184.  
  185.  
  186.  
  187.  
  188. static void
  189. lame_encode_frame_init(lame_global_flags * const gfp, const sample_t * inbuf[2])
  190. {
  191. lame_internal_flags *gfc = gfp->internal_flags;
  192.  
  193. int ch, gr;
  194.  
  195. if (gfc->lame_encode_frame_init == 0) {
  196. /* prime the MDCT/polyphase filterbank with a short block */
  197. int i, j;
  198. sample_t primebuff0[286 + 1152 + 576];
  199. sample_t primebuff1[286 + 1152 + 576];
  200. gfc->lame_encode_frame_init = 1;
  201. for (i = 0, j = 0; i < 286 + 576 * (1 + gfc->mode_gr); ++i) {
  202. if (i < 576 * gfc->mode_gr) {
  203. primebuff0[i] = 0;
  204. if (gfc->channels_out == 2)
  205. primebuff1[i] = 0;
  206. }
  207. else {
  208. primebuff0[i] = inbuf[0][j];
  209. if (gfc->channels_out == 2)
  210. primebuff1[i] = inbuf[1][j];
  211. ++j;
  212. }
  213. }
  214. /* polyphase filtering / mdct */
  215. for (gr = 0; gr < gfc->mode_gr; gr++) {
  216. for (ch = 0; ch < gfc->channels_out; ch++) {
  217. gfc->l3_side.tt[gr][ch].block_type = SHORT_TYPE;
  218. }
  219. }
  220. mdct_sub48(gfc, primebuff0, primebuff1);
  221.  
  222. /* check FFT will not use a negative starting offset */
  223. #if 576 < FFTOFFSET
  224. # error FFTOFFSET greater than 576: FFT uses a negative offset
  225. #endif
  226. /* check if we have enough data for FFT */
  227. assert(gfc->mf_size >= (BLKSIZE + gfp->framesize - FFTOFFSET));
  228. /* check if we have enough data for polyphase filterbank */
  229. assert(gfc->mf_size >= (512 + gfp->framesize - 32));
  230. }
  231.  
  232. }
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240. /************************************************************************
  241. *
  242. * encodeframe() Layer 3
  243. *
  244. * encode a single frame
  245. *
  246. ************************************************************************
  247. lame_encode_frame()
  248.  
  249.  
  250. gr 0 gr 1
  251. inbuf: |--------------|--------------|--------------|
  252.  
  253.  
  254. Polyphase (18 windows, each shifted 32)
  255. gr 0:
  256. window1 <----512---->
  257. window18 <----512---->
  258.  
  259. gr 1:
  260. window1 <----512---->
  261. window18 <----512---->
  262.  
  263.  
  264.  
  265. MDCT output: |--------------|--------------|--------------|
  266.  
  267. FFT's <---------1024---------->
  268. <---------1024-------->
  269.  
  270.  
  271.  
  272. inbuf = buffer of PCM data size=MP3 framesize
  273. encoder acts on inbuf[ch][0], but output is delayed by MDCTDELAY
  274. so the MDCT coefficints are from inbuf[ch][-MDCTDELAY]
  275.  
  276. psy-model FFT has a 1 granule delay, so we feed it data for the
  277. next granule.
  278. FFT is centered over granule: 224+576+224
  279. So FFT starts at: 576-224-MDCTDELAY
  280.  
  281. MPEG2: FFT ends at: BLKSIZE+576-224-MDCTDELAY (1328)
  282. MPEG1: FFT ends at: BLKSIZE+2*576-224-MDCTDELAY (1904)
  283.  
  284. MPEG2: polyphase first window: [0..511]
  285. 18th window: [544..1055] (1056)
  286. MPEG1: 36th window: [1120..1631] (1632)
  287. data needed: 512+framesize-32
  288.  
  289. A close look newmdct.c shows that the polyphase filterbank
  290. only uses data from [0..510] for each window. Perhaps because the window
  291. used by the filterbank is zero for the last point, so Takehiro's
  292. code doesn't bother to compute with it.
  293.  
  294. FFT starts at 576-224-MDCTDELAY (304) = 576-FFTOFFSET
  295.  
  296. */
  297.  
  298. typedef FLOAT chgrdata[2][2];
  299.  
  300.  
  301. int
  302. lame_encode_mp3_frame( /* Output */
  303. lame_global_flags * const gfp, /* Context */
  304. sample_t * inbuf_l, /* Input */
  305. sample_t * inbuf_r, /* Input */
  306. unsigned char *mp3buf, /* Output */
  307. int mp3buf_size)
  308. { /* Output */
  309. int mp3count;
  310. III_psy_ratio masking_LR[2][2]; /*LR masking & energy */
  311. III_psy_ratio masking_MS[2][2]; /*MS masking & energy */
  312. III_psy_ratio(*masking)[2][2]; /*pointer to selected maskings */
  313. const sample_t *inbuf[2];
  314. lame_internal_flags *gfc = gfp->internal_flags;
  315.  
  316. FLOAT tot_ener[2][4];
  317. FLOAT ms_ener_ratio[2] = { .5, .5 };
  318. chgrdata pe, pe_MS;
  319. chgrdata *pe_use;
  320.  
  321. int ch, gr;
  322.  
  323. FLOAT ms_ratio_next = 0.;
  324. FLOAT ms_ratio_prev = 0.;
  325.  
  326.  
  327. inbuf[0] = inbuf_l;
  328. inbuf[1] = inbuf_r;
  329.  
  330. if (gfc->lame_encode_frame_init == 0) {
  331. /*first run? */
  332. lame_encode_frame_init(gfp, inbuf);
  333.  
  334. }
  335.  
  336.  
  337. /********************** padding *****************************/
  338. /* padding method as described in
  339. * "MPEG-Layer3 / Bitstream Syntax and Decoding"
  340. * by Martin Sieler, Ralph Sperschneider
  341. *
  342. * note: there is no padding for the very first frame
  343. *
  344. * Robert Hegemann 2000-06-22
  345. */
  346. gfc->padding = FALSE;
  347. if ((gfc->slot_lag -= gfc->frac_SpF) < 0) {
  348. gfc->slot_lag += gfp->out_samplerate;
  349. gfc->padding = TRUE;
  350. }
  351.  
  352.  
  353.  
  354. /****************************************
  355. * Stage 1: psychoacoustic model *
  356. ****************************************/
  357.  
  358. if (gfc->psymodel) {
  359. /* psychoacoustic model
  360. * psy model has a 1 granule (576) delay that we must compensate for
  361. * (mt 6/99).
  362. */
  363. int ret;
  364. const sample_t *bufp[2]; /* address of beginning of left & right granule */
  365. int blocktype[2];
  366.  
  367. ms_ratio_prev = gfc->ms_ratio[gfc->mode_gr - 1];
  368. for (gr = 0; gr < gfc->mode_gr; gr++) {
  369.  
  370. for (ch = 0; ch < gfc->channels_out; ch++)
  371. bufp[ch] = &inbuf[ch][576 + gr * 576 - FFTOFFSET];
  372.  
  373. if (gfp->psymodel == PSY_NSPSYTUNE) {
  374. ret = L3psycho_anal_ns(gfp, bufp, gr,
  375. &gfc->ms_ratio[gr], &ms_ratio_next,
  376. masking_LR, masking_MS,
  377. pe[gr], pe_MS[gr], tot_ener[gr], blocktype);
  378. }
  379. else {
  380. ret = L3psycho_anal(gfp, bufp, gr,
  381. &gfc->ms_ratio[gr], &ms_ratio_next,
  382. masking_LR, masking_MS,
  383. pe[gr], pe_MS[gr], tot_ener[gr], blocktype);
  384. }
  385. if (ret != 0)
  386. return -4;
  387.  
  388. if (gfp->mode == JOINT_STEREO) {
  389. ms_ener_ratio[gr] = tot_ener[gr][2] + tot_ener[gr][3];
  390. if (ms_ener_ratio[gr] > 0)
  391. ms_ener_ratio[gr] = tot_ener[gr][3] / ms_ener_ratio[gr];
  392. }
  393.  
  394. /* block type flags */
  395. for (ch = 0; ch < gfc->channels_out; ch++) {
  396. gr_info *cod_info = &gfc->l3_side.tt[gr][ch];
  397. cod_info->block_type = blocktype[ch];
  398. cod_info->mixed_block_flag = 0;
  399. }
  400. }
  401. }
  402. else {
  403. /*no psy model */
  404. memset((char *) masking_LR, 0, sizeof(masking_LR));
  405. memset((char *) masking_MS, 0, sizeof(masking_MS));
  406. for (gr = 0; gr < gfc->mode_gr; gr++)
  407. for (ch = 0; ch < gfc->channels_out; ch++) {
  408. gfc->l3_side.tt[gr][ch].block_type = NORM_TYPE;
  409. gfc->l3_side.tt[gr][ch].mixed_block_flag = 0;
  410. pe_MS[gr][ch] = pe[gr][ch] = 700;
  411. }
  412. }
  413.  
  414.  
  415.  
  416. /* auto-adjust of ATH, useful for low volume */
  417. adjust_ATH(gfc);
  418.  
  419.  
  420. /****************************************
  421. * Stage 2: MDCT *
  422. ****************************************/
  423.  
  424. /* polyphase filtering / mdct */
  425. mdct_sub48(gfc, inbuf[0], inbuf[1]);
  426.  
  427.  
  428. /****************************************
  429. * Stage 3: MS/LR decision *
  430. ****************************************/
  431.  
  432. /* Here will be selected MS or LR coding of the 2 stereo channels */
  433. gfc->mode_ext = MPG_MD_LR_LR;
  434.  
  435. if (gfp->force_ms) {
  436. gfc->mode_ext = MPG_MD_MS_LR;
  437. }
  438. else if (gfp->mode == JOINT_STEREO) {
  439. int check_ms_stereo = 1;
  440. /* ms_ratio = is scaled, for historical reasons, to look like
  441. a ratio of side_channel / total.
  442. 0 = signal is 100% mono
  443. .5 = L & R uncorrelated
  444. */
  445.  
  446. /* [0] and [1] are the results for the two granules in MPEG-1,
  447. * in MPEG-2 it's only a faked averaging of the same value
  448. * _prev is the value of the last granule of the previous frame
  449. * _next is the value of the first granule of the next frame
  450. */
  451. if (gfp->psymodel == PSY_GPSYCHO) {
  452. FLOAT ms_ratio_ave1;
  453. FLOAT ms_ratio_ave2;
  454. FLOAT threshold1 = 0.35;
  455. FLOAT threshold2 = 0.45;
  456.  
  457. /* take an average */
  458. if (gfc->mode_gr == 1) {
  459. /* MPEG2 - no second granule */
  460. ms_ratio_ave1 = 0.33 * (gfc->ms_ratio[0] + ms_ratio_prev + ms_ratio_next);
  461. ms_ratio_ave2 = gfc->ms_ratio[0];
  462. }
  463. else {
  464. ms_ratio_ave1 =
  465. 0.25 * (gfc->ms_ratio[0] + gfc->ms_ratio[1] + ms_ratio_prev + ms_ratio_next);
  466. ms_ratio_ave2 = 0.50 * (gfc->ms_ratio[0] + gfc->ms_ratio[1]);
  467. }
  468.  
  469.  
  470. if (ms_ratio_ave1 >= threshold1 || ms_ratio_ave2 >= threshold2)
  471. check_ms_stereo = 0;
  472. }
  473.  
  474. if (check_ms_stereo) {
  475. FLOAT sum_pe_MS = 0;
  476. FLOAT sum_pe_LR = 0;
  477. for (gr = 0; gr < gfc->mode_gr; gr++) {
  478. for (ch = 0; ch < gfc->channels_out; ch++) {
  479. sum_pe_MS += pe_MS[gr][ch];
  480. sum_pe_LR += pe[gr][ch];
  481. }
  482. }
  483.  
  484. /* based on PE: M/S coding would not use much more bits than L/R */
  485. if (((gfp->psymodel == PSY_GPSYCHO) && sum_pe_MS <= 1.07 * sum_pe_LR) ||
  486. ((gfp->psymodel == PSY_NSPSYTUNE) && sum_pe_MS <= 1.00 * sum_pe_LR)) {
  487.  
  488. gr_info *gi0 = &gfc->l3_side.tt[0][0];
  489. gr_info *gi1 = &gfc->l3_side.tt[gfc->mode_gr - 1][0];
  490.  
  491. if (gi0[0].block_type == gi0[1].block_type &&
  492. gi1[0].block_type == gi1[1].block_type) {
  493.  
  494. gfc->mode_ext = MPG_MD_MS_LR;
  495. }
  496. }
  497. }
  498. }
  499.  
  500. /* bit and noise allocation */
  501. if (gfc->mode_ext == MPG_MD_MS_LR) {
  502. masking = &masking_MS; /* use MS masking */
  503. pe_use = &pe_MS;
  504. }
  505. else {
  506. masking = &masking_LR; /* use LR masking */
  507. pe_use = &pe;
  508. }
  509.  
  510.  
  511. #if defined(HAVE_GTK)
  512. /* copy data for MP3 frame analyzer */
  513. if (gfp->analysis && gfc->pinfo != NULL) {
  514. for (gr = 0; gr < gfc->mode_gr; gr++) {
  515. for (ch = 0; ch < gfc->channels_out; ch++) {
  516. gfc->pinfo->ms_ratio[gr] = gfc->ms_ratio[gr];
  517. gfc->pinfo->ms_ener_ratio[gr] = ms_ener_ratio[gr];
  518. gfc->pinfo->blocktype[gr][ch] = gfc->l3_side.tt[gr][ch].block_type;
  519. gfc->pinfo->pe[gr][ch] = (*pe_use)[gr][ch];
  520. memcpy(gfc->pinfo->xr[gr][ch], &gfc->l3_side.tt[gr][ch].xr, sizeof(FLOAT) * 576);
  521. /* in psymodel, LR and MS data was stored in pinfo.
  522. switch to MS data: */
  523. if (gfc->mode_ext == MPG_MD_MS_LR) {
  524. gfc->pinfo->ers[gr][ch] = gfc->pinfo->ers[gr][ch + 2];
  525. memcpy(gfc->pinfo->energy[gr][ch], gfc->pinfo->energy[gr][ch + 2],
  526. sizeof(gfc->pinfo->energy[gr][ch]));
  527. }
  528. }
  529. }
  530. }
  531. #endif
  532.  
  533.  
  534. /****************************************
  535. * Stage 4: quantization loop *
  536. ****************************************/
  537.  
  538. if (gfp->psymodel == PSY_NSPSYTUNE) {
  539. if (gfp->VBR == vbr_off || gfp->VBR == vbr_abr) {
  540. static FLOAT fircoef[9] = {
  541. -0.0207887 * 5, -0.0378413 * 5, -0.0432472 * 5, -0.031183 * 5,
  542. 7.79609e-18 * 5, 0.0467745 * 5, 0.10091 * 5, 0.151365 * 5,
  543. 0.187098 * 5
  544. };
  545.  
  546. int i;
  547. FLOAT f;
  548.  
  549. for (i = 0; i < 18; i++)
  550. gfc->nsPsy.pefirbuf[i] = gfc->nsPsy.pefirbuf[i + 1];
  551.  
  552. f = 0.0;
  553. for (gr = 0; gr < gfc->mode_gr; gr++)
  554. for (ch = 0; ch < gfc->channels_out; ch++)
  555. f += (*pe_use)[gr][ch];
  556. gfc->nsPsy.pefirbuf[18] = f;
  557.  
  558. f = gfc->nsPsy.pefirbuf[9];
  559. for (i = 0; i < 9; i++)
  560. f += (gfc->nsPsy.pefirbuf[i] + gfc->nsPsy.pefirbuf[18 - i]) * fircoef[i];
  561.  
  562. f = (670 * 5 * gfc->mode_gr * gfc->channels_out) / f;
  563. for (gr = 0; gr < gfc->mode_gr; gr++) {
  564. for (ch = 0; ch < gfc->channels_out; ch++) {
  565. (*pe_use)[gr][ch] *= f;
  566. }
  567. }
  568. }
  569. }
  570.  
  571. switch (gfp->VBR) {
  572. default:
  573. case vbr_off:
  574. CBR_iteration_loop(gfp, *pe_use, ms_ener_ratio, *masking);
  575. break;
  576. case vbr_mt:
  577. case vbr_rh:
  578. case vbr_mtrh:
  579. VBR_iteration_loop(gfp, *pe_use, ms_ener_ratio, *masking);
  580. break;
  581. case vbr_abr:
  582. ABR_iteration_loop(gfp, *pe_use, ms_ener_ratio, *masking);
  583. break;
  584. }
  585.  
  586.  
  587.  
  588. /****************************************
  589. * Stage 5: bitstream formatting *
  590. ****************************************/
  591.  
  592.  
  593. /* write the frame to the bitstream */
  594. format_bitstream(gfp);
  595.  
  596. /* copy mp3 bit buffer into array */
  597. mp3count = copy_buffer(gfc, mp3buf, mp3buf_size, 1);
  598.  
  599.  
  600.  
  601.  
  602. if (gfp->bWriteVbrTag)
  603. AddVbrFrame(gfp);
  604.  
  605.  
  606. #if defined(HAVE_GTK)
  607. if (gfp->analysis && gfc->pinfo != NULL) {
  608. for (ch = 0; ch < gfc->channels_out; ch++) {
  609. int j;
  610. for (j = 0; j < FFTOFFSET; j++)
  611. gfc->pinfo->pcmdata[ch][j] = gfc->pinfo->pcmdata[ch][j + gfp->framesize];
  612. for (j = FFTOFFSET; j < 1600; j++) {
  613. gfc->pinfo->pcmdata[ch][j] = inbuf[ch][j - FFTOFFSET];
  614. }
  615. }
  616. set_frame_pinfo(gfp, *masking);
  617. }
  618. #endif
  619.  
  620. #ifdef BRHIST
  621. updateStats(gfc);
  622. #endif
  623.  
  624. return mp3count;
  625. }