[FFmpeg-devel] [PATCH] Get rid of memmove() in dca.c
Michael Niedermayer
michaelni
Sat Aug 30 02:36:29 CEST 2008
Hi
Patch below gets rid of the 512 sample memmove()
Index: libavcodec/dca.c
===================================================================
--- libavcodec/dca.c (revision 15033)
+++ libavcodec/dca.c (working copy)
@@ -159,6 +159,7 @@
float subband_samples_hist[DCA_PRIM_CHANNELS_MAX][DCA_SUBBANDS][4];
float subband_fir_hist[DCA_PRIM_CHANNELS_MAX][512];
float subband_fir_noidea[DCA_PRIM_CHANNELS_MAX][32];
+ int hist_index[DCA_PRIM_CHANNELS_MAX];
int output; ///< type of output
int bias; ///< output bias
@@ -658,7 +659,7 @@
int i, j, k;
float praXin[33], *raXin = &praXin[1];
- float *subband_fir_hist = s->subband_fir_hist[chans];
+ int hist_index= s->hist_index[chans];
float *subband_fir_hist2 = s->subband_fir_noidea[chans];
int chindex = 0, subindex;
@@ -673,6 +674,7 @@
/* Reconstructed channel sample index */
for (subindex = 0; subindex < 8; subindex++) {
+ float *subband_fir_hist = s->subband_fir_hist[chans] + hist_index;
/* Load in one sample from each subband and clear inactive subbands */
for (i = 0; i < s->subband_activity[chans]; i++)
raXin[i] = samples_in[i][subindex];
@@ -696,17 +698,21 @@
for (k = 31, i = 0; i < 32; i++, k--){
float a= subband_fir_hist2[i];
float b= 0;
- for (j = 0; j < 512; j += 64){
+ for (j = 0; j < 512-hist_index; j += 64){
a += prCoeff[i+j ]*( subband_fir_hist[i+j] - subband_fir_hist[j+k]);
b += prCoeff[i+j+32]*(-subband_fir_hist[i+j] - subband_fir_hist[j+k]);
}
+ for ( ; j < 512; j += 64){
+ a += prCoeff[i+j ]*( subband_fir_hist[i+j-512] - subband_fir_hist[j+k-512]);
+ b += prCoeff[i+j+32]*(-subband_fir_hist[i+j-512] - subband_fir_hist[j+k-512]);
+ }
samples_out[chindex++] = a * scale + bias;
subband_fir_hist2[i] = b;
}
- /* Update working arrays */
- memmove(&subband_fir_hist[32], &subband_fir_hist[0], (512 - 32) * sizeof(float));
+ hist_index = (hist_index-32)&511;
}
+ s->hist_index[chans]= hist_index;
}
static void lfe_interpolation_fir(int decimation_select,
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Concerning the gods, I have no means of knowing whether they exist or not
or of what sort they may be, because of the obscurity of the subject, and
the brevity of human life -- Protagoras
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: Digital signature
URL: <http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/attachments/20080830/4efe2b71/attachment.pgp>
More information about the ffmpeg-devel
mailing list