summaryrefslogtreecommitdiff
path: root/ffmpeg/libavcodec/mpc.c
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
committerTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
commitf7813a5324be39d13ab536c245d15dfc602a7849 (patch)
treefad99148b88823d34a5df2f0a25881a002eb291b /ffmpeg/libavcodec/mpc.c
parentb7a5a477b8ff4d4e3028b9dfb9a9df0a41463f92 (diff)
basic type mechanism working
Diffstat (limited to 'ffmpeg/libavcodec/mpc.c')
-rw-r--r--ffmpeg/libavcodec/mpc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ffmpeg/libavcodec/mpc.c b/ffmpeg/libavcodec/mpc.c
index 3bd2d35..7af30bd 100644
--- a/ffmpeg/libavcodec/mpc.c
+++ b/ffmpeg/libavcodec/mpc.c
@@ -26,6 +26,7 @@
* divided into 32 subbands.
*/
+#include "libavutil/attributes.h"
#include "avcodec.h"
#include "get_bits.h"
#include "mpegaudiodsp.h"
@@ -34,7 +35,7 @@
#include "mpc.h"
#include "mpcdata.h"
-void ff_mpc_init(void)
+av_cold void ff_mpc_init(void)
{
ff_mpa_synth_init_fixed(ff_mpa_synth_window_fixed);
}