summaryrefslogtreecommitdiff
path: root/apps/codecs/libmad/layer3.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libmad/layer3.c')
-rw-r--r--apps/codecs/libmad/layer3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libmad/layer3.c b/apps/codecs/libmad/layer3.c
index e8b80e7ce4..b5fa2be6f5 100644
--- a/apps/codecs/libmad/layer3.c
+++ b/apps/codecs/libmad/layer3.c
@@ -1765,7 +1765,7 @@ void imdct36(mad_fixed_t const x[18], mad_fixed_t y[36])
1765 * DESCRIPTION: perform X[18]->x[36] IMDCT 1765 * DESCRIPTION: perform X[18]->x[36] IMDCT
1766 */ 1766 */
1767 1767
1768# ifdef CPU_COLDFIRE && !defined(SIMULATOR) 1768# if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
1769/* emac optimized imdct36, it is very ugly and i hope to replace it soon. 1769/* emac optimized imdct36, it is very ugly and i hope to replace it soon.
1770 * for now it is actually somewhat faster than the stock implementation. 1770 * for now it is actually somewhat faster than the stock implementation.
1771 */ 1771 */
@@ -2729,7 +2729,7 @@ void III_imdct_l(mad_fixed_t const X[18], mad_fixed_t z[36],
2729 * DESCRIPTION: perform IMDCT and windowing for short blocks 2729 * DESCRIPTION: perform IMDCT and windowing for short blocks
2730 */ 2730 */
2731 2731
2732# ifdef CPU_COLDFIRE && !defined(SIMULATOR) 2732# if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
2733void III_imdct_s(mad_fixed_t const X[18], mad_fixed_t z[36]); 2733void III_imdct_s(mad_fixed_t const X[18], mad_fixed_t z[36]);
2734#else 2734#else
2735 2735